
:root {
  --ink: #2f3735;
  --muted: #5f6a66;
  --cream: #f6f0e7;
  --paper: #fffdf9;
  --sage: #9eae98;
  --sage-dark: #4f6652;
  --clay: #c98268;
  --line: #d9d1c7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(47, 55, 53, .10);
  --radius: 22px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 15px;
  background: var(--ink);
  color: white;
  z-index: 1000;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,249,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.navigation {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.08;
}
.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.brand-sub {
  margin-top: 5px;
  color: var(--sage-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  text-decoration: none;
  font-size: .93rem;
  font-weight: 750;
}
.main-nav a:hover,
.main-nav a.active { color: var(--sage-dark); }
.nav-button {
  padding: 10px 16px;
  color: white !important;
  background: var(--ink);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  padding: 8px 13px;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
}
h1 {
  font-size: clamp(2.7rem, 5.5vw, 5.1rem);
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.42rem;
  margin-bottom: 10px;
}
.page-kicker {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.subtitle {
  max-width: 740px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.15rem;
}
.large-copy { font-size: 1.12rem; }

.hero {
  padding: 82px 0 88px;
  background: linear-gradient(130deg, var(--cream), var(--paper) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 62px;
  align-items: center;
}
.hero-photo-wrap {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  padding: 12px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
}
.photo-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  padding: 14px 16px;
  color: white;
  background: rgba(47,55,53,.94);
}
.photo-caption strong,
.photo-caption span { display: block; }
.photo-caption span { opacity: .82; font-size: .88rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.button.dark { color: white; background: var(--ink); }
.button.outline { border-color: var(--ink); background: transparent; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.section { padding: 82px 0; }
.section.alt { background: var(--cream); }

.content-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.narrow { max-width: 760px; }

.cards {
  display: grid;
  gap: 22px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(47,55,53,.05);
}
.card p:last-child { margin-bottom: 0; }
.card a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: none;
}

.image-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 10px;
  background: white;
  box-shadow: var(--shadow);
}
.image-card img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.image-card.tall img {
  max-height: 520px;
  object-position: center top;
}

.dark-band {
  padding: 30px 0;
  color: white;
  background: var(--sage-dark);
}
.dark-band .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dark-band div {
  padding: 12px 18px;
  border-right: 1px solid rgba(255,255,255,.24);
}
.dark-band div:last-child { border-right: 0; }
.dark-band strong,
.dark-band span { display: block; }
.dark-band span { opacity: .86; font-size: .92rem; }

.check-list { padding-left: 20px; }
.check-list li { margin-bottom: 8px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.price-card.featured {
  border: 2px solid var(--sage-dark);
}
.price {
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
}
.price-note {
  color: var(--muted);
  font-size: .92rem;
}

.travel-box,
.notice-box {
  margin-top: 26px;
  padding: 26px 28px;
  border-left: 5px solid var(--clay);
  background: white;
  border-radius: 0 16px 16px 0;
}
.travel-box ul { margin-bottom: 0; }

.approach-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
}
.principles {
  display: grid;
  gap: 16px;
}
.principle {
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.language-note {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 15px;
  border-radius: 12px;
  color: var(--sage-dark);
  background: var(--cream);
  font-weight: 750;
}

.faq-list { display: grid; gap: 13px; }
details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
summary {
  cursor: pointer;
  padding: 19px 0;
  font-weight: 800;
}
details p { margin: 0; padding-bottom: 20px; }

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 54px;
}
.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  font-weight: 750;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cfc8be;
  border-radius: 10px;
  background: white;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(79,102,82,.18);
  border-color: var(--sage-dark);
}
textarea { resize: vertical; }

.scope {
  padding: 32px 0;
  color: #405047;
  background: #edf0ed;
  font-size: .9rem;
}
.scope p { margin: 7px 0; }

.footer {
  padding: 34px 0;
  color: white;
  background: var(--ink);
}
.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer strong,
.footer span { display: block; }
.footer span,
.footer p { opacity: .76; }

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }

  .hero-grid,
  .content-grid,
  .split-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap { margin: 0; }

  .dark-band .shell {
    grid-template-columns: 1fr;
  }
  .dark-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
  .dark-band div:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 60px 0 66px; }
  .section { padding: 64px 0; }
  .hero-photo { height: 380px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .two-col { grid-template-columns: 1fr; gap: 0; }
  .footer .shell { flex-direction: column; }
}


/* Free introductory chat */
.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  min-width: 112px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--sage-dark);
  box-shadow: 0 12px 30px rgba(47, 55, 53, .24);
  font-weight: 850;
  cursor: pointer;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 301;
  width: min(390px, calc(100% - 30px));
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 55px rgba(47, 55, 53, .24);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: white;
  background: var(--sage-dark);
  border-radius: 19px 19px 0 0;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 3px;
  font-size: .85rem;
  opacity: .9;
}

.chat-close {
  align-self: flex-start;
  border: 0;
  color: white;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

#free-chat-form {
  padding: 20px;
}

#free-chat-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 750;
}

.chat-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.chat-status {
  margin-bottom: 0;
  font-weight: 750;
}

.chat-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.open-chat-button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 640px) {
  .chat-launcher {
    right: 14px;
    bottom: 14px;
  }

  .chat-panel {
    right: 14px;
    bottom: 72px;
    width: calc(100% - 28px);
  }
}



/* Clay-colour opening sections and accents */
:root {
  --clay-soft: #ead0c3;
  --clay-pale: #f4e3da;
  --clay-deep: #a85f4d;
}

.hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 130, 104, .24), transparent 30%),
    linear-gradient(135deg, var(--clay-pale), var(--cream) 58%, var(--paper));
}

.hero .page-kicker {
  color: var(--clay-deep);
}

.hero .button.dark {
  background: var(--clay-deep);
}

.hero .button.dark:hover,
.chat-launcher:hover {
  filter: brightness(.95);
}

.dark-band {
  background: var(--clay-deep);
}

.card:nth-child(2),
.price-card.featured,
.notice-box,
.travel-box {
  border-color: var(--clay);
}

.card:nth-child(2) {
  background: linear-gradient(180deg, var(--clay-pale), #fff);
}

.language-note {
  color: #744235;
  background: var(--clay-pale);
}

.photo-caption {
  background: rgba(105, 61, 50, .94);
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(145deg, var(--clay-pale), var(--cream) 65%, var(--paper));
  }
}
