/* ═══════════════════════════════════════════════════
   OURO — Website Stylesheet
   Brand: Linen #FAF8F4 · Gold #9B8A6A · Warm Gray #A29C8F
          Navy #113048 · Charcoal #1C1C1C
   Fonts: Cormorant Garamond (headlines) · Neue Haas Grotesk (body)
   ═══════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ─── BRAND TOKENS ─── */
:root {
  --linen:      #FAF8F4;
  --gold:       #9B8A6A;
  --warm-gray:  #A29C8F;
  --navy:       #113048;
  --charcoal:   #1C1C1C;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('assets/fonts/NeueHaasGrotText-55Roman-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Snell Roundhand';
  src: url('assets/fonts/SnellRoundhand-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── BASE ─── */
body {
  background-color: var(--linen);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px 0;
  transition: background 0.45s ease, padding 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 0;
  border-bottom-color: rgba(155, 138, 106, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
}

.nav-logo-link { display: flex; align-items: center; }
.nav-logo {
  height: 20px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 52px;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links .nav-allocation {
  color: var(--gold);
}
.nav-links .nav-allocation:hover { color: var(--charcoal); }

/* hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
}

/* ── Mobile nav ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(155, 138, 106, 0.15);
}

.mobile-menu-logo {
  height: 18px;
  width: auto;
}

.mobile-close {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--warm-gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.mobile-link {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  padding: 18px 28px;
  transition: color 0.25s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-allocation { color: var(--gold); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #1a1a18;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.85;
}

/* Gradient: Linen fades in from bottom so headline is always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(250, 248, 244, 0.96) 0%,
    rgba(250, 248, 244, 0.42) 32%,
    rgba(250, 248, 244, 0.08) 58%,
    rgba(250, 248, 244, 0)    80%
  );
}

.hero-content {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  padding: 0 80px;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(46px, 7.2vw, 92px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  max-width: 840px;
}

.hero-sub {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Animated scroll line */
.scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 100%);
  animation: scrollDrop 2.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); }
  30%  { opacity: 1; transform: scaleY(1); }
  70%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(20px); }
}

/* ─── Gold rule between sections ─── */
.gold-rule {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  opacity: 0.3;
}

/* ══════════════════════════════════
   SHARED TYPOGRAPHY
══════════════════════════════════ */
.series-label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(155, 138, 106, 0.75);
  margin-bottom: 24px;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.section-headline.light {
  color: var(--linen);
}

.body-text p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.body-text p:last-child { margin-bottom: 0; }

.body-text.light p {
  color: rgba(250, 248, 244, 0.78);
}

/* ══════════════════════════════════
   VITALITY SECTION
══════════════════════════════════ */
.section-vitality {
  padding: 130px 0 140px;
  background: var(--linen);
}

.vitality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.vitality-img-frame {
  overflow: hidden;
  border-radius: 1px;
}

.vitality-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 8s ease;
}

.vitality-img-frame:hover .vitality-img {
  transform: scale(1.03);
}

.vitality-text-col {
  padding: 16px 0;
}

.format-tag {
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ══════════════════════════════════
   OUR STANDARD
══════════════════════════════════ */
.section-standard {
  padding: 130px 0 140px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.standard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.standard-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.standard-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.begin-line {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 248, 244, 0.45);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════
   PLACEMENT
══════════════════════════════════ */
.section-placement {
  padding: 130px 0 140px;
  background: var(--linen);
  border-top: 1px solid rgba(155, 138, 106, 0.18);
}

.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.placement-inner {
  max-width: none;
}

.placement-visual {
  overflow: hidden;
}

.placement-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.placement-visual:hover .placement-img {
  transform: scale(1.03);
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  column-gap: 0;
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  line-height: 2.2;
}

.ch-dot {
  margin: 0 16px;
  color: var(--gold);
  opacity: 0.5;
  font-size: 14px;
}

.not-everywhere {
  margin-top: 44px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(162, 156, 143, 0.65);
}

/* ══════════════════════════════════
   ENQUIRE
══════════════════════════════════ */
.section-enquire {
  padding: 130px 0 140px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.enquire-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.enquire-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.10;
  mix-blend-mode: luminosity;
}

.enquire-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.enquire-sub {
  margin-top: 18px;
  margin-bottom: 60px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Form */
.partner-form {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(162, 156, 143, 0.7);
}

.optional {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.6;
  font-size: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(162, 156, 143, 0.3);
  padding: 10px 0;
  color: var(--linen);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group select {
  cursor: pointer;
  color: rgba(250, 248, 244, 0.5);
}
.form-group select.has-value {
  color: var(--linen);
}
.form-group select option {
  background: var(--navy);
  color: var(--linen);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 244, 0.28);
  font-size: 13px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: none;
  line-height: 1.75;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.submit-btn {
  padding: 14px 44px;
  background: transparent;
  border: 1px solid rgba(155, 138, 106, 0.65);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.submit-btn:hover {
  border-color: var(--gold);
  background: rgba(155, 138, 106, 0.1);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-success {
  display: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--warm-gray);
  font-style: italic;
  letter-spacing: 0.03em;
}
.form-success.show { display: block; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 72px 80px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  height: 22px;
  width: auto;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-contact {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
}

.footer-disclaimer {
  font-family: var(--sans);
  font-size: 9px;
  color: rgba(162, 156, 143, 0.45);
  font-style: italic;
  max-width: 560px;
  line-height: 1.75;
}

.footer-legal {
  font-family: var(--sans);
  font-size: 9px;
  color: rgba(162, 156, 143, 0.35);
  font-style: italic;
}

.footer-portals {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.portal-divider {
  font-size: 9px;
  color: rgba(162, 156, 143, 0.25);
}

.partner-login {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(162, 156, 143, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.partner-login:hover { color: rgba(162, 156, 143, 0.7); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 52px; }
  .nav-inner  { padding: 0 52px; }
  .hero-content { padding: 0 52px; }
  .vitality-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .vitality-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vitality-img {
    height: 420px;
    object-position: center 20%;
  }

  .placement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .placement-visual {
    order: -1;
  }

  .placement-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .container  { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }
  .hero-content { padding: 0 28px; bottom: 10%; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  #nav        { padding: 22px 0; }
  #nav.scrolled { padding: 14px 0; }

  .section-vitality,
  .section-standard,
  .section-placement {
    padding: 60px 0 68px;
  }

  .section-enquire {
    padding: 60px 0 68px;
  }

  .section-headline {
    font-size: clamp(30px, 8vw, 44px);
  }

  .vitality-img { height: 300px; }

  .placement-img { height: 360px; object-position: center 40%; }

  .hero-image { object-position: 62% 30%; }

  .form-row { grid-template-columns: 1fr; gap: 32px; }

  .submit-btn { width: 100%; }

  .footer { padding: 56px 28px 44px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(36px, 11vw, 52px); }
  .channel-list { flex-direction: column; align-items: flex-start; }
  .ch-dot { display: none; }
  .channel-list span { line-height: 1.6; }
}
