/* Botani Beauty Story — premium landing styles */
:root {
  --forest: #14332c;
  --forest-deep: #0d231e;
  --sage: #6d8b74;
  --sage-soft: #9aaf9a;
  --gold: #c4a574;
  --gold-light: #e2d0b0;
  --cream: #f6f1e8;
  --cream-dark: #ebe3d4;
  --blush: #e8d5ce;
  --ink: #1c1917;
  --ink-soft: #4a4540;
  --white: #fffcf8;
  --glass: rgba(255, 252, 248, 0.16);
  --glass-border: rgba(255, 252, 248, 0.28);
  --shadow: 0 18px 50px rgba(20, 51, 44, 0.12);
  --shadow-soft: 0 8px 28px rgba(20, 51, 44, 0.08);
  --radius: 1.5rem;
  --radius-sm: 1rem;
  --header-h: 4.25rem;
  --claim-h: 2.5rem;
  --font-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--claim-h) + var(--header-h) + 0.75rem);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.logo-word {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--forest-deep);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--forest);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: calc(var(--claim-h) + 0.5rem);
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 10px 24px rgba(196, 165, 116, 0.28);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(20, 51, 44, 0.18);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Claim bar */
.claim-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--claim-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.claim-bar a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.05rem;
}

.claim-cta {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.12rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--gold) !important;
  background: var(--gold);
  color: var(--forest-deep) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.claim-bar a:hover {
  color: var(--white);
}

@media (max-width: 420px) {
  .claim-bar {
    font-size: 0.74rem;
    text-align: center;
    flex-wrap: wrap;
    height: auto;
    min-height: var(--claim-h);
    padding: 0.4rem 0.75rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: var(--claim-h);
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.82);
  border-bottom: 1px solid rgba(20, 51, 44, 0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(246, 241, 232, 0.94);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(196, 165, 116, 0.35);
}

.logo-word {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.6rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--forest);
  border-radius: 99px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.site-nav {
  display: none;
}

.site-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(20, 51, 44, 0.08);
  box-shadow: var(--shadow);
}

.site-nav a {
  text-decoration: none;
  color: var(--forest);
  font-size: 0.95rem;
  padding: 0.55rem 0.2rem;
}

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

.nav-cta {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--claim-h));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero.is-visible .hero-media img {
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 35, 30, 0.28) 0%, rgba(13, 35, 30, 0.55) 42%, rgba(13, 35, 30, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 7rem 1.25rem 4.5rem;
}

.hero h1,
.hero .kicker,
.hero .lede,
.hero .type-line {
  color: var(--white);
}

.hero .lede {
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 252, 248, 0.88);
}

.type-line {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.7);
}

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

.breadcrumbs a:hover {
  color: var(--gold-light);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 18rem;
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
  transition: transform 0.8s var(--ease);
}

.about-card:hover img {
  transform: scale(1.06);
}

.facts {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.fact {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid rgba(20, 51, 44, 0.06);
}

.fact strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.fact span {
  color: var(--forest);
}

/* Why */
.why {
  background: var(--forest);
  color: var(--cream);
}

.why h2,
.why .kicker {
  color: var(--gold-light);
}

.why p {
  color: rgba(246, 241, 232, 0.82);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

.why-item {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.05);
  border: 1px solid rgba(255, 252, 248, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.why-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 252, 248, 0.09);
}

.why-item h3 {
  color: var(--white);
}

.why-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

/* Services */
.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid rgba(20, 51, 44, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.25rem 1.2rem;
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-panel,
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  padding: 1.8rem 1.5rem;
}

.contact-dl {
  margin: 0 0 1.4rem;
}

.contact-dl div {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(20, 51, 44, 0.08);
}

.contact-dl dt {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.contact-dl dd {
  margin: 0;
  color: var(--forest);
}

.map-wrap iframe {
  width: 100%;
  height: min(28rem, 70vw);
  border: 0;
  display: block;
}

/* Local */
.local {
  background: var(--white);
}

.local-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.local-list li {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--forest);
}

/* CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
  text-align: center;
}

.final-cta .section-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 252, 248, 0.82);
  margin-bottom: 1.6rem;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(196, 165, 116, 0.22), transparent 55%);
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(246, 241, 232, 0.72);
  padding: 2.5rem 1.25rem 6.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-name {
  color: var(--cream);
  font-weight: 500;
}

/* Mobile sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 40;
  display: flex;
  justify-content: center;
}

.sticky-cta .btn {
  width: 100%;
  box-shadow: 0 16px 40px rgba(13, 35, 30, 0.28);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (min-width: 720px) {
  .section {
    padding: 6.25rem 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
  }

  .site-nav a {
    padding: 0;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 2.55rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
  }

  .about-grid,
  .contact-grid,
  .why-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

@media (min-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
  }

  .local-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .reveal,
  .stagger > *,
  .hero-media img,
  .about-card img,
  .btn,
  .why-item,
  .service-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
