/* ============================================================
   Adizahaircollections — shared styles
   Quiet-minimal luxury salon aesthetic · cream / beige palette
   Primary: Jost (light sans) · Accent: Cormorant Garamond (serif)
   ============================================================ */

:root {
  /* ── Palette (warm neutrals) ─────────────────────────────── */
  --bg:        #FBF8F3;   /* page cream                        */
  --bg-warm:   #F3EBE0;   /* warm beige section / placeholder  */
  --bg-deep:   #ECE2D4;   /* deeper sand band                  */
  --surface:   #FFFFFF;   /* cards                             */
  --line:      #E6DBCA;   /* hairline border                   */
  --line-soft: #EFE7DA;

  --ink:       #2C2823;   /* headings — warm near-black        */
  --body:      #5E544A;   /* body copy — soft brown            */
  --muted:     #9C8E7C;   /* labels / meta                     */

  --accent:    #A2855F;   /* warm mocha — buttons, links       */
  --accent-dk: #836A48;   /* hover                             */
  --accent-sf: #CDBA9D;   /* light accent                      */

  --shadow:    0 1px 2px rgba(60,46,28,.04), 0 18px 40px -22px rgba(60,46,28,.22);
  --shadow-sm: 0 1px 2px rgba(60,46,28,.05), 0 8px 22px -16px rgba(60,46,28,.18);

  --radius:    16px;
  --radius-sm: 12px;
  --max:       1180px;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset / base ──────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent-sf); color: var(--ink); }

/* refined scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--accent-sf); border-radius: 10px; border: 3px solid var(--bg-warm); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Layout helpers ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--warm { background: var(--bg-warm); }
.section--deep { background: var(--bg-deep); }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-block;
}

.section-head { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

h1, h2, h3 { font-weight: 300; color: var(--ink); line-height: 1.12; letter-spacing: -.01em; }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 300;
  letter-spacing: -.015em;
}
.section-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }

.lead { color: var(--body); font-size: 1.05rem; margin-top: 18px; font-weight: 300; }

/* brand name accent — makes "Adiza Hair Collections" stand out in body copy */
.brand { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--accent); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: .8rem; font-weight: 500; line-height: 1;
  letter-spacing: .14em; text-transform: uppercase; text-indent: .14em; /* indent offsets the trailing letter-spacing so text sits dead-centre */
  padding: 17px 36px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(130,106,72,.6); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-light { background: rgba(255,255,255,.92); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .4s ease;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(251,248,243,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { position: relative; display: inline-block; line-height: 0; }
.nav-logo img { height: 68px; width: auto; display: block; transition: opacity .35s ease, height .4s ease; }
.nav.scrolled .nav-logo img { height: 52px; }
.nav-logo .logo-dark { position: absolute; top: 0; left: 0; }
/* base (cream / scrolled): show the ink wordmark */
.nav-logo .logo-light { opacity: 0; }
.nav-logo .logo-dark  { opacity: 1; }
/* homepage: transparent nav over the dark hero — show the white wordmark + light links */
.nav--transparent:not(.scrolled) .nav-logo .logo-light { opacity: 1; }
.nav--transparent:not(.scrolled) .nav-logo .logo-dark  { opacity: 0; }
.nav--transparent:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
.nav--transparent:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav--transparent:not(.scrolled) .hamburger span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--body); position: relative; padding: 4px 0; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--accent); transition: width .35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta { color: #fff; }

.nav-links a.nav-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
  background: var(--accent); color: #fff !important; padding: 12px 26px; border-radius: 999px;
  letter-spacing: .14em; text-indent: .14em;
}
.nav-links a.nav-cta-btn::after { display: none; }
.nav-links a.nav-cta-btn:hover { background: var(--accent-dk); color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: 0; }
.hamburger span { width: 26px; height: 1.5px; background: var(--ink); transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 99;
  background: var(--bg); padding: 110px 36px 40px;
  transform: translateX(100%); transition: transform .45s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 60px -30px rgba(60,46,28,.4); display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.05rem; font-weight: 300; letter-spacing: .04em; color: var(--ink);
  padding: 15px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 24px; justify-content: center; }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(44,40,35,.35); z-index: 98;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ── Media / image placeholders ────────────────────────────── */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-warm); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.16,1,.3,1); }

/* tonal placeholder — looks intentional, swap for <img> */
.ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
  color: var(--accent); background:
    linear-gradient(135deg, #F6EEE2 0%, #EADDC9 100%);
}
.ph--2 { background: linear-gradient(135deg, #F1E7D8 0%, #E2D2BB 100%); }
.ph--3 { background: linear-gradient(135deg, #F5ECDC 0%, #E7D9C4 100%); }
.ph--dark { background: linear-gradient(135deg, #C9B59A 0%, #A2855F 100%); color: #FBF8F3; }
.ph svg { width: 30px; height: 30px; opacity: .55; }
.ph-cap {
  font-size: .68rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; opacity: .85;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ph { border-radius: 0; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(43,38,32,.4) 0%, rgba(43,38,32,.1) 42%, rgba(43,38,32,.4) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.hero .eyebrow { color: var(--accent-sf); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 300;
  letter-spacing: -.02em; line-height: 1.04;
}
.hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.hero-sub {
  color: rgba(255,255,255,.9); font-size: 1.12rem; font-weight: 300;
  max-width: 560px; margin: 26px auto 38px; line-height: 1.65;
}
.hero-fill {
  position: absolute; inset: 0;
  background:
    radial-gradient(125% 95% at 50% 36%, rgba(206,172,124,.42) 0%, rgba(206,172,124,0) 55%),
    linear-gradient(150deg, #3A2E23 0%, #6E563C 50%, #A07F57 100%);
}
.hero-divider { display: block; width: 56px; height: 2px; margin: 0 auto 24px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, #D2B07A, transparent); }
.hero-trust {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center;
  color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
}
.hero-trust .hero-dot { width: 4px; height: 4px; border-radius: 50%; background: #D2B07A; display: inline-block; }
.hero-loc {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 26px;
  color: rgba(255,255,255,.78); font-size: .75rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
}
.hero-loc svg { width: 14px; height: 14px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; justify-content: center; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.7); font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrollPulse 2.2s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: .8; } 50% { transform: scaleY(.5); opacity: .3; } }

/* ── About ─────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about-media { aspect-ratio: 4/5; }
.about-text .section-title { margin-bottom: 6px; }
.about-text p { margin-top: 20px; }
.about-tag {
  display: inline-block; font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--accent); margin-bottom: 18px;
}

.stats { display: flex; gap: 48px; margin-top: 44px; flex-wrap: wrap; }
.stat .num { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: var(--ink); line-height: 1; }
.stat .lbl { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ── Services / pricing accordion ──────────────────────────── */
.accordion { max-width: 880px; margin: 0 auto; }
.acc-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 16px; overflow: hidden; transition: box-shadow .35s, border-color .35s;
}
.acc-item.active { box-shadow: var(--shadow); border-color: var(--accent-sf); }
.acc-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 30px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--sans);
}
.acc-header > span:first-child { display: flex; flex-direction: column; gap: 5px; }
.acc-title { font-size: 1.18rem; font-weight: 400; color: var(--ink); letter-spacing: .01em; }
.acc-meta { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.acc-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); position: relative; transition: all .35s; }
.acc-icon::before, .acc-icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--accent); transition: transform .35s, opacity .35s; }
.acc-icon::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.acc-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.acc-item.active .acc-icon { background: var(--accent); border-color: var(--accent); }
.acc-item.active .acc-icon::before, .acc-item.active .acc-icon::after { background: #fff; }
.acc-item.active .acc-icon::after { transform: translate(-50%,-50%) scaleY(0); }

.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.16,1,.3,1); }
.acc-inner { padding: 4px 30px 30px; }

.price-group + .price-group { margin-top: 26px; }
.price-group-title {
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent);
  padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line-soft);
}
.price-row { display: flex; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line-soft); }
.price-row:last-child { border-bottom: 0; }
.price-name { font-size: .98rem; color: var(--ink); font-weight: 400; flex-shrink: 0; }
.price-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 16px; }
.price-time { font-size: .76rem; color: var(--muted); letter-spacing: .02em; white-space: nowrap; }
.price-amt { font-size: 1.02rem; font-weight: 500; color: var(--accent); white-space: nowrap; min-width: 54px; text-align: right; }

.services-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 38px; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 880px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .media, .gallery-item > .ph { position: relative; inset: auto; }
.gallery-item .media { height: 100%; border-radius: 0; aspect-ratio: 4/5; }
.gallery-item.tall .media { aspect-ratio: 4/6.4; }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px;
  background: linear-gradient(transparent 55%, rgba(44,40,35,.62)); opacity: 0; transition: opacity .4s; z-index: 3;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .media img { transform: scale(1.06); }
.gallery-label { color: #fff; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }

/* ── Booking ───────────────────────────────────────────────── */
.booking { text-align: center; }
.booking .section-title { color: #fff; }
.booking.section--accent { background: linear-gradient(135deg, #A88A64 0%, #BC9F78 55%, #CDB088 100%); }
.booking .eyebrow { color: #fff; }
.booking-sub { color: #fff; max-width: 560px; margin: 18px auto 36px; font-weight: 300; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.booking-soon { margin-top: 30px; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.95); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-list { list-style: none; margin-top: 8px; }
.contact-list li { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-list li:first-child { padding-top: 0; }
.c-ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.c-ico svg { width: 19px; height: 19px; }
.c-lbl { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.c-val { font-size: 1.06rem; color: var(--ink); font-weight: 300; }
.c-val a:hover { color: var(--accent); }
.map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius); filter: grayscale(.3) saturate(.85); box-shadow: var(--shadow-sm); }

/* ── Page hero (shop / policies) ───────────────────────────── */
.page-hero { padding: 160px 0 70px; text-align: center; background: var(--bg-warm); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-hero p { max-width: 560px; margin: 18px auto 0; color: var(--body); }
.breadcrumb { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent); }

/* ── Shop ──────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { aspect-ratio: 1/1; position: relative; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.product-name { font-size: 1.15rem; font-weight: 400; color: var(--ink); }
.product-desc { font-size: .9rem; color: var(--body); margin-top: 8px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.product-price { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.product-price small { font-size: .7rem; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; }
.product-btn {
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
  font-size: .72rem; letter-spacing: .14em; text-indent: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--accent); border: 1px solid var(--line); padding: 12px 22px; border-radius: 999px; transition: all .3s;
}
.product-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.shop-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 48px; }

/* ── Policies ──────────────────────────────────────────────── */
.policy-intro { max-width: 720px; margin: 0 auto clamp(40px,6vw,64px); text-align: center; color: var(--body); }
.policy-list { max-width: 840px; margin: 0 auto; }
.policy-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 36px; margin-bottom: 18px; display: grid; grid-template-columns: 54px 1fr; gap: 24px; align-items: start;
  box-shadow: var(--shadow-sm);
}
.policy-num { font-family: var(--serif); font-size: 2rem; color: var(--accent-sf); line-height: 1; }
.policy-card h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; }
.policy-card p { font-size: .98rem; }
.policy-cta { text-align: center; margin-top: 48px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(251,248,243,.72); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { margin-bottom: 22px; line-height: 0; }
.footer-logo img { height: 58px; width: auto; }
.footer-about { font-size: .94rem; max-width: 320px; line-height: 1.7; }
.footer-about strong { color: var(--accent-sf); font-weight: 500; letter-spacing: .02em; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer h4 { color: #fff; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; margin-bottom: 22px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a, .footer-contact a { font-size: .94rem; transition: color .3s; }
.footer ul a:hover, .footer-contact a:hover { color: var(--accent-sf); }
.footer-contact p { font-size: .94rem; margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: .8rem; color: rgba(251,248,243,.5); }
.footer-bottom a:hover { color: var(--accent-sf); }

/* ── Reveal on scroll ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { aspect-ratio: 16/11; max-height: 440px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-bg::after { background: linear-gradient(rgba(43,38,32,.5), rgba(43,38,32,.4)); }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-logo img { height: 38px; }
  .footer-logo img { height: 50px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall .media { aspect-ratio: 4/5; }
  .product-grid { grid-template-columns: 1fr; }
  .stats { gap: 32px; }
  .acc-header { padding: 22px 20px; }
  .acc-inner { padding: 4px 20px 26px; }
  .policy-card { grid-template-columns: 1fr; gap: 10px; padding: 28px 24px; }
  .btn { padding: 15px 28px; }
  .hero-btns .btn, .booking-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
