:root {
  color-scheme: light;
  --ink: #201f1d;
  --muted: #655f58;
  --soft: #f7f3ef;
  --paper: #ffffff;
  --line: #ded6cc;
  --sage: #526f65;
  --sage-soft: #e4eee8;
  --rose: #b76066;
  --rose-deep: #833c43;
  --gold: #bd9454;
  --clay: #c47e5c;
  --charcoal: #242c2a;
  --shadow: 0 24px 70px rgba(36, 44, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open,
body.language-modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 300;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--charcoal);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(32, 31, 29, 0.54);
  backdrop-filter: blur(12px);
}

.language-modal.is-visible {
  display: grid;
}

.language-card {
  width: min(520px, 100%);
  border: 1px solid rgba(189, 148, 84, 0.28);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 34px;
  text-align: center;
}

.language-card img {
  width: min(260px, 82%);
  height: auto;
  object-fit: contain;
  margin: 0 auto 14px;
}

.language-card .btn-secondary {
  border-color: var(--line);
  background: var(--soft);
}

.modal-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-card h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
}

.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 239, 0.84);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(32, 31, 29, 0.1);
  background: rgba(247, 243, 239, 0.96);
}

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

.brand-lockup {
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup img {
  width: 76px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-fallback {
  display: grid;
  line-height: 1.1;
}

.brand-lockup strong {
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 850;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > a,
.lang-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  padding: 0 12px;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(82, 111, 101, 0.1);
  color: var(--charcoal);
  outline: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 4px;
}

.lang-btn {
  min-width: 42px;
  background: transparent;
  padding: 0 10px;
}

.lang-btn.is-active {
  background: var(--charcoal);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 31, 29, 0.84) 0%, rgba(36, 44, 42, 0.68) 42%, rgba(36, 44, 42, 0.12) 100%),
    rgba(32, 31, 29, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 62px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d5c8;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  max-width: 710px;
  font-size: 64px;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  color: inherit;
  font-size: 15px;
  font-weight: 840;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--paper);
  box-shadow: 0 14px 36px rgba(131, 60, 67, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--rose-deep);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.section .btn-secondary,
.contact-band .btn-secondary {
  border-color: var(--line);
  background: var(--paper);
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.quick-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 760;
  padding: 0 13px;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

.section h2 {
  color: var(--charcoal);
  font-size: 42px;
}

.section p {
  color: var(--muted);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(36, 44, 42, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card.featured img {
  object-position: center 28%;
}

.service-card > :not(img) {
  margin-left: 26px;
  margin-right: 26px;
}

.service-marker {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 13px;
  font-weight: 860;
}

.service-card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 23px;
  line-height: 1.18;
}

.service-card p {
  margin-top: 0;
  margin-bottom: 22px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 26px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.approach {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portrait-panel {
  min-height: 470px;
  display: grid;
  align-content: end;
  gap: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 111, 101, 0.96), rgba(36, 44, 42, 0.98)),
    var(--charcoal);
  box-shadow: var(--shadow);
  padding: 30px;
}

.portrait-panel img {
  width: 132px;
  height: 132px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.portrait-panel div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px;
}

.portrait-panel p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.portrait-panel strong {
  display: block;
  color: var(--paper);
  font-size: 24px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin: 20px 0 0;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.credential-list div {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.credential-list dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.credential-list dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 850;
}

.protocol-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
  margin: 0;
  padding: 72px max(20px, calc((100% - 1160px) / 2));
  background: var(--charcoal);
  color: var(--paper);
}

.protocol-band h2,
.protocol-band p {
  color: var(--paper);
}

.protocol-band .section-kicker {
  color: #e7bea3;
}

.protocol-steps {
  display: grid;
  gap: 12px;
}

.protocol-steps div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.protocol-steps span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 900;
}

.protocol-steps p {
  margin: 0;
  font-weight: 760;
}

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

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid figcaption {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--charcoal);
  font-weight: 800;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-note {
  margin-top: 28px;
  border-left: 4px solid var(--sage);
  background: var(--sage-soft);
  padding: 18px;
}

.booking-note strong,
.booking-note span {
  display: block;
}

.booking-note span {
  margin-top: 4px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--rose-deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.booking-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc6bc;
  border-radius: 8px;
  background: #fffefd;
  color: var(--ink);
  padding: 11px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(82, 111, 101, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-result {
  display: none;
  border: 1px solid rgba(82, 111, 101, 0.28);
  border-radius: 8px;
  background: #f1f7f4;
  color: var(--charcoal);
  padding: 16px;
  white-space: pre-wrap;
}

.form-result.is-visible {
  display: block;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--charcoal);
  font-weight: 840;
  list-style: none;
  padding: 0 20px;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--rose-deep);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 36px 0;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer a,
.footer-language {
  color: var(--rose-deep);
  font-weight: 820;
}

.footer-language {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 16px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links > a {
    justify-content: flex-start;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(32, 31, 29, 0.78) 0%, rgba(36, 44, 42, 0.62) 55%, rgba(36, 44, 42, 0.34) 100%),
      rgba(32, 31, 29, 0.08);
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-grid,
  .approach,
  .protocol-band,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .approach,
  .protocol-band,
  .booking-section {
    gap: 34px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .portrait-panel {
    min-height: 420px;
  }

  .booking-copy {
    position: static;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero-content,
  .section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup img {
    width: 58px;
    height: 44px;
  }

  .brand-lockup strong {
    font-size: 14px;
  }

  .brand-lockup small {
    font-size: 12px;
  }

  .language-card {
    padding: 24px;
  }

  .language-card img {
    width: min(220px, 82%);
    height: auto;
  }

  .language-card h2 {
    font-size: 25px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding: 94px 0 46px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .service-card > :not(img) {
    margin-left: 20px;
    margin-right: 20px;
  }

  .service-card ul {
    margin-bottom: 20px;
  }

  .credential-list,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .protocol-band {
    padding: 52px 14px;
  }

  .booking-form {
    padding: 20px;
  }
}
