/* ============================================================
   Kulture House Dubai — brochure & lead-gen site
   Palette + type per research/brand-system.md & palette-typography.md
   ============================================================ */

:root {
  --bg: #FFF8EF;
  --surface: #FFFFFF;
  --surface-2: #FBF1E2;
  --text: #271A12;
  --muted: #7A6654;
  --primary: #B64A2E;
  --primary-deep: #9A3D24;
  --secondary: #17453B;
  --secondary-deep: #0F2F28;
  --accent: #E7A93B;
  --accent-deep: #CF8F22;
  --border: #EADCCB;
  --dark: #242424;
  --focus: #B64A2E;

  --maxw: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 8px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(39, 26, 18, .06), 0 2px 8px rgba(39, 26, 18, .05);
  --shadow-md: 0 6px 18px rgba(39, 26, 18, .10), 0 2px 6px rgba(39, 26, 18, .06);
  --shadow-lg: 0 24px 60px rgba(39, 26, 18, .22);

  --header-h: 90px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--secondary-deep); }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
  font-optical-sizing: auto;
}

p { margin: 0 0 1rem; text-wrap: pretty; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--secondary); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 6px 6px;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--primary); opacity: .55;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: var(--primary); opacity: .55;
}
.eyebrow.light { color: var(--accent); }
.eyebrow.light::before, .eyebrow.light::after { background: var(--accent); opacity: .7; }

.section-head { max-width: 56ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section-lede { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }

/* quatrefoil divider (echoes logo) */
.glyph { display: inline-flex; color: var(--accent); }
.glyph svg { width: 26px; height: 26px; display: block; }

/* ---------- buttons ---------- */
.btn {
  --bg-btn: var(--primary);
  --fg-btn: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg-btn); color: var(--fg-btn);
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.5rem; border: 1px solid transparent; border-radius: 50px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--accent { --bg-btn: var(--accent); --fg-btn: var(--secondary-deep); }
.btn--accent:hover { background: var(--accent-deep); }
.btn--green { --bg-btn: var(--secondary); --fg-btn: #fff; }
.btn--green:hover { background: var(--secondary-deep); }
.btn--ghost {
  --bg-btn: transparent; --fg-btn: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--primary); color: var(--primary); }
.btn--ghost-light {
  --bg-btn: rgba(255,255,255,.08); --fg-btn: #fff; border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--primary); font-size: .98rem;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap .2s, border-color .2s;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s; }
.link-arrow:hover { gap: .8rem; border-color: var(--primary); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 248, 239, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(234, 220, 203, .55);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease, border-color .3s;
}
.site-header.scrolled {
  background: rgba(255, 248, 239, .95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
  height: 70px;
}

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

.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 66px; width: auto; transition: height .3s; }
.scrolled .brand img { height: 50px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: .96rem; font-weight: 500; color: var(--text); position: relative; padding: .3rem 0;
  transition: color .2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--primary); transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-call .btn { padding: .7rem 1.25rem; }

.nav-toggle { display: none; }

/* ============================================================
   HERO  (full-bleed villa image)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--secondary-deep);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13,18,16,.94) 4%, rgba(13,18,16,.55) 34%, rgba(13,18,16,.12) 58%, rgba(13,18,16,.28) 100%),
    linear-gradient(to right, rgba(13,18,16,.62) 0%, rgba(13,18,16,.1) 52%, rgba(13,18,16,0) 78%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--maxw); margin-inline: auto;
  padding: calc(var(--header-h) + 2rem) var(--gutter) clamp(3rem, 7vw, 6rem);
}
.hero-text { max-width: 56rem; }
.hero .eyebrow { color: var(--accent); margin-bottom: 1.4rem; }
.hero .eyebrow::before { background: var(--accent); opacity: .85; width: 34px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.6vw, 5.2rem);
  letter-spacing: -.022em;
  text-shadow: 0 2px 36px rgba(0,0,0,.32);
  max-width: 18ch;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(1.06rem, 1.55vw, 1.28rem); color: rgba(255,255,255,.84);
  margin: 1.5rem 0 0; max-width: 50ch; line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.3rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 2.6rem;
  padding-top: 1.7rem; border-top: 1px solid rgba(255,255,255,.2);
}
.hero-rating { display: flex; align-items: center; gap: .55rem; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 17px; height: 17px; }
.hero-rating b { font-family: var(--sans); font-weight: 700; color: #fff; }
.hero-rating span { color: rgba(255,255,255,.78); font-size: .9rem; }
.hero-place { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 500; }
.hero-place svg { width: 17px; height: 17px; color: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .hero-text > * { opacity: 0; transform: translateY(22px); animation: heroRise .8s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-text > *:nth-child(1) { animation-delay: .1s; }
  .hero-text > *:nth-child(2) { animation-delay: .22s; }
  .hero-text > *:nth-child(3) { animation-delay: .34s; }
  .hero-text > *:nth-child(4) { animation-delay: .46s; }
}
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* ============================================================
   MARQUEE / trust strip
   ============================================================ */
.trust {
  background: var(--secondary); color: #fff;
  border-block: 1px solid var(--secondary-deep);
}
.trust-inner {
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: clamp(.85rem, 2.6vw, 2.4rem); padding-block: 1.15rem;
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .96rem; font-weight: 500; white-space: nowrap; }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.trust-item b { font-weight: 700; }
.trust-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .6; }
@media (max-width: 720px) { .trust-sep { display: none; } .trust-inner { flex-wrap: wrap; gap: .65rem 1.4rem; } }

/* ============================================================
   INTRO
   ============================================================ */
.intro { text-align: center; }
.intro .glyph { margin-bottom: 1.3rem; }
.intro-title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 20ch; margin-inline: auto; }
.intro-title em { font-style: italic; color: var(--primary); }
.intro-lede { color: var(--muted); font-size: 1.12rem; max-width: 60ch; margin: 1.4rem auto 0; }

.quote {
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; max-width: 30ch;
}
.quote blockquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3; margin: 0; color: var(--secondary);
}
.quote .stars { margin-bottom: .9rem; justify-content: center; display: inline-flex; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: .88rem;
  letter-spacing: .04em; color: var(--muted); }

/* ============================================================
   FEATURE ROWS (pillars)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3.5rem, 7vw, 6rem); }
.feature.reverse .feature-media { order: 2; }
.feature-body { max-width: 50ch; }
.feature-num {
  font-family: var(--serif); font-size: .95rem; color: var(--accent-deep); font-weight: 600;
  letter-spacing: .12em; margin-bottom: .8rem;
}
.feature h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.feature h3 em { font-style: italic; color: var(--primary); }
.feature-body p { color: var(--muted); margin-top: 1.1rem; }
.feature-points { list-style: none; margin: 1.5rem 0 1.8rem; padding: 0; display: grid; gap: .7rem; }
.feature-points li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.feature-points svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 3px; }
.tagchip {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--secondary); font-size: .82rem; font-weight: 600;
  padding: .35rem .8rem; border-radius: 50px; margin: 0 .4rem .5rem 0;
}

/* media collages */
.media-stack { position: relative; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.collage-cafe {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.3fr 1fr; gap: .8rem;
  aspect-ratio: 1/1;
}
.collage-cafe .media-frame:nth-child(1) { grid-column: 1 / 3; }
.collage-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.collage-2 .media-frame { aspect-ratio: 3/4; }

/* shop product strip */
.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem;
}
.shop-grid .media-frame { aspect-ratio: 1/1; background: var(--surface); }
.shop-grid .media-frame img { object-fit: cover; mix-blend-mode: multiply; }
.shop-grid .media-frame.has-bg img { mix-blend-mode: normal; }

/* badge floating */
.float-badge {
  position: absolute; z-index: 3; background: var(--surface); border-radius: 50px;
  box-shadow: var(--shadow-md); padding: .6rem 1rem; display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; font-weight: 600; border: 1px solid var(--border);
}
.float-badge svg { width: 18px; height: 18px; color: var(--primary); }
.float-badge.tl { top: -16px; left: -14px; }
.float-badge.br { bottom: -16px; right: -14px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  column-count: 4; column-gap: .9rem; margin-top: 2.6rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: .9rem; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: zoom-in; display: block; box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.gallery-item img { width: 100%; transition: transform .5s ease; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(36,36,36,.4));
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; left: 12px; bottom: 10px; z-index: 2; color: #fff; font-size: .82rem;
  font-weight: 600; opacity: 0; transform: translateY(6px); transition: .3s; letter-spacing: .02em;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(20,14,10,.92);
  display: none; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; transition: opacity .25s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s; backdrop-filter: blur(4px);
}
.lightbox-close svg, .lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.26); }
.lightbox-close { top: 4vw; right: 4vw; }
.lightbox-nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-count { position: absolute; bottom: 3vw; left: 50%; transform: translateX(-50%); color: #fff;
  font-size: .85rem; letter-spacing: .1em; opacity: .8; }

/* ============================================================
   ABOUT (deep green panel)
   ============================================================ */
.about { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.about .section-lede, .about p { color: rgba(255,255,255,.82); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.about h2 em { font-style: italic; color: var(--accent); }
.about-descriptor {
  margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.16);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-media .media-frame { box-shadow: var(--shadow-lg); }
.about-media .media-frame:first-child { grid-row: span 2; aspect-ratio: 3/4.2; }
.about-media .media-frame:nth-child(2) { aspect-ratio: 4/3; }
.about-media .media-frame:nth-child(3) { aspect-ratio: 4/3; }
.about-media .media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
}
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.info-row:last-of-type { border-bottom: none; }
.info-ico {
  width: 44px; height: 44px; flex: none; border-radius: 10px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.info-ico svg { width: 21px; height: 21px; }
.info-row h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: .25rem; }
.info-row p { margin: 0; font-size: 1.05rem; font-weight: 500; }
.info-row a:hover { color: var(--primary); }
.info-note { font-size: .85rem; color: var(--muted); margin-top: .3rem; }

.map-card { margin-top: 1.2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  position: relative; box-shadow: var(--shadow-sm); }
.map-placeholder {
  aspect-ratio: 16/9; background:
    repeating-linear-gradient(45deg, #EFE3D2 0 14px, #F6EEDF 14px 28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center;
  padding: 1.5rem; position: relative;
}
.map-placeholder .map-pin { width: 48px; height: 48px; color: var(--primary); }
.map-placeholder .map-label { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); }
.map-placeholder .map-addr { font-family: var(--serif); font-size: 1.15rem; color: var(--secondary); max-width: 24ch; }

/* form */
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.4vw, 2.4rem); box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.6rem; }
.form-card > p { color: var(--muted); font-size: .98rem; margin-top: .4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: .8rem .95rem; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(182,74,46,.14);
}
.contact-method { display: flex; gap: .6rem; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-flex; align-items: center; gap: .4rem; border: 1px solid var(--border);
  background: var(--bg); padding: .55rem 1rem; border-radius: 50px; font-size: .9rem; font-weight: 500;
  transition: .18s;
}
.radio-pill input:checked + span { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.radio-pill input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--secondary); margin-bottom: 1rem; }
.form-success h3 { font-size: 1.7rem; }
.form-success p { color: var(--muted); margin-top: .6rem; }
.form-disclaimer { font-size: .8rem; color: var(--muted); margin-top: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.footer-brand img { height: 120px; width: auto; margin-bottom: 1rem; background: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,.4); }
.footer-brand p { font-size: .95rem; max-width: 36ch; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a, .footer-col p { font-size: .95rem; color: rgba(255,255,255,.7); transition: color .2s; margin: 0; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: .7rem; margin-top: 1.3rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: .2s;
}
.socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  align-items: center; font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
.rights-note { max-width: 60ch; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bar { display: none; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .gallery-grid { column-count: 3; }
}
@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .nav-links, .header-call { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    background: var(--primary); color: #fff; border: none; border-radius: 50px;
    padding: .6rem 1.1rem; font-weight: 600; font-size: .92rem;
  }
  .nav-toggle svg { width: 18px; height: 18px; }
  .scrolled .nav-toggle, .on-light .nav-toggle { background: var(--primary); color: #fff; }

  .hero-bg img { object-position: center 38%; }

  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature.reverse .feature-media { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gallery-grid { column-count: 2; column-gap: .6rem; }
  .gallery-item { margin-bottom: .6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .shop-grid { gap: .6rem; }

  /* mobile bottom action bar */
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(255,248,239,.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(39,26,18,.1);
    padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; gap: .25rem;
    font-size: .72rem; font-weight: 600; color: var(--text); padding: .45rem 0; border-radius: 10px;
  }
  .mobile-bar a svg { width: 21px; height: 21px; color: var(--primary); }
  .mobile-bar a.primary { background: var(--primary); color: #fff; }
  .mobile-bar a.primary svg { color: #fff; }
  body { padding-bottom: 76px; }
  .site-footer { margin-bottom: 0; }
}
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}

/* mobile slide-out menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150; background: var(--bg);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 1.3rem var(--gutter);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu-head img { height: 46px; }
.mm-close { background: var(--surface-2); border: 1px solid var(--border); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mm-close svg { width: 22px; height: 22px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--text);
  padding: .55rem 0; border-bottom: 1px solid var(--border);
}
.mobile-menu nav a:active { color: var(--primary); }
.mobile-menu-foot { margin-top: auto; display: grid; gap: .8rem; padding-top: 1.5rem; }

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
