:root {
  --cream: #f6f0e6;
  --ivory: #fbf7f0;
  --sand: #e6d5be;
  --white: #fffcfa;
  --ink: #2c2620;
  --taupe: #5a5148;
  --taupe-muted: #6b635a;
  --terracotta: #9c4630;
  --terracotta-hover: #823a28;
  --gold: #b08a5b;
  --sage: #7e8f72;
  --radius: 12px;
  --header-h: 152px;
  --max: 1120px;
  --gutter: clamp(20px, 4vw, 40px);
  --shadow: 0 12px 40px rgba(44, 38, 32, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

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

a {
  color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--terracotta-hover);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-color: var(--cream);
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
  color: var(--cream);
}

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

#main,
#services,
#about,
#location {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.97);
  border-bottom: 1px solid var(--sand);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  padding: 10px 0;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.05;
  min-width: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  width: 156px;
  height: 156px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-id {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  line-height: 1.12;
}

.brand-role {
  margin-top: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.55rem;
  color: #8f6234;
  letter-spacing: -0.015em;
}

.wordmark-sub {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
  margin-top: 2px;
}

.byline {
  font-size: 0.9rem;
  color: var(--taupe);
  font-weight: 600;
}

.site-nav {
  margin-left: auto;
}

.header-actions {
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 12px 8px 14px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: var(--gold);
}

.lang-caret {
  width: 12px;
  height: 12px;
  display: block;
}

.lang-dropdown.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  min-width: 188px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(44, 38, 32, 0.14);
}

.lang-dropdown.is-open .lang-menu {
  display: block;
}

.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.lang-menu button:hover {
  background: var(--cream);
}

.lang-menu button[aria-selected="true"] {
  background: var(--cream);
  color: var(--terracotta);
}

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

.ig-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--taupe);
  text-decoration: none;
  flex-shrink: 0;
}

.ig-header svg {
  width: 22px;
  height: 22px;
}

.ig-header:hover {
  color: var(--terracotta);
}

.phone-header {
  display: none;
  color: var(--taupe);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.phone-header:hover {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px 18px;
}

.site-nav a {
  color: var(--taupe);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  border-color: var(--terracotta-hover);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand);
}

.btn-ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn-small {
  min-height: 40px;
  padding: 6px 14px;
  font-size: 0.92rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 48px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.12;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: var(--sage);
  top: -60px;
  left: -40px;
}

.hero::after {
  width: 340px;
  height: 340px;
  background: var(--terracotta);
  right: -80px;
  bottom: -120px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.kicker {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
  margin: 0 0 10px;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.lede {
  font-size: 1.15rem;
  color: var(--taupe);
  margin: 0 0 8px;
  max-width: 38ch;
}

.support {
  margin: 0 0 22px;
  color: var(--taupe-muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.address-line {
  margin: 0 0 8px;
  color: var(--taupe);
}

.address-line a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.appt-flag {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 600;
  color: #2f6f9a;
  background: #e8f2f8;
  border: 1px solid #c5dcea;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
}

.address-line a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chips li {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
  color: var(--taupe);
  width: fit-content;
}

.hero-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
  background: transparent;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  background: none;
}

.hero-photo figcaption {
  font-size: 0.82rem;
  color: var(--taupe-muted);
  margin-top: 8px;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 10px;
}

.section-lead {
  color: var(--taupe);
  margin: 0 0 28px;
  max-width: 52ch;
}

.services {
  background: var(--ivory);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.cards {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(44, 38, 32, 0.03);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card p {
  margin: 0 0 14px;
  color: var(--taupe);
  font-size: 1rem;
}

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

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--sand);
  padding-top: 10px;
}

.price-row strong {
  font-weight: 600;
}

.modalities {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--sage);
  color: var(--taupe);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* About */
.about-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 20px 0 8px;
}

.quote footer {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--taupe);
}

.closing {
  color: var(--taupe);
}

/* Location */
.location-grid {
  display: grid;
  gap: 28px;
}

.place a {
  font-weight: 600;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 22px;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.hours caption {
  text-align: left;
  font-size: 0.9rem;
  color: var(--taupe);
  margin-bottom: 8px;
  caption-side: bottom;
  padding-top: 10px;
}

.hours th,
.hours td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--sand);
}

.hours th {
  font-weight: 600;
  width: 42%;
}

.arrive {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.arrive h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.arrive p {
  margin: 0;
  color: var(--taupe);
}

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

.contact-list a {
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #2c2620;
  color: #e6d5be;
  padding: 36px 0 120px;
}

.site-footer a {
  color: #f6f0e6;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #d4b48a;
}

.legal-line {
  margin: 18px 0 0;
  font-size: 0.9rem;
  color: #c4b8a8;
}

/* Mobile bottom bar */
.bottom-bar {
  display: none;
}

@media (min-width: 720px) {
  .phone-header {
    display: inline;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    min-height: 520px;
  }

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

  .about-grid,
  .location-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cards .card:nth-child(4),
  .cards .card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 719px) {
  :root {
    --header-h: 132px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex: 1 0 100%;
    order: 3;
    margin-left: 0;
  }

  .brand-logo {
    width: 124px;
    height: 124px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-role {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .lang-toggle {
    min-height: 44px;
    font-size: 0.85rem;
    padding: 8px 10px 8px 12px;
  }

  .lang-menu {
    position: fixed;
    left: var(--gutter);
    right: var(--gutter);
    top: auto;
    min-width: 0;
    width: auto;
    max-height: min(70vh, 360px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    border-radius: 18px;
  }

  .lang-menu button {
    min-height: 48px;
    font-size: 1.05rem;
    padding: 14px 16px;
  }

  html.js .nav-toggle {
    display: flex;
  }

  html.js .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ivory);
    border-bottom: 1px solid var(--sand);
    padding: 8px var(--gutter) 16px;
  }

  html.js .site-nav.is-open {
    display: block;
  }

  html.js .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  html.js .site-nav a {
    display: block;
    padding: 12px 0;
    min-height: 44px;
  }

  .site-header {
    position: relative;
  }

  html.js .site-header {
    position: sticky;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }

  .bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 247, 240, 0.96);
    border-top: 1px solid var(--sand);
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .hero-ctas .btn,
  .bottom-bar .btn {
    width: 100%;
  }
}
