/* Nanglo — vanilla CSS port */
:root {
  --ivory: #f6f1e7;
  --background: #f6f1e7;
  --foreground: #2b2620;
  --charcoal: #221f1b;
  --earth: #8a7c66;
  --gold: #b8945b;
  --gold-soft: #c9a86d;
  --card: #fbf7ee;
  --secondary: #ece4d3;
  --border: #d9cfb9;
  --muted-fg: #6a6358;

  --shadow-elegant: 0 30px 80px -30px rgba(34, 31, 27, 0.35);
  --shadow-soft: 0 12px 40px -16px rgba(34, 31, 27, 0.25);

  --tracking-luxe: 0.22em;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --max: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
em { font-style: normal; }

/* ---------- Utilities ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-luxe);
  color: var(--earth);
}
.text-gold { color: var(--gold); }
.font-light-em { font-weight: 300; color: var(--gold); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-soft { box-shadow: var(--shadow-soft); }

.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 1s cubic-bezier(.22,1,.36,1) forwards; }
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .30s; }
.d3 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.ken-burns { animation: kb 18s ease-out forwards; }
@keyframes kb { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .5s, border-color .5s, backdrop-filter .5s;
}
.nav.scrolled {
  background: rgba(246, 241, 231, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 207, 185, 0.6);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 3rem; } }
.brand { display: flex; align-items: baseline; gap: .5rem; }
.brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); letter-spacing: -.01em; }
.nav-links { display: none; gap: 2.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(43,38,32,.75); transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: none; font-size: .78rem; text-transform: uppercase; letter-spacing: .18em;
  border: 1px solid rgba(34,31,27,.7); color: var(--charcoal);
  padding: .625rem 1.25rem; transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--charcoal); color: var(--ivory); }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; padding: 7rem 0 3rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(246,241,231,.92), rgba(246,241,231,.8), var(--ivory));
}
.hero-inner { flex: 1; display: flex; flex-direction: column; }
.hero-grid {
  flex: 1; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5.75rem); line-height: 1.02;
  letter-spacing: -.02em; color: var(--charcoal); margin-top: 2rem;
}
.hero-lede { margin-top: 2rem; max-width: 36rem; font-size: 1.0625rem; color: rgba(43,38,32,.75); font-weight: 300; }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.btn { display: inline-flex; align-items: center; gap: .75rem; padding: 1rem 1.75rem;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; transition: background .3s, color .3s; cursor: pointer; }
.btn-primary { background: var(--charcoal); color: var(--ivory); border: 0; }
.btn-primary:hover { background: rgba(34,31,27,.9); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1px solid rgba(34,31,27,.7); }
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }

.brand-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
@media (min-width: 1024px) { .brand-cards { gap: 1rem; } }
.brand-card { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--charcoal); box-shadow: var(--shadow-soft); display: block; }
.brand-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8;
  transition: opacity 1.2s, transform 1.2s; }
.brand-card:hover img { opacity: 1; transform: scale(1.05); }
.brand-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,31,27,.95), rgba(34,31,27,.3), transparent);
}
.brand-card-meta { position: absolute; inset: auto 0 0 0; padding: 1rem; color: var(--ivory); z-index: 1; }
.brand-card-meta .yr { font-size: .6rem; text-transform: uppercase; letter-spacing: .22em; color: rgba(201,168,109,.9); }
.brand-card-meta .nm { margin-top: .25rem; font-family: var(--font-display); font-size: 1.125rem; line-height: 1.1; }
@media (min-width: 1024px) { .brand-card-meta { padding: 1.25rem; } .brand-card-meta .nm { font-size: 1.35rem; } }

.hero-strip {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(34,31,27,.15);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(43,38,32,.6);
}
@media (min-width: 768px) { .hero-strip { grid-template-columns: repeat(4, 1fr); } .hero-strip > :last-child { text-align: right; } }

/* ---------- Sections ---------- */
section { padding: 7rem 0; }
@media (min-width: 1024px) { section { padding: 10rem 0; } }
.section-bg-secondary { background: rgba(236, 228, 211, 0.4); }
.section-bg-charcoal { background: var(--charcoal); color: var(--ivory); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-img-wrap { position: relative; }
.about-img { aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow-elegant); }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.about-badge {
  position: absolute; bottom: -2rem; right: -1rem; background: var(--ivory);
  border: 1px solid var(--border); padding: 1.5rem 2rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .about-badge { right: -3rem; } }
.about-badge .y { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.h-section { font-family: var(--font-display); font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.05; color: var(--charcoal); }
.section-text { margin-top: 2.5rem; display: grid; gap: 1.5rem; max-width: 42rem; color: rgba(43,38,32,.75); font-weight: 300; font-size: 1.0625rem; line-height: 1.65; }
.about-stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(3, 1fr); } }
.about-stats .k { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); margin-top: .5rem; }

/* Brands */
.brands-head { display: flex; flex-direction: column; gap: 2rem; justify-content: space-between; margin-bottom: 4rem; }
@media (min-width: 1024px) { .brands-head { flex-direction: row; align-items: flex-end; margin-bottom: 6rem; } }
.brands-head p.lede { max-width: 22rem; color: rgba(43,38,32,.7); font-weight: 300; line-height: 1.65; }
.brands-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.brand-article { background: var(--card); box-shadow: var(--shadow-soft); transition: box-shadow .7s; }
.brand-article:hover { box-shadow: var(--shadow-elegant); }
.brand-article .img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--charcoal); }
.brand-article .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease-out; }
.brand-article:hover .img-wrap img { transform: scale(1.04); }
.brand-tag { position: absolute; top: 1.25rem; left: 1.25rem; background: rgba(246,241,231,.95);
  backdrop-filter: blur(6px); padding: .375rem .75rem; font-size: .6rem; text-transform: uppercase;
  letter-spacing: .22em; color: var(--charcoal); }
.brand-body { padding: 2rem; }
@media (min-width: 1024px) { .brand-body { padding: 2.5rem; } }
.brand-body h3 { margin-top: 1rem; font-size: 1.75rem; color: var(--charcoal); }
.brand-body p { margin-top: 1rem; color: rgba(43,38,32,.7); font-weight: 300; line-height: 1.65; }
.link-underline {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--charcoal); border-bottom: 1px solid rgba(34,31,27,.4); padding-bottom: .25rem;
  transition: color .3s, border-color .3s;
}
.link-underline:hover { color: var(--gold); border-color: var(--gold); }

/* Journey */
.journey-head { max-width: 42rem; margin-bottom: 5rem; }
.journey-head h2 { color: var(--ivory); font-family: var(--font-display); font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.05; }
.timeline { position: relative; }
.timeline-line { display: none; position: absolute; top: 26px; left: 0; right: 0; height: 1px; background: rgba(246,241,231,.15); }
@media (min-width: 768px) { .timeline-line { display: block; } }
.timeline-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .timeline-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.milestone .dot { display: none; width: .75rem; height: .75rem; border-radius: 50%; background: var(--gold); margin-bottom: 2.5rem; box-shadow: 0 0 0 4px var(--charcoal); }
@media (min-width: 768px) { .milestone .dot { display: block; } }
.milestone .yr { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); }
@media (min-width: 1024px) { .milestone .yr { font-size: 3rem; } }
.milestone h3 { margin-top: .75rem; font-size: 1.5rem; color: var(--ivory); }
.milestone p { margin-top: 1rem; color: rgba(246,241,231,.65); font-weight: 300; line-height: 1.6; font-size: .9rem; }

/* Philosophy */
.philo-grid { display: grid; gap: 4rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .philo-grid { grid-template-columns: 4fr 8fr; } }
.philo-list { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.philo-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; padding: 2rem .5rem; border-top: 1px solid var(--border); transition: background .3s; }
.philo-list .philo-row:first-child { border-top: 0; }
.philo-row:hover { background: rgba(236,228,211,.5); }
.philo-row .n { grid-column: span 2; font-size: .72rem; letter-spacing: .22em; color: var(--earth); padding-top: .5rem; }
.philo-row h3 { grid-column: span 10; font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); }
.philo-row p { grid-column: span 12; color: rgba(43,38,32,.7); font-weight: 300; padding-top: .5rem; line-height: 1.65; }
@media (min-width: 640px) {
  .philo-row h3 { grid-column: span 4; font-size: 1.75rem; }
  .philo-row p { grid-column: span 6; }
}

/* Stats */
.stats { padding: 6rem 0; background: rgba(236,228,211,.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 1024px) { .stats { padding: 8rem 0; } }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
@media (min-width: 1024px) { .stat { text-align: left; } }
.stat .n { font-family: var(--font-display); font-size: 3rem; color: var(--charcoal); line-height: 1; }
@media (min-width: 1024px) { .stat .n { font-size: 4.5rem; } }
.stat .l { margin-top: 1rem; }

/* Vision */
.vision-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .vision-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; } }
.vision-img { aspect-ratio: 5/4; overflow: hidden; box-shadow: var(--shadow-elegant); }
.vision-img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .vision-text { order: 1; } .vision-img { order: 2; } }

/* Footer */
.footer { background: var(--charcoal); color: var(--ivory); padding: 6rem 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(246,241,231,.15); }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.footer-hd { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 1024px) { .footer-hd { font-size: 3rem; } }
.footer p.note { margin-top: 1.5rem; color: rgba(246,241,231,.65); font-weight: 300; max-width: 28rem; line-height: 1.65; }
.subscribe { margin-top: 2rem; display: flex; align-items: center; border-bottom: 1px solid rgba(246,241,231,.3); max-width: 28rem; }
.subscribe input { flex: 1; background: transparent; border: 0; padding: .75rem 0; font-size: .9rem; color: var(--ivory); outline: none; }
.subscribe input::placeholder { color: rgba(246,241,231,.4); }
.subscribe button { background: transparent; border: 0; cursor: pointer; padding: .75rem 0; font-size: .7rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); transition: color .3s; }
.subscribe button:hover { color: var(--ivory); }

.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.footer-cols ul li { color: rgba(246,241,231,.75); font-size: .9rem; margin-bottom: .75rem; }
.footer-cols ul li a { transition: color .3s; }
.footer-cols ul li a:hover { color: var(--gold); }

.footer-bottom { padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start; justify-content: space-between;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .22em; color: rgba(246,241,231,.45); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom .socials { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--gold); }

.anniv-badge {
  display: inline-flex; align-items: stretch; margin-bottom: 2rem;
  border-radius: 999px; overflow: hidden;
  background: linear-gradient(90deg,
    color-mix(in oklab, var(--ivory) 95%, transparent) 0%,
    color-mix(in oklab, var(--ivory) 75%, transparent) 50%,
    color-mix(in oklab, var(--ivory) 95%, transparent) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklab, var(--gold) 32%, transparent);
  box-shadow: var(--shadow-elegant);
}
.anniv-medallion-wrap { display: flex; align-items: center; padding: 6px 0 6px 6px; }
.anniv-medallion {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, #f3e3b3 0%, #d4af6a 45%, #a8854a 100%);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px color-mix(in oklab, var(--gold) 50%, transparent);
  color: var(--charcoal);
}
.anniv-medallion-shine {
  position: absolute; inset: 2px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,250,235,.55), transparent 55%);
  pointer-events: none;
}
.anniv-medallion-num {
  position: relative; font-family: var(--font-display);
  font-size: 2rem; font-weight: 500; line-height: 1; letter-spacing: -0.01em;
  margin-top: -10px;
}
.anniv-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6px 20px 6px 14px; margin-left: 4px;
  border-left: 1px solid color-mix(in oklab, var(--gold) 22%, transparent);
}
.anniv-title {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .62rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .32em; color: var(--gold);
}
.anniv-pulse {
  width: 4px; height: 4px; border-radius: 999px; background: var(--gold);
  animation: annivPulse 2s ease-in-out infinite;
}
@keyframes annivPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}
.anniv-sub {
  margin-top: 2px; font-size: .6rem; text-transform: uppercase;
  letter-spacing: .24em; color: color-mix(in oklab, var(--foreground) 55%, transparent);
}
