:root {
  --bg: #f4ecdf;
  --bg-soft: #efe3d0;
  --surface: rgba(255, 251, 245, 0.76);
  --surface-strong: #fff9f0;
  --text: #201812;
  --muted: #655a4c;
  --line: rgba(32, 24, 18, 0.12);
  --accent: #bf5d36;
  --accent-deep: #8b3f22;
  --forest: #20332e;
  --forest-soft: #2d463f;
  --white: #fffdf8;
  --shadow-soft: 0 18px 60px rgba(67, 39, 19, 0.12);
  --shadow-card: 0 24px 70px rgba(67, 39, 19, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1120px, calc(100vw - 40px));
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 93, 54, 0.14), transparent 28%),
    radial-gradient(circle at right 20%, rgba(32, 51, 46, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe4 0%, #f4ecdf 45%, #efe5d7 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 236, 223, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.brand-logo {
  display: none;
  width: auto;
  max-height: 54px;
  max-width: 220px;
  object-fit: contain;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-logo {
  max-height: 48px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-nav a,
.footer-links a,
.footer-links span {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.9);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow-soft);
}

.button-solid:hover {
  background: #172723;
}

.button-outline {
  border: 1px solid rgba(32, 24, 18, 0.18);
  color: var(--text);
  background: rgba(255, 249, 240, 0.45);
}

.button-outline:hover {
  border-color: rgba(32, 24, 18, 0.4);
  background: rgba(255, 249, 240, 0.8);
}

.button-light {
  color: var(--forest);
  background: var(--white);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
}

.hero-orb-one {
  width: 320px;
  height: 320px;
  top: 50px;
  right: -80px;
  background: radial-gradient(circle, rgba(191, 93, 54, 0.24), transparent 70%);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(32, 51, 46, 0.16), transparent 70%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.hero h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero h1 .title-inline {
  color: inherit;
  font-style: normal;
}

.hero-text,
.section-heading p,
.section-copy,
.booking-card p,
.about-notes p,
.cta-band p,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 36rem;
  margin: 28px 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  padding: 22px 28px 28px 0;
}

.portrait-frame {
  position: relative;
  min-height: 740px;
  border-radius: var(--radius-xl);
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 249, 240, 0.86), rgba(231, 215, 193, 0.54));
  box-shadow: var(--shadow-card);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(32, 24, 18, 0.1);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: -1;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 708px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: calc(var(--radius-xl) - 10px);
}

.portrait-stage {
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 244, 226, 0.95), rgba(241, 207, 154, 0.88) 22%, rgba(25, 39, 35, 0.96) 62%),
    linear-gradient(180deg, #233630 0%, #17231f 100%);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 6px;
  max-width: 220px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(32, 24, 18, 0.08);
}

.floating-card strong {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.floating-card-top {
  top: 42px;
  left: -34px;
}

.floating-card-bottom {
  right: -22px;
  bottom: 22px;
}

.metrics {
  padding: 18px 0 12px;
}

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

.metrics article,
.service-card,
.booking-card,
.testimonial-card,
.about-panel,
.about-notes article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.metrics article {
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.metric-value {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.metric-label,
.service-index,
.testimonial-author,
.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.6), rgba(239, 227, 208, 0.76));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.cta-band h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.booking-card:hover,
.contact-card:hover,
.about-notes article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(67, 39, 19, 0.17);
}

.service-card h3,
.booking-card h3,
.about-notes h3 {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.service-card p,
.consultation-list span,
.booking-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.consultation-grid,
.about-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 28px;
  align-items: start;
}

.consultation-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.consultation-list div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.consultation-list strong,
.booking-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.booking-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.carousel-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(32, 24, 18, 0.16);
  background: rgba(255, 250, 244, 0.75);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 24, 18, 0.36);
  background: rgba(255, 250, 244, 1);
}

.testimonial-card {
  min-height: 320px;
  padding: 34px 34px 28px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.quote-mark {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 6px auto 24px;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.3;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 24, 18, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.testimonial-dots button[aria-current="true"] {
  width: 38px;
  background: var(--forest);
}

.about-panel,
.about-notes article,
.contact-card {
  border-radius: var(--radius-lg);
}

.about-panel,
.about-notes article {
  padding: 30px;
}

.about-notes {
  display: grid;
  gap: 22px;
}

.cta-band {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.contact-link {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.site-footer {
  padding-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 32px 0 24px;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 20px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .service-grid,
  .consultation-grid,
  .about-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
    padding-right: 0;
  }

  .portrait-frame {
    min-height: 620px;
  }

  .hero-image {
    height: 588px;
  }

  .floating-card-top {
    left: 12px;
  }

  .floating-card-bottom {
    right: 12px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 40px;
  }

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

  .portrait-frame {
    min-height: 520px;
  }

  .hero-image {
    height: 488px;
  }

  .section,
  .cta-band {
    padding: 72px 0;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    justify-self: center;
  }

  .testimonial-card {
    min-height: 0;
    padding: 28px 22px 24px;
  }

  .contact-link {
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
