/* ============================================================
   Piece of You — Personalised Fine Jewellery (showcase)
   Palette keyed to the brand logo's warm gold→bronze gradient
   on a soft ivory ground. Editorial, mobile-first.
   ============================================================ */

:root {
  --bg: #F8F6F2;        /* warm ivory page canvas */
  --surface: #FFFFFF;   /* cards / panels */
  --surface-2: #FCFAF7; /* faint warm panel */
  --text: #2B1A14;      /* deep warm near-black-brown */
  --muted: #7A6A60;     /* secondary text / captions */
  --primary: #A35E2A;   /* burnished gold/bronze — CTAs, links */
  --primary-ink: #8A4D20;
  --secondary: #7A3F18; /* deep burnished bronze — footer, accents */
  --accent: #C0843E;    /* warm honey gold — hovers / dividers */
  --accent-soft: #E6C36A;
  --border: #E7DED5;    /* warm hairline */
  --border-strong: #D9CCC0;
  --focus: #A35E2A;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(43,26,20,.05), 0 4px 14px rgba(43,26,20,.04);
  --shadow-md: 0 6px 30px rgba(43,26,20,.09);
  --shadow-lg: 0 24px 60px rgba(43,26,20,.14);

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 92px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

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

::selection { background: var(--accent-soft); color: var(--text); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .002em;
  margin: 0;
  color: var(--text);
}
.display {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.005em;
}
em, .it { font-style: italic; }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 12.5px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}
.eyebrow.muted { color: var(--muted); }

.lead {
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.section-title {
  font-size: clamp(30px, 5.2vw, 50px);
  letter-spacing: -.01em;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 940px; margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.pad { padding-block: clamp(56px, 9vw, 116px); }
.pad-sm { padding-block: clamp(40px, 6vw, 72px); }

.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.hairline { height: 1px; background: var(--border); border: 0; margin: 0; }

.kicker-rule {
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker-rule::after {
  content: ""; width: 42px; height: 1px; background: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  --b: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  min-height: 48px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 50px;
  border: 1px solid var(--b);
  background: var(--b);
  color: #fff;
  transition: transform .35s var(--ease), background .25s, box-shadow .35s var(--ease), color .25s;
  text-align: center;
  line-height: 1.1;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { background: var(--primary-ink); border-color: var(--primary-ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(122,63,24,.22); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--text); border-color: var(--text); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--primary); border-color: transparent;
  padding-inline: 4px; min-height: auto; border-radius: 0;
}
.btn-ghost:hover { background: transparent; color: var(--secondary); transform: none; box-shadow: none; }

.btn-wa { --b: #1FA855; }
.btn-wa:hover { background: #178843; border-color: #178843; box-shadow: 0 12px 26px rgba(31,168,85,.28); }

.btn-lg { padding: 17px 34px; min-height: 56px; font-size: 15px; }
.btn-block { width: 100%; }

/* Link with animated underline */
.ul {
  position: relative; color: var(--text); font-weight: 500;
}
.ul::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: var(--primary); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.ul:hover::after { transform: scaleX(1); transform-origin: left; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: .03em; color: var(--primary);
}
.textlink svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.textlink:hover svg { transform: translateX(5px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248,246,242,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(43,26,20,.05);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; margin-right: auto; overflow: visible; }
.brand img { height: 124px; width: auto; margin: -28px 0; }
.brand .brand-sub {
  display: none;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--text);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--primary); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; border: 1px solid var(--border-strong); border-radius: 50%;
  background: var(--surface); align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 1.6px; background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
  padding: 26px var(--gutter) 40px;
  overflow-y: auto;
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--ff-display); font-size: 30px; font-weight: 500;
  color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a.m-link span { font-family: var(--ff-body); font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.mobile-menu .m-actions { margin-top: 26px; display: grid; gap: 12px; }
.mobile-menu .m-contact { margin-top: 26px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.mobile-menu .m-contact a { color: var(--text); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(34px, 5vw, 60px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(46px, 8.2vw, 92px);
  line-height: .98; margin-top: 22px; letter-spacing: -.015em;
}
.hero h1 .it { color: var(--primary); }
.hero .lead { margin-top: 26px; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.hero-media { position: relative; }
.hero-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 4.7; background: linear-gradient(160deg, #efe6da, #e2d3c0);
  box-shadow: var(--shadow-lg);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 28%; }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 8px; padding: 15px 18px; display: flex; align-items: center; gap: 13px;
  box-shadow: var(--shadow-md);
}
.hero-badge .hb-mark { width: 58px; height: auto; flex: none; object-fit: contain; }
.hero-badge p { margin: 0; font-size: 13px; line-height: 1.4; color: var(--text); }
.hero-badge p b { font-family: var(--ff-display); font-size: 17px; font-weight: 600; display: block; }

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--surface-2);
  overflow: hidden; padding-block: 16px;
}
.marquee-track {
  display: flex; gap: 0; width: max-content; animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 26px); color: var(--text); padding-inline: 34px; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--accent); margin-left: 34px; font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Collection teaser grid
   ============================================================ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .sh-copy { max-width: 60ch; }
.section-head h2 { margin-top: 14px; }

.teaser-grid {
  display: grid; gap: clamp(14px, 1.8vw, 22px);
  grid-template-columns: repeat(6, 1fr);
}
.teaser {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  display: block; min-height: 200px;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
/* layout spans */
.teaser.t-lg { grid-column: span 3; aspect-ratio: 1/1; }
.teaser.t-md { grid-column: span 3; }
.teaser.t-sm { grid-column: span 2; }
.teaser-figure { position: absolute; inset: 0; }
.teaser-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.teaser::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(38,16,8,.84) 0%, rgba(38,16,8,.42) 34%, rgba(38,16,8,.08) 60%, rgba(38,16,8,0) 78%);
}
.teaser:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.teaser:hover .teaser-figure img { transform: scale(1.06); }
.teaser-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.teaser-body h3 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); }
.teaser-body .tb-count { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.teaser-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6);
  display: grid; place-items: center; flex: none; transition: background .3s, color .3s, transform .4s var(--ease);
}
.teaser-arrow svg { width: 18px; height: 18px; }
.teaser:hover .teaser-arrow { background: #fff; color: var(--secondary); transform: rotate(-45deg); }

/* signature line chips row */
.line-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,1.6vw,18px); }
.line-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface);
  padding: 26px 22px 24px; transition: border-color .3s, box-shadow .4s var(--ease), transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 8px; min-height: 168px;
}
.line-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.line-card .lc-icon { color: var(--primary); margin-bottom: 6px; }
.line-card .lc-icon svg { width: 30px; height: 30px; }
.line-card h3 { font-size: 25px; }
.line-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; flex: 1; }
.line-card .textlink { margin-top: 10px; }

/* ============================================================
   Personalise feature band
   ============================================================ */
.feature-band { background: var(--secondary); color: #F4E7DA; overflow: hidden; }
.feature-band .eyebrow { color: var(--accent-soft); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.feature-band h2 { color: #fff; font-size: clamp(32px, 5vw, 54px); margin-top: 16px; }
.feature-band .lead { color: #E4CFBC; margin-top: 20px; }
.feature-steps { margin-top: 30px; display: grid; gap: 2px; }
.feature-step { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); }
.feature-step:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-step .fs-num { font-family: var(--ff-display); font-size: 20px; color: var(--accent-soft); flex: none; width: 30px; }
.feature-step h4 { color: #fff; font-size: 19px; font-family: var(--ff-body); font-weight: 600; }
.feature-step p { margin: 4px 0 0; font-size: 14.5px; color: #DCC6B3; line-height: 1.55; }
.feature-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/5.6; box-shadow: var(--shadow-lg); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.feature-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.feature-band .btn-outline:hover { background: #fff; color: var(--secondary); border-color: #fff; }

/* ============================================================
   UAE pride highlight
   ============================================================ */
.pride { background: var(--surface); }
.pride-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px,1.8vw,20px); align-items: stretch; }
.pride-intro { grid-column: span 5; align-self: center; }
.pride-gallery { grid-column: span 7; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,1.5vw,16px); }
.pride-tile { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2); aspect-ratio: 3/3.6; border: 1px solid var(--border); position: relative; }
.pride-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pride-tile:hover img { transform: scale(1.05); }
.pride-flag { display: inline-flex; gap: 3px; margin-bottom: 16px; }
.pride-flag i { width: 26px; height: 17px; display: block; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; }
.trust-item { padding: 12px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-item .ti-ic { color: var(--primary); }
.trust-item .ti-ic svg { width: 28px; height: 28px; }
.trust-item b { font-family: var(--ff-display); font-size: 19px; font-weight: 600; line-height: 1.1; }
.trust-item span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: linear-gradient(135deg, #2B1A14, #5A3016 55%, #7A3F18); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(circle at 80% 20%, rgba(230,195,106,.22), transparent 45%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 5vw, 56px); }
.cta-band .lead { color: #E6D4C4; margin: 18px auto 0; }
.cta-band .cta-row { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-outline:hover { background: #fff; color: var(--secondary); border-color: #fff; }

/* ============================================================
   Campaign rail (real banners, baked text intact)
   ============================================================ */
.campaign { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,2vw,22px); }
.campaign-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.campaign-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/7.6; transition: transform 1s var(--ease); }
.campaign-card:hover img { transform: scale(1.03); }

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-head { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(24px, 3vw, 40px); }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-size: clamp(40px, 7vw, 78px); letter-spacing: -.015em; }
.page-head .lead { margin-top: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .6; }

/* ============================================================
   Collections hub
   ============================================================ */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,26px); }
.hub-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); display: block; aspect-ratio: 4/4.4;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
.hub-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.hub-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(38,16,8,.86) 0%, rgba(38,16,8,.5) 30%, rgba(38,16,8,.08) 58%, transparent 78%); }
.hub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hub-card:hover img { transform: scale(1.06); }
.hub-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: #fff; }
.hub-body .eyebrow { color: rgba(255,255,255,.78); }
.hub-body h3 { color: #fff; font-size: clamp(24px,2.6vw,30px); margin-top: 8px; }
.hub-body p { font-size: 14px; color: rgba(255,255,255,.85); margin: 6px 0 0; }

/* ============================================================
   Product gallery
   ============================================================ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(24px,3vw,38px); align-items: center; }
.filter-chip {
  padding: 9px 18px; border-radius: 50px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font-size: 13.5px; font-weight: 500; letter-spacing: .02em;
  transition: all .25s;
}
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip.active { background: var(--text); border-color: var(--text); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,1.8vw,26px); }
.piece {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease), border-color .3s;
}
.piece:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-strong); }
.piece-figure { position: relative; aspect-ratio: 1/1; background: var(--surface-2); overflow: hidden; }
.piece-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.piece:hover .piece-figure img { transform: scale(1.05); }
.piece-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--secondary); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 50px;
}
.piece-fav {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; display: grid; place-items: center; color: var(--muted);
  opacity: 0; transform: translateY(-4px); transition: opacity .3s, transform .3s, color .2s; box-shadow: var(--shadow-sm);
}
.piece:hover .piece-fav { opacity: 1; transform: translateY(0); }
.piece-fav:hover { color: var(--primary); }
.piece-fav.on { color: #C0392B; opacity: 1; }
.piece-fav svg { width: 18px; height: 18px; }
.piece-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.piece-body .pb-cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.piece-body h3 { font-size: 21px; line-height: 1.12; }
.piece-body p { margin: 2px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; flex: 1; }
.piece-actions { margin-top: 14px; display: flex; gap: 8px; }
.piece-actions .btn { flex: 1; padding: 11px 14px; min-height: 44px; font-size: 13px; }
.piece-actions .btn-mini-wa {
  flex: none; width: 44px; padding: 0; background: #fff; border-color: var(--border-strong); color: #1FA855;
}
.piece-actions .btn-mini-wa:hover { background: #1FA855; color: #fff; border-color: #1FA855; }

.empty-note { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ============================================================
   Personalise page extras
   ============================================================ */
.option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,2vw,22px); }
.option-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; background: var(--surface); transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.option-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.option-card .oc-ic { width: 52px; height: 52px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); margin-bottom: 18px; }
.option-card .oc-ic svg { width: 24px; height: 24px; }
.option-card h3 { font-size: 24px; }
.option-card p { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; line-height: 1.6; }

.journey { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,24px); }
.journey-step { position: relative; padding-top: 30px; }
.journey-step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--ff-display); font-size: 52px; color: var(--accent); opacity: .9; line-height: 1; display: block; margin-bottom: 12px;
}
.journey-step h4 { font-family: var(--ff-body); font-weight: 700; font-size: 18px; }
.journey-step p { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; line-height: 1.6; }
.journey-step::after { content: ""; position: absolute; top: 52px; left: 64px; right: -14px; height: 1px; background: var(--border); }
.journey-step:last-child::after { display: none; }

/* ============================================================
   About page
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/5.4; background: var(--surface-2); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.stat { border-left: 2px solid var(--accent); padding-left: 18px; }
.stat b { font-family: var(--ff-display); font-size: clamp(34px,4vw,46px); font-weight: 600; display: block; line-height: 1; color: var(--text); }
.stat span { font-size: 13.5px; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
.value { padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.value .v-ic { color: var(--primary); margin-bottom: 14px; }
.value .v-ic svg { width: 30px; height: 30px; }
.value h3 { font-size: 23px; }
.value p { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; line-height: 1.6; }

.soul-band { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(30px,4vw,52px); display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.soul-band .sb-mark { width: 120px; height: auto; flex: none; object-fit: contain; }

/* ============================================================
   Visit / Contact page
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.contact-list { display: grid; gap: 2px; }
.contact-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-row:first-child { border-top: 1px solid var(--border); }
.contact-row .cr-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); flex: none; }
.contact-row .cr-ic svg { width: 21px; height: 21px; }
.contact-row .cr-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-row h4 { font-family: var(--ff-body); font-weight: 600; font-size: 18px; margin: 3px 0 2px; }
.contact-row a { color: var(--primary); font-weight: 500; }
.contact-row p { margin: 3px 0 0; color: var(--muted); font-size: 14.5px; }
.tbc { display: inline-block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); border: 1px dashed var(--border-strong); border-radius: 4px; padding: 2px 8px; margin-left: 4px; }

.map-placeholder {
  border-radius: var(--radius-lg); border: 1px dashed var(--border-strong);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(163,94,42,.04) 14px, rgba(163,94,42,.04) 28px),
    var(--surface-2);
  aspect-ratio: 16/12; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; color: var(--muted); gap: 12px; margin-top: 18px;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); }
.map-placeholder b { font-family: var(--ff-display); font-size: 22px; color: var(--text); font-weight: 600; }
.map-placeholder span { font-size: 13.5px; max-width: 36ch; }

/* ============================================================
   Form
   ============================================================ */
.enquiry-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 15px; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--border-strong); border-radius: var(--radius);
  background: var(--bg); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.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(163,94,42,.12); background: #fff;
}
.field .err { font-size: 12px; color: #C0392B; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C0392B; }
.field.invalid .err { display: block; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; text-align: center; padding: 30px 20px; flex-direction: column; align-items: center; gap: 14px;
}
.form-success.show { display: flex; }
.form-success .fs-ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,168,85,.12); color: #1FA855; display: grid; place-items: center; }
.form-success .fs-ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 28px; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--ff-display); font-size: clamp(20px,2.4vw,25px); font-weight: 500; color: var(--text); }
.faq-q .faq-ic { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .faq-ic::before, .faq-q .faq-ic::after { content: ""; position: absolute; background: var(--primary); transition: transform .3s var(--ease); }
.faq-q .faq-ic::before { top: 12px; left: 4px; right: 4px; height: 1.6px; }
.faq-q .faq-ic::after { left: 12px; top: 4px; bottom: 4px; width: 1.6px; }
.faq-item.open .faq-q .faq-ic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { margin: 0 0 22px; color: var(--muted); font-size: 15.5px; line-height: 1.7; max-width: 70ch; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--secondary); color: #E8D7C7; padding-top: clamp(48px,6vw,80px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px,3vw,44px); padding-bottom: 44px; }
.footer-brand img { height: 140px; width: auto; margin: -30px 0 4px -16px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: #D8C2B0; font-size: 14.5px; max-width: 36ch; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); display: grid; place-items: center; color: #E8D7C7; transition: background .25s, color .25s, border-color .25s, transform .3s; }
.footer-social a:hover { background: #fff; color: var(--secondary); border-color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--ff-body); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: #D8C2B0; font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); padding: 22px 0 34px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #C9B19E; }
.footer-bottom a { color: #C9B19E; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { font-size: 11.5px; color: #B49C89; max-width: 70ch; line-height: 1.6; margin-top: 6px; }

/* ============================================================
   Mobile action bar
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 24px rgba(43,26,20,.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 10px 4px; font-size: 11px; font-weight: 600; letter-spacing: .03em; color: var(--text);
  min-height: 60px; border-left: 1px solid var(--border);
}
.mobile-bar a:first-child { border-left: none; }
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar a.mb-wa { color: #1FA855; }
.mobile-bar a.mb-primary { color: var(--primary); }

/* ============================================================
   WhatsApp floating button (desktop)
   ============================================================ */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 45;
  width: 58px; height: 58px; border-radius: 50%; background: #1FA855; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(31,168,85,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-fab:hover { transform: scale(1.07) translateY(-2px); box-shadow: 0 14px 36px rgba(31,168,85,.5); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #1FA855;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Self-heal: if the environment can't advance CSS transitions, force everything visible */
body.anim-off .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .wa-fab::after { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 1px; }
  .line-cards { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey-step::after { display: none; }
  .option-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  :root { --header-h: 76px; }
  .brand img { height: 104px; margin: -24px 0; }
  .nav-links, .nav-cta .btn:not(.nav-book) { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { gap: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-figure { aspect-ratio: 4/3.4; }
  .hero-figure img { object-position: 72% 26%; }
  .feature-grid, .about-split, .visit-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-media { order: -1; max-width: 520px; aspect-ratio: 16/11; }
  .pride-grid { grid-template-columns: 1fr; }
  .pride-intro, .pride-gallery { grid-column: auto; }
  .campaign { grid-template-columns: 1fr; }
  .teaser.t-lg, .teaser.t-md { grid-column: span 6; aspect-ratio: 16/10; }
  .teaser.t-sm { grid-column: span 3; aspect-ratio: 1/1; }
  .about-media { order: -1; aspect-ratio: 16/11; max-width: 560px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 60px; }
  .mobile-bar { display: grid; }
  .wa-fab { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hub-grid { grid-template-columns: 1fr; }
  .line-cards, .option-grid, .values-grid, .journey { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pride-gallery { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .teaser.t-lg, .teaser.t-md { aspect-ratio: 3/2; }
  .soul-band { grid-template-columns: 1fr; text-align: center; }
  .soul-band .sb-mark { margin: 0 auto; }
  .piece-body h3 { font-size: 18px; }
  .piece-actions { flex-direction: column; }
  .piece-actions .btn-mini-wa { width: 100%; height: 44px; }
  .cta-band .cta-row .btn { width: 100%; }
}

@media (max-width: 400px) {
  .gallery { gap: 10px; }
  .stat-row { grid-template-columns: 1fr; }
}
