/* ============================================================
   FRIENDLY HAIRCUTTER — California Coastal Hair Studio
   Main Stylesheet — Mobile-first
   ============================================================ */

/* 1. Custom Properties
   ============================================================ */
:root {
  /* — Palette — */
  --c-bg:        #FAF5E9;
  --c-bg-alt:    #F2E9D0;
  --c-sand:      #DDC07A;
  --c-sand-lt:   #EDD9A3;
  --c-ocean:     #1E7296;
  --c-ocean-dk:  #145470;
  --c-ocean-lt:  #C8E6F3;
  --c-coral:     #E05A2B;
  --c-coral-dk:  #B84119;
  --c-sun:       #C9880C;
  --c-foam:      #9ECFC9;
  --c-dark:      #2B1A0E;
  --c-dark-2:    #3E2918;
  --c-muted:     #7A5C45;
  --c-muted-lt:  #A88870;
  --c-light:     #FEFAF2;
  --c-border:    #E2D0B0;

  /* — Typography — */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* — Fluid Type Scale — */
  --t-xs:   clamp(0.75rem,  1.5vw,  0.8125rem);
  --t-sm:   clamp(0.875rem, 2vw,    0.9375rem);
  --t-base: clamp(1rem,     2.5vw,  1.0625rem);
  --t-md:   clamp(1.125rem, 3vw,    1.25rem);
  --t-lg:   clamp(1.375rem, 3.5vw,  1.625rem);
  --t-xl:   clamp(1.75rem,  4.5vw,  2.25rem);
  --t-2xl:  clamp(2.25rem,  5.5vw,  3.125rem);
  --t-3xl:  clamp(2.75rem,  7vw,    4.5rem);
  --t-hero: clamp(3.25rem,  9.5vw,  7rem);

  /* — Fluid Space — */
  --s-1:  clamp(0.25rem,  0.75vw, 0.375rem);
  --s-2:  clamp(0.5rem,   1.25vw, 0.75rem);
  --s-3:  clamp(0.75rem,  2vw,    1rem);
  --s-4:  clamp(1rem,     2.5vw,  1.375rem);
  --s-5:  clamp(1.25rem,  3vw,    1.75rem);
  --s-6:  clamp(1.5rem,   3.5vw,  2.25rem);
  --s-8:  clamp(2rem,     5vw,    3rem);
  --s-10: clamp(2.5rem,   6vw,    4.25rem);
  --s-12: clamp(3rem,     7vw,    5.5rem);
  --s-16: clamp(4rem,     9vw,    7.5rem);
  --s-20: clamp(5rem,     11vw,   9.5rem);

  /* — Layout — */
  --ctr:     1160px;
  --ctr-pad: clamp(1.25rem, 5vw, 2.5rem);
  --nav-h:   72px;
  --r-sm:    4px;
  --r-md:    10px;
  --r-lg:    20px;
  --r-xl:    32px;
  --r-full:  9999px;

  /* — Shadows — */
  --sh-sm: 0 1px 4px rgba(43,26,14,.07);
  --sh-md: 0 4px 20px rgba(43,26,14,.09);
  --sh-lg: 0 10px 40px rgba(43,26,14,.12);

  /* — Motion — */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 380ms;
}

/* 2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--c-dark);
  background: var(--c-bg);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* 3. Skip Link
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-4);
  z-index: 9999;
  padding: var(--s-2) var(--s-4);
  background: var(--c-ocean);
  color: var(--c-light);
  font-size: var(--t-sm);
  font-weight: 600;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top var(--dur-fast) ease-out;
}
.skip-link:focus { top: 0; }

/* 4. Utilities
   ============================================================ */
.container {
  max-width: var(--ctr);
  margin-inline: auto;
  padding-inline: var(--ctr-pad);
}

.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;
}

/* 5. Typography Helpers
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-coral);
}

.section-title {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: var(--c-dark);
}

/* 6. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.875em 1.75em;
  border-radius: var(--r-full);
  transition: background var(--dur-base) ease-out,
              color var(--dur-base) ease-out,
              box-shadow var(--dur-base) ease-out,
              transform var(--dur-fast) ease-out;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--c-ocean); outline-offset: 3px; }

.btn-primary {
  background: var(--c-coral);
  color: var(--c-light);
  border-color: var(--c-coral);
}
.btn-primary:hover {
  background: var(--c-coral-dk);
  border-color: var(--c-coral-dk);
  box-shadow: 0 4px 16px rgba(224,90,43,.35);
}

.btn-outline {
  background: transparent;
  color: var(--c-ocean);
  border-color: var(--c-ocean);
}
.btn-outline:hover {
  background: var(--c-ocean);
  color: var(--c-light);
  box-shadow: 0 4px 16px rgba(30,114,150,.25);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ocean);
  border-color: transparent;
  padding-inline: 0;
  font-weight: 600;
}
.btn-ghost .arrow {
  display: inline-block;
  transition: transform var(--dur-base) ease-out;
}
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-ghost:hover { color: var(--c-ocean-dk); }

.btn-light {
  background: var(--c-light);
  color: var(--c-dark);
  border-color: var(--c-light);
}
.btn-light:hover {
  background: var(--c-bg);
  box-shadow: 0 4px 16px rgba(43,26,14,.15);
}

/* 7. Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,245,233,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) ease-out,
              box-shadow var(--dur-base) ease-out;
}
.site-nav.scrolled {
  border-color: var(--c-border);
  box-shadow: var(--sh-sm);
}

.nav-inner {
  max-width: var(--ctr);
  margin-inline: auto;
  padding-inline: var(--ctr-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-name {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-style: italic;
  font-weight: 600;
  color: var(--c-dark);
  letter-spacing: -0.01em;
}
.nav-logo .logo-tag {
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-coral);
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav-links a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) ease-out;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--c-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav-links a:hover { color: var(--c-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--c-dark); font-weight: 600; }

.nav-book { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) ease-out;
}
.nav-toggle:hover { background: var(--c-border); }
.nav-toggle:focus-visible { outline: 2px solid var(--c-ocean); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-fast) ease-out;
  width: 100%;
}
.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; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: var(--s-6) var(--ctr-pad) var(--s-8);
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--dur-slow) var(--ease),
              opacity var(--dur-base) ease-out,
              visibility var(--dur-base) ease-out;
  z-index: 99;
  box-shadow: var(--sh-md);
}
.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.nav-drawer a {
  font-size: var(--t-xl);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--c-dark);
  display: block;
  padding: var(--s-2) 0;
  transition: color var(--dur-fast) ease-out;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--c-coral); }
.nav-drawer .drawer-book {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .nav-book { display: inline-flex; }
  .nav-drawer { display: none !important; }
}

.nav-spacer { height: var(--nav-h); }

/* 8. Footer
   ============================================================ */
.site-footer {
  background: var(--c-dark-2);
  padding-top: var(--s-12);
  padding-bottom: var(--s-8);
}

.footer-grid {
  display: grid;
  gap: var(--s-8);
  margin-bottom: var(--s-10);
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.footer-brand .footer-logo-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--c-light);
  display: block;
  line-height: 1.1;
}
.footer-brand .footer-logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sand);
  font-weight: 700;
  display: block;
}
.footer-brand p {
  font-size: var(--t-sm);
  color: rgba(254,250,242,.6);
  line-height: 1.75;
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a {
  font-size: var(--t-sm);
  color: rgba(254,250,242,.6);
  transition: color var(--dur-fast) ease-out;
}
.footer-col a:hover { color: var(--c-light); }
.footer-col address { font-style: normal; }
.footer-col address p {
  font-size: var(--t-sm);
  color: rgba(254,250,242,.6);
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid rgba(254,250,242,.1);
  padding-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: var(--t-xs); color: rgba(254,250,242,.35); }

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* 9. Page Hero (interior pages)
   ============================================================ */
.page-hero {
  background: var(--c-bg-alt);
  padding: var(--s-12) 0 var(--s-10);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 55vw; max-width: 480px;
  height: 55vw; max-height: 480px;
  background: radial-gradient(circle, var(--c-sand-lt) 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { margin-bottom: var(--s-3); }
.page-hero h1 {
  font-family: var(--f-display);
  font-size: var(--t-3xl);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-dark);
}
.page-hero p {
  margin-top: var(--s-4);
  font-size: var(--t-md);
  color: var(--c-muted);
  max-width: 50ch;
  line-height: 1.7;
}

/* Wave SVG helpers */
.wave-bottom, .wave-top {
  display: block;
  width: 100%;
  height: clamp(36px, 5vw, 64px);
}
.wave-bottom { margin-bottom: -1px; }
.wave-top    { margin-top: -1px; }

/* 10. Home — Hero
   ============================================================ */
.home-hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--c-bg) 0%, var(--c-bg-alt) 55%, #EAD89A22 100%);
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 65vw; max-width: 580px;
  height: 65vw; max-height: 580px;
  background: radial-gradient(ellipse, var(--c-sand-lt) 0%, transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -8%;
  width: 50vw; max-width: 400px;
  height: 50vw; max-height: 400px;
  background: radial-gradient(ellipse, var(--c-ocean-lt) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  align-items: center;
  gap: var(--s-10);
  position: relative;
  z-index: 1;
}

.hero-text .eyebrow { margin-bottom: var(--s-4); }

.hero-headline {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-style: italic;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--c-dark);
}
.hero-headline .accent { color: var(--c-coral); }

.hero-sub {
  margin-top: var(--s-5);
  font-size: var(--t-md);
  color: var(--c-muted);
  max-width: 42ch;
  line-height: 1.75;
}

.hero-actions {
  margin-top: var(--s-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
  margin-top: var(--s-8);
}
.hero-badge .stars { color: var(--c-sun); font-size: 0.9rem; letter-spacing: 1px; }
.hero-badge p { font-size: var(--t-xs); color: var(--c-muted); }
.hero-badge strong { color: var(--c-dark); }

.hero-image { display: none; position: relative; }

.hero-photo {
  aspect-ratio: 3/4;
  border-radius: 48% 52% 55% 45% / var(--r-xl) var(--r-xl) var(--r-xl) var(--r-xl);
  background: linear-gradient(155deg, var(--c-sand-lt) 0%, var(--c-sand) 45%, var(--c-foam) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--s-6);
}
.hero-photo span {
  font-size: var(--t-xs);
  color: rgba(43,26,14,.4);
  letter-spacing: 0.06em;
}

.hero-float-card {
  position: absolute;
  bottom: var(--s-8);
  left: calc(var(--s-6) * -1);
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--sh-md);
}
.hero-float-card .card-num {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 700;
  color: var(--c-coral);
  line-height: 1;
}
.hero-float-card p {
  font-size: var(--t-xs);
  color: var(--c-muted);
  margin-top: var(--s-1);
}

@media (min-width: 720px) {
  .hero-image { display: block; }
  .hero-layout { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .hero-layout { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-16); }
}

/* 11. Home — Services Snapshot
   ============================================================ */
.home-services {
  background: var(--c-bg);
  padding: var(--s-16) 0;
}
.section-header { margin-bottom: var(--s-10); }
.section-header .eyebrow { margin-bottom: var(--s-3); }
.section-header .section-title { margin-bottom: var(--s-4); }
.section-header p {
  font-size: var(--t-md);
  color: var(--c-muted);
  max-width: 52ch;
  line-height: 1.7;
}

.snap-grid {
  display: grid;
  gap: var(--s-4);
}
.snap-item {
  padding: var(--s-6);
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--dur-base) ease-out,
              transform var(--dur-base) ease-out;
}
.snap-item:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.snap-item .snap-num {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-style: italic;
  font-weight: 700;
  color: var(--c-sand);
  line-height: 1;
  margin-bottom: var(--s-3);
}
.snap-item h3 {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-style: italic;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
}
.snap-item p {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.65;
}
.snap-item .snap-price {
  margin-top: var(--s-4);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--c-ocean);
}
.snap-footer { margin-top: var(--s-8); }

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

/* 12. Home — About Snapshot
   ============================================================ */
.home-about {
  background: var(--c-bg-alt);
  padding: var(--s-16) 0;
}

.about-snap-layout {
  display: grid;
  gap: var(--s-10);
  align-items: center;
}

.about-snap-photo {
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 48% 52% 44% 56% / 52% 46% 54% 48%;
  background: linear-gradient(135deg, var(--c-sand-lt) 0%, var(--c-sand) 45%, var(--c-foam) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--s-6);
}
.about-snap-photo span {
  font-size: var(--t-xs);
  color: rgba(43,26,14,.35);
  letter-spacing: 0.06em;
}

.about-snap-text .eyebrow { margin-bottom: var(--s-3); }
.about-snap-text .section-title { margin-bottom: var(--s-5); }
.about-snap-text p {
  font-size: var(--t-base);
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: var(--s-4);
}
.about-snap-text .btn-ghost { margin-top: var(--s-2); }

@media (min-width: 768px) {
  .about-snap-layout { grid-template-columns: 1fr 1fr; }
  .about-snap-photo { max-width: none; margin: 0; }
}
@media (min-width: 1000px) {
  .about-snap-layout { grid-template-columns: 0.9fr 1.1fr; gap: var(--s-16); }
}

/* 13. Home — Testimonial
   ============================================================ */
.home-testimonial {
  background: var(--c-bg);
  padding: var(--s-16) 0;
  text-align: center;
}

.testimonial-wrap { max-width: 680px; margin: 0 auto; }

.quote-mark {
  font-family: var(--f-display);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.5;
  color: var(--c-sand-lt);
  font-style: italic;
  font-weight: 700;
  user-select: none;
  margin-bottom: var(--s-5);
}

.testimonial-wrap blockquote {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-dark);
  margin-bottom: var(--s-6);
}

.testimonial-wrap cite {
  font-style: normal;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.testimonial-wrap .stars {
  display: block;
  color: var(--c-sun);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: var(--s-5);
}

/* 14. Home — CTA Banner
   ============================================================ */
.home-cta {
  background: var(--c-ocean-dk);
  padding: var(--s-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,135,12,.12) 0%, transparent 65%);
  pointer-events: none;
}
.home-cta .cta-inner { position: relative; }
.home-cta h2 {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-style: italic;
  font-weight: 600;
  color: var(--c-light);
  margin-bottom: var(--s-4);
}
.home-cta p {
  font-size: var(--t-md);
  color: rgba(254,250,242,.7);
  margin-bottom: var(--s-8);
  max-width: 44ch;
  margin-inline: auto;
}
.home-cta .cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* 15. About — Story Section
   ============================================================ */
.about-story {
  padding: var(--s-16) 0;
  background: var(--c-bg);
}

.story-layout {
  display: grid;
  gap: var(--s-10);
  align-items: start;
}

.story-photo-wrap { position: relative; padding-bottom: var(--s-10); }

.story-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, var(--c-sand-lt) 0%, var(--c-sand) 55%, var(--c-foam) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--s-6);
}
.story-photo span {
  font-size: var(--t-xs);
  color: rgba(43,26,14,.35);
  letter-spacing: 0.06em;
}

.story-float {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--c-coral);
  color: var(--c-light);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}
.story-float .acc-num {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}
.story-float p { font-size: var(--t-xs); opacity: 0.85; margin-top: 2px; }

.story-text .eyebrow { margin-bottom: var(--s-3); }
.story-text h2 {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-dark);
  margin-bottom: var(--s-6);
}
.story-text p {
  font-size: var(--t-base);
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: var(--s-4);
}

@media (min-width: 768px) {
  .story-layout { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .story-layout { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-16); }
}

/* 16. About — Values
   ============================================================ */
.about-values {
  background: var(--c-bg-alt);
  padding: var(--s-16) 0;
}

.values-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.value-item {
  padding: var(--s-6);
  border-left: 3px solid var(--c-sand);
  background: var(--c-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: border-color var(--dur-base) ease-out,
              box-shadow var(--dur-base) ease-out;
}
.value-item:hover { border-color: var(--c-coral); box-shadow: var(--sh-sm); }
.value-item h3 {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-style: italic;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--s-2);
}
.value-item p { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.7; }

@media (min-width: 600px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* 17. About — Stats
   ============================================================ */
.about-stats {
  background: var(--c-dark);
  padding: var(--s-12) 0;
}
.stats-grid {
  display: grid;
  gap: var(--s-8);
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-size: var(--t-3xl);
  font-style: italic;
  font-weight: 700;
  color: var(--c-sand);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: var(--t-sm);
  color: rgba(254,250,242,.6);
  margin-top: var(--s-2);
  letter-spacing: 0.04em;
  display: block;
}

@media (min-width: 540px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* 18. Services Page
   ============================================================ */
.services-body {
  padding: var(--s-12) 0 var(--s-20);
  background: var(--c-bg);
}

.service-category {
  padding-bottom: var(--s-10);
  margin-bottom: var(--s-10);
  border-bottom: 1px solid var(--c-border);
}
.service-category:last-child { border-bottom: none; margin-bottom: 0; }

.cat-header {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
.cat-header h2 {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 600;
  color: var(--c-dark);
  white-space: nowrap;
}
.cat-line {
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.service-list { display: flex; flex-direction: column; }
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px dashed var(--c-border);
}
.service-item:last-child { border-bottom: none; }
.service-info h3 {
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 2px;
}
.service-info p {
  font-size: var(--t-xs);
  color: var(--c-muted-lt);
  line-height: 1.5;
  max-width: 38ch;
}
.service-price {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--c-ocean);
  white-space: nowrap;
  flex-shrink: 0;
}

.services-note {
  background: var(--c-ocean-lt);
  border: 1px solid rgba(30,114,150,.2);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  margin-top: var(--s-10);
}
.services-note p {
  font-size: var(--t-sm);
  color: var(--c-ocean-dk);
  line-height: 1.7;
}

/* 19. Contact Page
   ============================================================ */
.contact-section {
  padding: var(--s-12) 0 var(--s-20);
  background: var(--c-bg);
}

.contact-layout {
  display: grid;
  gap: var(--s-12);
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--s-6);
}

.form-grid { display: grid; gap: var(--s-4); }
.form-row { display: grid; gap: var(--s-4); }

.form-field { display: flex; flex-direction: column; gap: var(--s-2); }
.form-field label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.875em 1em;
  background: var(--c-light);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-dark);
  transition: border-color var(--dur-fast) ease-out,
              box-shadow var(--dur-fast) ease-out;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--c-ocean);
  box-shadow: 0 0 0 3px rgba(30,114,150,.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--c-muted-lt); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%237A5C45' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 3em;
  cursor: pointer;
}
.form-submit { margin-top: var(--s-2); }
.form-submit .btn { width: 100%; justify-content: center; padding: 1em 1.75em; }

.contact-info-col h2 {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--s-6);
}

.info-block {
  padding: var(--s-5) var(--s-6);
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-4);
}
.info-block h3 {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: var(--s-3);
}
.info-block p, .info-block a {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.85;
}
.info-block a:hover { color: var(--c-ocean); text-decoration: underline; }

.hours-list { display: flex; flex-direction: column; gap: var(--s-1); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--t-sm);
  padding: 2px 0;
}
.hours-row dt { font-weight: 600; color: var(--c-dark); }
.hours-row dd { color: var(--c-muted); }

.map-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-ocean-lt) 0%, var(--c-foam) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  border: 1px solid var(--c-border);
}
.map-placeholder svg { opacity: 0.45; }
.map-placeholder p { font-size: var(--t-sm); color: var(--c-ocean); font-weight: 500; }

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.1fr 0.9fr; }
  .form-submit .btn { width: auto; }
}

/* 20. Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s var(--ease) both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* 21. Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
