:root {
  --cream: #f7f1e8;
  --paper: #fffcf6;
  --mist: #edf1e8;
  --sage: #71816d;
  --sage-dark: #35493c;
  --clay: #b7805f;
  --gold: #d6ad67;
  --ink: #24302a;
  --muted: #667167;
  --line: rgba(36, 48, 42, 0.16);
  --shadow: 0 24px 60px rgba(36, 48, 42, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 241, 232, 0.9) 0, rgba(247, 241, 232, 0.72) 420px, var(--cream) 920px);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.95);
  backdrop-filter: blur(16px);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage), var(--gold));
}

.topbar {
  display: none;
}

.home-page {
  background: var(--cream);
}

.home-page .topbar {
  display: block;
  position: absolute;
  inset: 0 0 auto;
  z-index: 12;
  min-height: 38px;
  background: var(--sage-dark);
  color: rgba(255, 252, 246, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
}

.topbar-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: #fff;
}

.home-page .site-header {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-page .site-header::before {
  display: none;
}

.home-page .nav {
  min-height: 82px;
  margin-top: 18px;
  border: 1px solid rgba(255, 252, 246, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.94);
  padding: 0 20px;
  box-shadow: 0 18px 48px rgba(36, 48, 42, 0.14);
}

.inner-page {
  background:
    linear-gradient(180deg, rgba(237, 241, 232, 0.68), rgba(247, 241, 232, 0) 520px),
    var(--cream);
}

.inner-page .site-header {
  box-shadow: 0 10px 34px rgba(36, 48, 42, 0.07);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.1;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #465148;
  font-size: 0.93rem;
}

.nav-links a {
  padding: 9px 0;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sage-dark);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(53, 73, 60, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.8);
  overflow: hidden;
}

.language-switch button {
  min-height: 32px;
  border: 0;
  border-right: 1px solid rgba(53, 73, 60, 0.18);
  background: transparent;
  color: #536258;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 10px;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button.is-active {
  background: var(--sage-dark);
  color: #fff;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(53, 73, 60, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #2b3e33, #667862);
  box-shadow: 0 16px 36px rgba(53, 73, 60, 0.22);
}

.button.secondary {
  background: transparent;
  color: var(--sage-dark);
  border-color: rgba(53, 73, 60, 0.28);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(113, 129, 109, 0.1);
  box-shadow: none;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 166px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(36, 48, 42, 0.78), rgba(36, 48, 42, 0.35) 48%, rgba(247, 241, 232, 0.06)),
    url("hero-room.png") center / cover no-repeat;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 48, 42, 0.12), rgba(36, 48, 42, 0.22)),
    linear-gradient(0deg, rgba(36, 48, 42, 0.36), transparent 42%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 44px;
  align-items: end;
}

.home-hero-copy {
  max-width: 790px;
  padding-bottom: 28px;
}

.home-hero .eyebrow,
.home-hero h1,
.home-hero .tagline,
.home-hero .lead {
  color: #fff;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.home-hero .eyebrow::before {
  background: var(--gold);
}

.home-hero .lead {
  max-width: 720px;
  color: rgba(255, 252, 246, 0.86);
}

.home-hero .button.secondary {
  background: rgba(255, 252, 246, 0.12);
  color: #fff;
  border-color: rgba(255, 252, 246, 0.48);
}

.appointment-panel {
  border: 1px solid rgba(255, 252, 246, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.94);
  padding: 30px;
  box-shadow: 0 24px 70px rgba(36, 48, 42, 0.28);
  backdrop-filter: blur(16px);
}

.appointment-panel span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.appointment-panel h2 {
  margin-top: 10px;
  font-size: 2.1rem;
}

.appointment-panel p {
  margin: 14px 0 0;
}

.appointment-panel .button {
  width: 100%;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-grid div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.trust-grid span {
  color: var(--sage-dark);
  font-weight: 900;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 34%;
  background: rgba(255, 252, 246, 0.46);
  border-bottom: 1px solid rgba(53, 73, 60, 0.08);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-media,
.page-copy,
.split > *,
.card,
.feature,
.contact-card {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.tagline {
  margin: 16px 0 0;
  color: #536258;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 2vw, 1.78rem);
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #526157;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #d8c7b0;
  border: 10px solid rgba(255, 252, 246, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.92);
  padding: 18px;
  color: #465148;
  box-shadow: 0 18px 42px rgba(36, 48, 42, 0.14);
  backdrop-filter: blur(14px);
}

.hero-note strong {
  display: block;
  color: var(--sage-dark);
  margin-bottom: 4px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 118px 0 74px;
  background:
    linear-gradient(90deg, rgba(36, 48, 42, 0.82), rgba(36, 48, 42, 0.42) 55%, rgba(36, 48, 42, 0.16)),
    url("hero-room.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(53, 73, 60, 0.08);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(247, 241, 232, 0.94));
  pointer-events: none;
}

.page-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead {
  color: #fff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.page-hero .lead {
  color: rgba(255, 252, 246, 0.88);
}

.about-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.82), rgba(36, 48, 42, 0.42) 55%, rgba(36, 48, 42, 0.16)),
    url("hero-room.png");
}

.sessions-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.82), rgba(36, 48, 42, 0.42) 55%, rgba(36, 48, 42, 0.16)),
    url("detail-sessions.png");
}

.activities-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.82), rgba(36, 48, 42, 0.42) 55%, rgba(36, 48, 42, 0.16)),
    url("detail-activities.png");
}

.ebook-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.78), rgba(36, 48, 42, 0.38) 55%, rgba(36, 48, 42, 0.14)),
    url("detail-ebook.png");
}

.courses-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.78), rgba(36, 48, 42, 0.38) 55%, rgba(36, 48, 42, 0.14)),
    url("detail-courses.png");
}

.events-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.78), rgba(36, 48, 42, 0.38) 55%, rgba(36, 48, 42, 0.14)),
    url("detail-events.png");
}

.contact-page .page-hero,
.book-page .page-hero {
  background-image:
    linear-gradient(90deg, rgba(36, 48, 42, 0.82), rgba(36, 48, 42, 0.42) 55%, rgba(36, 48, 42, 0.16)),
    url("detail-sessions.png");
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: rgba(255, 252, 246, 0.76);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 1.03rem;
}

.link-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.86);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(36, 48, 42, 0.06);
}

.visual-card {
  display: grid;
  grid-template-rows: 236px 1fr;
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 73, 60, 0.34);
  box-shadow: 0 22px 50px rgba(36, 48, 42, 0.14);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card-body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.visual-card-body p {
  margin: 0;
}

.visual-card-cta {
  color: var(--sage-dark);
  font-weight: 900;
}

.detail-hero {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(237, 241, 232, 0.92), rgba(255, 252, 246, 0.7)),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.detail-hero img,
.detail-image {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 10px solid rgba(255, 252, 246, 0.92);
  box-shadow: var(--shadow);
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}

.detail-panel {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(36, 48, 42, 0.08);
}

.detail-panel h2 {
  font-size: 2rem;
}

.detail-stack {
  display: grid;
  gap: 16px;
}

.detail-item {
  border: 1px solid var(--line);
  border-left: 5px solid rgba(113, 129, 109, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.86);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-item:hover {
  transform: translateY(-2px);
  border-left-color: var(--gold);
  box-shadow: 0 16px 40px rgba(36, 48, 42, 0.1);
}

.detail-item p {
  margin-bottom: 0;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.meta-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(237, 241, 232, 0.7);
  padding: 14px;
}

.meta-pill span {
  display: block;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-pill strong {
  color: var(--sage-dark);
}

.feature {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  border-top: 4px solid rgba(75, 154, 146, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-top-color: var(--gold);
  box-shadow: 0 18px 44px rgba(36, 48, 42, 0.12);
}

.feature span,
.card span,
.event-date {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature p,
.card p {
  margin-bottom: 0;
}

.price-line {
  margin-top: 14px;
  color: var(--sage-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.card .actions {
  margin-top: 18px;
}

.activity-card {
  display: grid;
  gap: 14px;
}

.activity-card p {
  margin: 0;
}

.activity-copy {
  display: grid;
  gap: 8px;
}

.activity-copy strong {
  color: var(--sage-dark);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.panel-line {
  border-left: 4px solid var(--gold);
  padding-left: 26px;
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: #536258;
}

.quote-band {
  background:
    linear-gradient(135deg, rgba(53, 73, 60, 0.96), rgba(113, 129, 109, 0.94)),
    var(--sage-dark);
  color: #fdf8ef;
  padding: 78px 0;
}

.quote-band blockquote {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.quote-band p {
  width: min(920px, calc(100% - 40px));
  margin: 20px auto 0;
  color: rgba(253, 248, 239, 0.74);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.feature-band > div:first-child p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  padding: 20px;
  box-shadow: 0 12px 34px rgba(36, 48, 42, 0.06);
}

.feature-list span {
  color: var(--sage-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.feature-list p {
  margin: 6px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.contact .section-head {
  position: sticky;
  top: 104px;
  border-left: 5px solid var(--gold);
  padding-left: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.contact-item span {
  display: block;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  display: inline-block;
  margin-top: 4px;
  color: var(--sage-dark);
  font-size: 1.12rem;
}

.contact-item p {
  margin: 6px 0 0;
}

.contact-card {
  border: 1px solid var(--line);
  border-top: 5px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(36, 48, 42, 0.08);
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.booking-points span {
  border: 1px solid rgba(53, 73, 60, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.75);
  color: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 8px 12px;
}

.map-frame {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 16 / 10;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
  box-shadow: 0 18px 48px rgba(36, 48, 42, 0.07);
}

.admin-sidebar {
  position: sticky;
  top: 96px;
}

.admin-tabs {
  display: grid;
  gap: 8px;
}

.admin-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--sage-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 0 12px;
}

.admin-tab.is-active {
  background: var(--sage-dark);
  color: #fff;
}

.admin-panel {
  display: grid;
  gap: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.72);
  padding: 14px;
}

.admin-row-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.admin-row h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.admin-row p {
  margin: 6px 0 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-small-button {
  min-height: 34px;
  border: 1px solid rgba(53, 73, 60, 0.28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--sage-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0 10px;
}

.admin-danger {
  color: #8f3e2f;
  border-color: rgba(143, 62, 47, 0.32);
}

.managed-section {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 40px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.payment-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.84);
  padding: 16px;
}

.payment-option strong {
  color: var(--sage-dark);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #465148;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 48, 42, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(113, 129, 109, 0.14);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #efe5d5;
  color: #536258;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-grid,
  .split,
  .contact,
  .admin-shell,
  .detail-hero-grid,
  .detail-layout,
  .home-hero-inner,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .detail-panel {
    position: static;
  }

  .contact .section-head {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .link-grid,
  .card-grid,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .nav,
  .wrap,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .home-page .site-header {
    position: static;
    background: rgba(255, 252, 246, 0.95);
  }

  .home-page .nav {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    padding: 14px 0;
    box-shadow: none;
  }

  .home-page .topbar {
    position: static;
  }

  .topbar-inner {
    width: min(100% - 28px, 1160px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
  }

  .home-hero {
    min-height: auto;
    padding: 74px 0 46px;
  }

  .appointment-panel {
    padding: 22px;
  }

  .trust-strip {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .page-hero {
    min-height: 360px;
    padding: 74px 0 54px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-media {
    min-height: 320px;
  }

  .detail-hero img,
  .detail-image {
    min-height: 280px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    position: static;
    width: auto;
    border-radius: 0;
  }

  .link-grid,
  .card-grid,
  .card-grid.four,
  .form-row,
  .admin-grid,
  .payment-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .feature,
  .card,
  .contact-card {
    padding: 20px;
  }

  .panel-line {
    padding-left: 18px;
  }
}

/* team-section:start */
.team-section {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.86), rgba(237, 241, 232, 0.72));
}

.team-photo {
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(36, 48, 42, 0.07);
}

.team-card span {
  display: block;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin-top: 9px;
  font-size: 1.34rem;
}

.team-card p {
  margin: 12px 0 0;
}

@media (max-width: 1040px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-photo img {
    aspect-ratio: 4 / 3;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* team-section:end */
