:root {
  --navy: #00005E;
  --navy-deep: #000040;
  --navy-mid: #00008A;
  --cream: #F8F5EF;
  --warm-white: #FDFBF7;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --charcoal: #1A1A2E;
  --text-body: #2C2C4A;
  --text-muted: #6B6B8A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(0,0,64,0.96);
  padding: 1rem 4rem;
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy-deep) !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,64,0.88) 0%,
    rgba(0,0,80,0.65) 45%,
    rgba(0,0,40,0.3) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 2.8rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s ease forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 1.05s ease forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost::after { content: '↓'; }

/* Stats bar */
.stats-bar {
  background: var(--navy);
  padding: 2.2rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative; z-index: 2;
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 1rem;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  display: block;
}

/* ─── SECTIONS ─── */
.section { padding: 7rem 4rem; }
.section-dark { background: var(--navy-deep); color: #fff; }
.section-cream { background: var(--cream); }
.section-white { background: var(--warm-white); }

.section-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-dark .section-tag { color: var(--gold-light); }

h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}
h2.display em { font-style: italic; color: var(--gold); }
.section-dark h2.display em { color: var(--gold-light); }

/* ─── STORY ─── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.story-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.4rem;
}
.story-text p:last-child { margin-bottom: 0; }
.story-img {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: 1px;
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-img:hover img { transform: scale(1.04); }
.story-img-accent {
  position: absolute;
  bottom: -2rem; left: -2rem;
  width: 180px; height: 180px;
  border: 2px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}

/* ─── BRANDS ─── */
.brands-intro {
  max-width: 640px;
  margin: 0 auto 5rem;
  text-align: center;
}
.brands-intro p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.brand-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}
.brand-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  filter: brightness(0.55);
}
.brand-card:hover .brand-card-bg {
  transform: scale(1.06);
  filter: brightness(0.7);
}
.brand-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,50,0.9) 0%, transparent 55%);
  transition: opacity 0.4s;
}
.brand-card:hover .brand-card-overlay {
  opacity: 0.75;
}
.brand-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.brand-card:hover .brand-card-content { transform: translateY(0); }
.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.brand-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.brand-card:hover .brand-desc { max-height: 80px; }

/* ─── AWARDS ─── */
.awards-section {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.award-item {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(0,0,94,0.1);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.award-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,94,0.1);
  transform: translateY(-4px);
}
.award-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.award-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.award-body {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── PORTFOLIO / LOCATIONS ─── */
.locations-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.location-list { margin-top: 2rem; }
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,94,0.08);
}
.location-item:first-child { border-top: 1px solid rgba(0,0,94,0.08); }
.location-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 2.5rem;
  line-height: 1;
  margin-top: 0.1rem;
}
.location-name {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.location-brand {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.locations-visual {
  position: sticky; top: 8rem;
}
.locations-img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: 1px;
}
.locations-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ─── VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 3rem;
  row-gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.value-item { text-align: center; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(0,0,94,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.value-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CSR STRIP ─── */
.csr-strip {
  background: var(--cream);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.csr-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}
.csr-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
}

/* ─── CONTACT ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-detail {
  margin-bottom: 1.2rem;
}
.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  display: block;
}
.contact-detail-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.9rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select option { background: var(--navy-deep); }
.form-textarea { resize: vertical; min-height: 120px; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.form-status {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0.4rem;
  min-height: 1.2rem;
}
.form-status.success { color: var(--gold-light); }
.form-status.error { color: #E88A8A; }
.form-submit {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.38s; }

/* ─── COUNTER ─── */
[data-count] { display: inline; }





/* ─── PEOPLE & CULTURE ─── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.people-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,94,0.07);
  padding: 2.5rem;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
}
.people-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
.people-card-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}
/* ─── MISSION ─── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.mission-item { text-align: left; }
.mission-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.mission-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}
.mission-body {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ─── RECIPE FOR GOOD ─── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.recipe-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.recipe-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
.recipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
.recipe-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── DEMOGRAPHICS ─── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.demo-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 2px;
}
.demo-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  font-weight: 400;
}
.demo-bars { display: flex; flex-direction: column; gap: 1.4rem; }
.demo-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr 48px;
  align-items: center;
  gap: 1rem;
}
.demo-bar-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.demo-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.demo-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.25,0.1,0.25,1);
}
.demo-bar-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
}

/* ─── FOOD GALLERY ─── */
.food-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,94,0);
  transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(0,0,94,0.12); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
  .section { padding: 5rem 2rem; }
  .story-grid, .locations-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .story-img { height: 360px; }
  .locations-visual { position: static; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .food-gallery { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .people-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 0 2rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { height: 360px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .csr-strip { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}