:root {
  --cream: #f6f3ec;
  --cream-2: #efeae0;
  --ink: #1b1a17;
  --muted: #6a6255;
  --line: #ddd6c9;
  --white: #fffdf8;
  --radius: 4px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "bely-display", "Bely", "Fraunces", Georgia, serif;
  font-weight: 500; line-height: 1.04; font-optical-sizing: auto;
}

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

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

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(246, 243, 236, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; }
.brand img { height: 26px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; font-size: 14px; letter-spacing: .02em; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; cursor: pointer; border: 1px solid var(--ink);
  padding: 13px 26px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 500; border-radius: var(--radius); transition: all .2s; background: none;
  font-family: inherit;
}
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; }
.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-light:hover { background: #fff; border-color: #fff; }
.hero .btn { padding: 16px 34px; font-size: 13.5px; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(40px, 8vw, 120px) clamp(20px, 5vw, 56px); overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 58% at 50% 46%, rgba(20,18,15,.55), rgba(20,18,15,.18) 72%),
    linear-gradient(180deg, rgba(20,18,15,.32), rgba(20,18,15,.18) 45%, rgba(20,18,15,.4));
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; color: var(--cream); }
.eyebrow { font-size: 13px; letter-spacing: .28em; text-transform: uppercase; color: rgba(246,243,236,.88); margin-bottom: 30px; }
.hero h1 { font-size: clamp(52px, 9.5vw, 112px); letter-spacing: -.01em; color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,.25); margin-bottom: clamp(30px, 5vw, 46px); }
.hero h1 em { font-style: italic; color: rgba(246,243,236,.82); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(246,243,236,.92); max-width: 460px; margin: 26px auto 38px; }

/* ---------- BELGIAN FLAG ---------- */
.flag-be {
  display: inline-block; width: 15px; height: 11px; border-radius: 2px;
  background: linear-gradient(to right, #000 33.4%, #fdda24 33.4% 66.7%, #ef3340 66.7%);
  vertical-align: baseline;
}

/* ---------- TRUST STRIP ---------- */
.trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(8px, 1.6vw, 20px); padding: 16px clamp(16px, 3vw, 40px);
  background: var(--cream-2); border-bottom: 1px solid var(--line);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.trust span { display: inline-flex; align-items: center; }
.trust span:not(:last-child)::after { content: "·"; margin-left: clamp(8px, 1.6vw, 20px); opacity: .5; }
/* Below the width where all four fit on one line, stack cleanly (no dangling dots) */
@media (max-width: 780px) {
  .trust { flex-direction: column; gap: 9px; }
  .trust span:not(:last-child)::after { content: none; }
}

/* ---------- SECTIONS ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 56px); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(36px, 6vw, 58px); }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ---------- PRODUCT GRID ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 40px); }
.card { cursor: pointer; }
.card-img {
  position: relative; aspect-ratio: 4/5; background: #fff;
  border-radius: var(--radius); overflow: hidden; display: grid; place-items: center;
  border: 1px solid var(--line); transition: box-shadow .35s ease, transform .35s ease;
}
.card:hover .card-img { box-shadow: 0 14px 40px -18px rgba(20,18,15,.35); transform: translateY(-3px); }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: opacity .5s ease; padding: 10%; }
.card-img .front { position: absolute; inset: 0; opacity: 0; }
.card:hover .front { opacity: 1; }
.card:hover .back { opacity: 0; }
.card-tag { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--cream); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; }
.soldout-tag { position: absolute; top: 12px; right: 12px; background: var(--white); color: var(--muted); border: 1px solid var(--line); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; }
.card.soldout .card-img img { opacity: .5; filter: grayscale(.25); }
.card.soldout:hover .card-img { box-shadow: none; transform: none; }
.card-info { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.card-info h3 { font-size: 23px; }
.card-info .colour { font-size: 13px; color: var(--muted); }
.card-info .price { font-size: 15px; font-weight: 500; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.about-text h2 { font-size: clamp(36px, 6vw, 58px); margin-bottom: 24px; }
.about-text p { color: var(--muted); margin-bottom: 16px; max-width: 46ch; }
.about-text strong { color: var(--ink); font-weight: 600; }
.about-img img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- INSTAGRAM ---------- */
.insta { text-align: center; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1.5vw, 16px); margin-bottom: 34px; }
.insta-grid a { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); display: block; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.insta-grid a:hover img { transform: scale(1.06); opacity: .92; }
@media (max-width: 600px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CONTACT ---------- */
.contact { text-align: center; }
.contact h2 { font-size: clamp(36px, 6vw, 58px); }
.contact p { color: var(--muted); margin: 12px 0 30px; }
.contact-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- POLICY PAGE ---------- */
.policy { max-width: 760px; }
.policy h1 { font-size: clamp(40px, 7vw, 64px); margin-bottom: 8px; }
.policy h2 { font-size: clamp(22px, 3vw, 28px); margin: 38px 0 12px; }
.policy p { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.policy p.muted { font-size: 13px; letter-spacing: .02em; }
.policy a { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--cream); text-align: center; padding: 64px 20px; }
.footer-brand img { height: 38px; width: auto; filter: invert(1); display: inline-block; }
.footer p { color: rgba(246,243,236,.78); margin-top: 8px; }
.footer-fine { font-size: 13px; margin-top: 22px !important; color: rgba(246,243,236,.6) !important; }
.footer-fine a { color: inherit; text-decoration: underline; }

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(20,18,15,.55); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; max-width: 940px; margin: clamp(20px, 5vh, 60px) auto; background: var(--white);
  border-radius: var(--radius); max-height: 90vh; overflow-y: auto; width: calc(100% - 32px);
  animation: pop .25s ease;
}
@keyframes pop { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 5; background: var(--cream); border: none;
  width: 38px; height: 38px; border-radius: 50%; font-size: 22px; cursor: pointer; line-height: 1;
}
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-gallery { background: #fff; padding: 30px; border-right: 1px solid var(--line); }
.modal-main-img { aspect-ratio: 1/1; display: grid; place-items: center; }
.modal-main-img img, .modal-main-img video { max-width: 100%; max-height: 100%; object-fit: contain; }
.modal-thumbs { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.modal-thumbs .thumb {
  position: relative; width: 56px; height: 56px; padding: 0; overflow: hidden;
  border-radius: 3px; cursor: pointer; border: 1px solid var(--line);
  opacity: .65; transition: opacity .2s; background: var(--white);
}
.modal-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-thumbs .thumb:hover, .modal-thumbs .thumb.active { opacity: 1; }
.play-badge {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
  color: #fff; font-size: 13px; background: rgba(20,18,15,.28); text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.modal-detail { padding: clamp(28px, 4vw, 48px); }
.modal-detail .colour { color: var(--muted); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.modal-detail h2 { font-size: clamp(32px, 4vw, 46px); margin: 6px 0; }
.modal-detail .price { font-size: 20px; margin-bottom: 22px; }
.modal-detail .desc { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.charity-badge { display: inline-block; background: #e8efe6; color: #3c5d3a; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; margin-bottom: 16px; }
.care { margin: -8px 0 26px; color: var(--muted); font-size: 14px; }
.care summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 11px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.care summary::-webkit-details-marker { display: none; }
.care summary::after { content: "+"; font-size: 15px; }
.care[open] summary::after { content: "\2212"; }
.care ul { margin: 12px 0 0; padding-left: 18px; }
.care li { margin-bottom: 6px; }
.size-chart { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 13px; }
.size-chart th, .size-chart td { padding: 6px 4px; border-bottom: 1px solid var(--line); text-align: center; font-weight: 400; }
.size-chart th:first-child, .size-chart td:first-child { text-align: left; }
.size-chart thead th { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.size-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.size {
  min-width: 46px; padding: 10px 0; text-align: center; border: 1px solid var(--line);
  border-radius: var(--radius); cursor: pointer; font-size: 14px; transition: all .15s;
}
.size:hover { border-color: var(--ink); }
.size:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.size.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.size.soldout { color: var(--muted); text-decoration: line-through; opacity: .45; cursor: not-allowed; background: var(--cream-2); }
.size.soldout:hover { border-color: var(--line); }
.order-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.order-note a { text-decoration: underline; }
.stock-note { font-size: 13px; color: var(--muted); margin: 0 0 14px; min-height: 1.1em; }
.stock-note.low { color: var(--ink); font-weight: 500; }
.stock-note a { text-decoration: underline; color: var(--ink); }

/* ---------- SCROLL REVEAL ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .card.reveal { transition-delay: var(--d, 0ms); }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 760px) {
  .nav-links { gap: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-gallery { padding: 20px; }
}
