:root {
  --sand: #fbf8f3;
  --sand-2: #f3ece1;
  --sand-3: #ece2d3;
  --ink: #23201c;
  --ink-soft: #6f655a;
  --coral: #c8552e;
  --coral-dark: #9e3d1c;
  --teal: #0e5c48;
  --teal-soft: #e2f1ea;
  --gold: #c29a52;
  --line: rgba(35, 32, 28, 0.10);
  --shadow-sm: 0 2px 10px rgba(35, 32, 28, 0.05);
  --shadow-md: 0 14px 40px rgba(35, 32, 28, 0.10);
  --shadow-lg: 0 28px 70px rgba(35, 32, 28, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1040px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
a { color: inherit; }

/* ---------- SCROLL PROGRESS ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  z-index: 100;
  transition: width 0.08s linear;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1.2rem, 4vw, 2.5rem);
  background: rgba(251, 248, 243, 0.75);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__links { display: flex; align-items: center; gap: clamp(0.8rem, 2.5vw, 1.75rem); }
.nav__links a { text-decoration: none; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); transition: color 0.15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink);
  color: var(--sand) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--coral); }
@media (max-width: 540px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 6rem) clamp(1.2rem, 4vw, 2.5rem) clamp(2.5rem, 7vw, 4.5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 15% 10%, rgba(194, 154, 82, 0.16), transparent 60%),
    radial-gradient(55% 55% at 95% 30%, rgba(14, 92, 72, 0.10), transparent 60%),
    radial-gradient(70% 60% at 60% 100%, rgba(200, 85, 46, 0.08), transparent 60%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
  flex-wrap: wrap;
}
.hero__photo { position: relative; flex: 0 0 auto; }
.hero__photo-frame {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
.hero__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(170px, 34vw, 260px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  background: var(--sand-2);
}
.hero__photo img.is-empty { display: grid; place-items: center; color: var(--ink-soft); font-size: 13px; }
.hero__text { flex: 1 1 340px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.7rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 8.5vw, 4.6rem);
  background: linear-gradient(115deg, var(--ink) 30%, var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.handle { color: var(--teal); font-weight: 600; margin: 0.4rem 0 1rem; font-size: 1.05rem; }
.tagline { font-size: clamp(1.02rem, 2.5vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; }
.flags { white-space: nowrap; }
.hero__cta { display: flex; gap: 0.8rem; margin-top: 1.8rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(200, 85, 46, 0.28); }
.btn--primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); box-shadow: 0 14px 30px rgba(200, 85, 46, 0.34); }

/* ---------- SECTIONS ---------- */
main { counter-reset: sec; }
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1.2rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.section__label {
  counter-increment: sec;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 1.6rem;
}
.section__label::before {
  content: "0" counter(sec);
  font-family: "Fraunces", serif;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
}
.lede { font-size: clamp(1.1rem, 2.6vw, 1.4rem); max-width: 62ch; color: var(--ink); line-height: 1.5; font-family: "Fraunces", serif; font-weight: 400; }

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.stat {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat--accent { background: var(--teal); }
.stat--accent::before { background: linear-gradient(90deg, var(--gold), #fff6); }
.stat__num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat--accent .stat__num, .stat--accent .stat__label { color: #fff; }
.stat__label { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.4rem; display: block; }
.stats__note { margin-top: 1.6rem; color: var(--ink-soft); max-width: 62ch; font-size: 1.05rem; }
.stats__note em { color: var(--coral); font-style: italic; }

/* ---------- META GRID ---------- */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 2.25rem;
}
.meta h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.meta p, .meta li { color: var(--ink-soft); }
.meta ul { list-style: none; }
.meta li { padding: 0.18rem 0; }
.meta a { color: var(--teal); font-weight: 600; text-decoration: none; }
.meta a:hover { text-decoration: underline; }

/* ---------- BRANDS ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }
.brand {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.brand:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.brands__link { margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.brands__link a { color: var(--coral); font-weight: 600; text-decoration: none; }
.brands__link a:hover { text-decoration: underline; }

.campaigns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.9rem;
  max-width: 620px;
}
.campaign {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand-2);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.campaign:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.campaign__ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}
.campaign img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.campaign:hover img { transform: scale(1.05); }
.campaign img.is-empty { opacity: 0; }
.campaign__cap {
  position: absolute;
  z-index: 2;
  left: 10px; bottom: 10px;
  background: rgba(35, 32, 28, 0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.campaign__cap i { font-style: normal; opacity: 0.8; }

/* ---------- GALLERY ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand-2);
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tile:hover img { transform: scale(1.05); }
.tile img.is-empty { opacity: 0; }
.tile { padding: 0; border: none; cursor: pointer; font: inherit; }
.tile__zoom {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(35, 32, 28, 0.55);
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(4px);
}
.tile:hover .tile__zoom, .tile:focus-visible .tile__zoom { opacity: 1; transform: scale(1); }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 15, 0.94);
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, transform 0.15s ease;
  backdrop-filter: blur(4px);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__close {
  top: clamp(0.8rem, 3vw, 1.6rem);
  right: clamp(0.8rem, 3vw, 1.6rem);
  width: 46px; height: 46px;
  font-size: 1.7rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.6rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.6rem); }
@media (max-width: 560px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
}

/* ---------- OFFER ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.1rem; }
.offer {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--coral);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer h3 { color: var(--coral); font-size: 1.3rem; margin-bottom: 0.55rem; }
.offer p { color: var(--ink-soft); }

/* ---------- CONTACT ---------- */
.section--contact {
  text-align: center;
  border-bottom: none;
  background: var(--ink);
  color: var(--sand);
  max-width: none;
  margin-top: 1rem;
  border-radius: 0;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.2rem, 4vw, 2.5rem);
}
.section--contact .section__label { color: var(--gold); justify-content: center; }
.section--contact .section__label::before { color: var(--gold); border-color: rgba(194, 154, 82, 0.5); }
.section--contact h2 { font-size: clamp(1.8rem, 5.5vw, 2.9rem); margin-bottom: 2.25rem; color: var(--sand); }
.contact { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.25rem 1.8rem;
  text-decoration: none;
  min-width: 210px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.contact__item:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.11); border-color: var(--gold); }
.contact__k { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); }
.contact__v { display: block; font-weight: 600; color: var(--sand); margin-top: 0.3rem; font-size: 1.05rem; }

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  background: var(--sand-2);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .tile:hover img { transform: none; }
}
