:root {
  --ivory: #faf7f1;
  --card: #ffffff;
  --ink: #2a2118;
  --muted: #8a7d6b;
  --gold: #d99414;
  --gold-dark: #a8720d;
  --maroon: #c52b57;
  --teal: #031e28;
  --teal-mid: #0a3644;
  --turquoise: #019fad;
  --line: #e9e1d3;
  --wa: #1fa855;
  --shadow: 0 2px 14px rgba(42, 33, 24, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
h1, h2, h3, .brand-name { font-family: 'Cormorant Garamond', Georgia, serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* announcement bar */
.announce {
  background: var(--teal); color: #e8d9b8;
  text-align: center; font-size: 12.5px; letter-spacing: 1.2px;
  padding: 8px 14px; text-transform: uppercase;
}
.announce strong { color: var(--gold); font-weight: 500; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 1px 5px rgba(3, 30, 40, .35);
}
.brand-name { font-size: 22px; font-weight: 600; letter-spacing: .5px; line-height: 1.1; }
.brand-name em { font-style: italic; color: var(--turquoise); }
.brand-name small {
  display: block; font-family: 'Jost', sans-serif; font-size: 10px;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--muted); font-weight: 400;
}
.site-nav { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 28px); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.site-nav a:not(.btn-wa):hover { color: var(--gold-dark); }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 40px; height: 40px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--card); border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(42, 33, 24, .12);
  display: flex; flex-direction: column;
}
.mobile-menu a {
  padding: 15px 24px; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  border-top: 1px solid var(--line);
}
.mobile-menu a:active { background: var(--ivory); }

/* buttons */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff !important;
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; letter-spacing: .5px; text-transform: none;
  transition: filter .15s;
}
.btn-wa:hover { filter: brightness(1.08); }
.btn-wa.big { padding: 12px 26px; font-size: 15px; }
.btn-gold {
  display: inline-block; margin-top: 28px;
  background: var(--gold); color: #fff;
  padding: 13px 34px; border-radius: 100px;
  letter-spacing: 2px; text-transform: uppercase; font-size: 13px;
  transition: background .15s;
}
.btn-gold:hover { background: var(--gold-dark); }

/* hero */
.hero {
  text-align: center;
  padding: clamp(46px, 7vw, 90px) 20px clamp(50px, 8vw, 100px);
  background:
    radial-gradient(900px 480px at 50% 30%, rgba(1, 159, 173, .16), transparent 70%),
    var(--teal);
  color: #f3ede2;
}
.hero-logo {
  width: clamp(170px, 22vw, 240px); height: auto;
  margin: 0 auto 26px;
  border-radius: 18px;
  border: 1px solid rgba(217, 148, 20, .45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}
.hero-kicker {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 500; line-height: 1.12; margin: 0;
}
.hero h1 em { font-style: italic; color: var(--turquoise); }
.hero-sub { font-size: clamp(17px, 2.4vw, 22px); color: #bfd4d6; margin: 18px 0 0; }
.hero-sub strong { color: #fff; font-weight: 500; }

/* shop toolbar */
.shop { max-width: 1280px; margin: 0 auto; padding: 20px clamp(14px, 3vw, 40px) 70px; }
.toolbar {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  padding: 10px 0 4px;
  position: sticky; top: 64px; z-index: 40;
  background: var(--ivory);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: var(--card);
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; letter-spacing: .4px; cursor: pointer;
  font-family: inherit; color: var(--ink);
  transition: all .15s;
}
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--teal-mid); color: #fff; border-color: var(--teal-mid); }
.chip .n { color: var(--muted); font-size: 11px; margin-left: 4px; }
.chip.active .n { color: rgba(255,255,255,.6); }
.tools { display: flex; gap: 8px; }
.tools input, .tools select {
  font-family: inherit; font-size: 14px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 16px; outline: none;
}
.tools input:focus, .tools select:focus { border-color: var(--gold); }
.tools input { width: 180px; }
.count { font-size: 13px; color: var(--muted); margin: 10px 2px 16px; }

/* grid */
.grid {
  display: grid; gap: clamp(14px, 2vw, 26px);
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.card {
  background: var(--card); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(42,33,24,.13); }
.card-img { aspect-ratio: 1; overflow: hidden; cursor: zoom-in; background: #f1ece2; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 {
  margin: 0; font-size: 18px; font-weight: 600; line-height: 1.25;
}
.card-cat { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.card-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price { font-size: 17px; color: var(--maroon); font-weight: 500; margin: 0; }
.price small { font-size: 12px; color: var(--muted); font-weight: 300; }
.order {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--wa); color: #fff; border-radius: 100px;
  padding: 7px 14px; font-size: 13px;
  transition: filter .15s;
}
.order:hover { filter: brightness(1.08); }
.card.is-sold .card-img img { filter: grayscale(.55) brightness(.96); }
.card.is-sold .card-img { cursor: zoom-in; }
.sold-badge {
  position: absolute; top: 12px; left: -34px;
  transform: rotate(-35deg);
  background: var(--maroon); color: #fff;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 38px; box-shadow: 0 2px 8px rgba(0,0,0,.25);
  pointer-events: none;
}
.card-img { position: relative; }
.order.sold, .btn-wa.sold {
  background: #cfc6b6; color: #6d6355 !important; cursor: default; pointer-events: none;
}
.more-wrap { text-align: center; margin-top: 30px; }
.show-more {
  background: none; border: 1px solid var(--gold); color: var(--gold-dark);
  padding: 12px 32px; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  transition: all .15s;
}
.show-more:hover { background: var(--gold); color: #fff; }
.empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 16px; }

/* editorial banner */
.editorial {
  background:
    radial-gradient(700px 420px at 22% 40%, rgba(217, 148, 20, .10), transparent 70%),
    var(--teal-mid);
  color: #ece5d6;
  padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 48px);
}
.ed-inner {
  max-width: 1020px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 6vw, 90px); flex-wrap: wrap-reverse;
}
.ed-text { max-width: 430px; }
.ed-text h2 {
  font-size: clamp(30px, 4.6vw, 46px); font-weight: 500;
  line-height: 1.15; margin: 0 0 14px; color: #fff;
}
.ed-sub { font-size: 16px; line-height: 1.7; color: #cfdad6; margin: 0; }
.ed-text .btn-gold { border: none; cursor: pointer; font-family: inherit; margin-top: 24px; }
.ed-img img {
  width: clamp(240px, 30vw, 360px); height: auto; display: block;
  border-radius: 18px;
  border: 1px solid rgba(217, 148, 20, .45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

/* how ordering works */
.how {
  background: var(--teal); color: #d9e4e2;
  padding: clamp(50px, 8vw, 90px) clamp(16px, 4vw, 48px);
}
.how-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(30px, 6vw, 80px); flex-wrap: wrap;
}
.how-video video {
  width: clamp(220px, 26vw, 300px); height: auto; display: block;
  border-radius: 26px;
  border: 1px solid rgba(217, 148, 20, .5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
}
.how-steps { max-width: 420px; }
.how-kicker {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 10px;
}
.how-steps h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 500;
  margin: 0 0 18px; color: #fff;
}
.how-steps ol { margin: 0 0 26px; padding: 0 0 0 20px; }
.how-steps li { margin-bottom: 14px; font-size: 16px; line-height: 1.6; }
.how-steps li::marker { color: var(--gold); font-weight: 500; }
.how-steps strong { color: var(--turquoise); font-weight: 500; }
.how-link { color: var(--gold); border-bottom: 1px solid rgba(217, 148, 20, .5); }

/* about */
.about {
  background: var(--teal-mid); color: #d9e4e2;
  padding: clamp(50px, 8vw, 90px) 20px;
  text-align: center;
}
.about h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 500; margin: 0 0 20px; color: var(--gold); }
.about p { max-width: 720px; margin: 0 auto 16px; font-size: 16.5px; line-height: 1.75; }
.about strong { color: var(--turquoise); font-weight: 500; }
.about-pull {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(19px, 2.6vw, 24px); font-style: italic;
  color: var(--gold); line-height: 1.55;
  max-width: 640px; margin: 28px auto 0 !important;
  padding-top: 24px; border-top: 1px solid rgba(217, 148, 20, .35);
}

/* footer */
.site-footer { text-align: center; padding: clamp(46px, 7vw, 80px) 20px 34px; }
.site-footer h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 500; margin: 0 0 22px; }
.contact-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(45deg, #b5307a, #d33a6e, #e08a3c);
  color: #fff; padding: 12px 26px; border-radius: 100px; font-size: 15px;
  transition: filter .15s;
}
.btn-ig:hover { filter: brightness(1.08); }
.mail { font-size: 16px; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.mail:hover { color: var(--gold-dark); }
.fine { color: var(--muted); font-size: 13px; margin-top: 40px; }

/* modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(30, 22, 14, .62); }
.modal-card {
  position: relative; background: var(--card); border-radius: 16px;
  max-width: 620px; width: 100%; max-height: 92vh; overflow: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
/* show the whole photo, whatever its shape — tall pieces were being cropped */
#modal-img {
  display: block; width: 100%; max-height: 62vh;
  object-fit: contain; background: #f1ece2;
}
.card-img img.alt:not([src]) { visibility: hidden; }
.card-img img.alt {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .3s;
}
.card:hover .card-img img.alt:not([src]) { visibility: hidden; }
.card-img img.alt { opacity: 1; }
.modal-thumbs {
  display: flex; gap: 8px; justify-content: center;
  padding: 12px 12px 0;
}
.modal-thumbs img {
  width: 58px; height: 58px; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  border: 2px solid transparent; opacity: .75;
}
.modal-thumbs img.active { border-color: var(--gold); opacity: 1; }
.modal-info { padding: 18px 22px 24px; text-align: center; }
.modal-info h3 { font-size: 24px; font-weight: 600; margin: 0 0 6px; }
.modal-info .price { font-size: 19px; margin-bottom: 16px; }
.modal-num {
  font-size: 12px; letter-spacing: 2px; color: var(--muted); margin: 0 0 2px;
}
.modal-actions { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
.share-btn {
  background: none; border: 1px solid var(--line); color: var(--ink);
  padding: 11px 22px; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 14px;
}
.share-btn:hover { border-color: var(--gold); }
.modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 22px; line-height: 1;
}

@media (max-width: 640px) {
  .site-nav a:not(.btn-wa) { display: none; }
  .nav-toggle { display: flex; }
  .toolbar { position: static; }
  .tools { width: 100%; }
  .tools input { flex: 1; width: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card-body h3 { font-size: 15.5px; }
  .card-row { flex-direction: column; align-items: flex-start; }
}
