/* ── Tokens ── */
:root {
  --gold:       #B8963E;
  --gold-lt:    #D4AF6A;
  --teal:       #1E8A88;
  --teal-bright:#2BBDBA;
  --teal-dark:  #124E4D;
  --teal-deep:  #0D3635;
  --cream:      #F5F0E8;
  --cream-dk:   #EAE3D6;
  --ink:        #0F0E0C;
  --ink-lt:     #4A4640;
  --white:      #FFFFFF;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  transition: background 0.4s, padding 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  padding: 16px 56px;
  background: rgba(13, 54, 53, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta {
  color: var(--teal-bright) !important;
  border-bottom: 1px solid var(--teal-bright);
  padding-bottom: 2px;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: white;
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--teal-deep);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin-bottom: 36px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-bright); border-color: var(--teal-bright); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--teal-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(43,189,186,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(184,150,62,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(30,138,136,0.1) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 140px 40px 100px;
}
.hero-logo {
  height: 300px;
  width: auto;
  margin: 0 auto 36px;
}
.hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  margin: 0 auto 32px;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  margin-bottom: 52px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ── Intro Band ── */
.intro-band {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
}
.band-dot { opacity: 0.5; }

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--teal-bright); }

/* ── About ── */
#about { padding: 130px 0; background: white; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--ink);
}
.about-text p { color: var(--ink-lt); font-size: 0.95rem; margin-bottom: 18px; }
.about-text .btn { margin-top: 12px; }
.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--teal-dark);
  overflow: hidden;
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.img-fallback {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: white;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}
.about-stats {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--cream-dk);
  padding: 28px 32px;
  gap: 0;
}
.about-stat { flex: 1; text-align: center; }
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-lt);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-dk);
  flex-shrink: 0;
}

/* ── Machine ── */
#machine {
  background: var(--teal-deep);
  color: white;
  padding: 0 0 100px;
}
.machine-top {
  text-align: center;
  padding: 100px 40px 80px;
}
.machine-top h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
}
.machine-top .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 0; }
.machine-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* CSS Vending Machine */
.machine-visual { display: flex; justify-content: center; }
.machine-unit { perspective: 1000px; }
.machine-frame {
  width: 260px;
  background: linear-gradient(160deg, #2a3535 0%, #1a2525 100%);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08),
    4px 0 20px rgba(43,189,186,0.12),
    -4px 0 20px rgba(184,150,62,0.08);
}
.machine-top-panel {
  background: linear-gradient(90deg, #1a2525, #243535, #1a2525);
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.machine-logo-strip {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold-lt);
  text-transform: uppercase;
}
.machine-glass {
  position: relative;
  background: rgba(200, 235, 235, 0.04);
  border: 1px solid rgba(43,189,186,0.15);
  margin: 8px;
  padding: 12px 8px;
  min-height: 340px;
  overflow: hidden;
}
.machine-reflection {
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(105deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
}
.machine-shelves { display: flex; flex-direction: column; gap: 8px; height: 100%; }
.machine-shelf {
  display: flex;
  gap: 6px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pet-shelf { border-bottom: none; border-top: 2px solid rgba(43,189,186,0.2); margin-top: 4px; }
.product-slot {
  flex: 1;
  height: 54px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.product-slot::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.gold-slot  { background: linear-gradient(160deg, #c9a94a, #9a7530); }
.teal-slot  { background: linear-gradient(160deg, #2BBDBA, #1a7a78); }
.cream-slot { background: linear-gradient(160deg, #d9d0c0, #b0a898); }
.pet-slot   { background: linear-gradient(160deg, #3DBFBD, #156a68); height: 48px; }
.machine-bottom-panel {
  background: linear-gradient(90deg, #141e1e, #1e2e2e, #141e1e);
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.machine-slot {
  width: 60px;
  height: 18px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
}
.machine-keypad { display: flex; gap: 8px; }
.keypad-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  opacity: 0.6;
}

/* Machine Features */
.machine-features { display: flex; flex-direction: column; gap: 0; }
.machine-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
}
.feature-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--teal-bright);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.feature-body h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
}
.feature-body p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.feature-rule { height: 1px; background: rgba(255,255,255,0.06); }

/* ── Offerings ── */
#offerings { padding: 130px 0; background: var(--cream); }
#offerings h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  text-align: center;
}
#offerings .eyebrow { text-align: center; }
.section-sub {
  color: var(--ink-lt);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto 64px;
  text-align: center;
}
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--cream-dk);
  background: white;
}
.offering-header {
  padding: 32px 48px 24px;
  margin-bottom: 0;
}
.offering-header-gold { background: var(--gold); }
.offering-header-teal { background: var(--teal); }
.offering-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
}
.offering-col { border-right: 1px solid var(--cream-dk); }
.offering-col:last-child { border-right: none; }
.offering-list { padding: 0 48px 40px; }
.offering-list li {
  font-size: 0.9rem;
  color: var(--ink-lt);
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dk);
  display: flex;
  align-items: center;
  gap: 14px;
}
.offering-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 400; }
.offering-list-teal li::before { color: var(--teal-bright); }

/* ── Image Band ── */
.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 360px;
  overflow: hidden;
}
.image-band-item {
  overflow: hidden;
  position: relative;
  background: var(--teal-dark);
}
.image-band-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.image-band-item:hover img { transform: scale(1.04); filter: brightness(0.95) saturate(1); }
.image-band-teal {
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.image-band-quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: white;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Locations ── */
#locations { padding: 130px 0; background: var(--ink); color: white; text-align: center; }
#locations h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}
#locations .section-sub { color: rgba(255,255,255,0.5); }
.location-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
.location-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px;
  min-width: 140px;
  transition: border-color 0.25s, background 0.25s;
  cursor: default;
}
.location-type:hover {
  background: rgba(43,189,186,0.08);
  border-color: var(--teal-bright);
}
.location-icon { font-size: 1.8rem; }
.location-type span:last-child {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.locations-note { font-size: 0.88rem; color: rgba(255,255,255,0.4); }
.locations-note a { color: var(--teal-bright); border-bottom: 1px solid currentColor; }

/* ── Partner ── */
#partner { padding: 130px 0; background: white; }
.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.partner-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.partner-text p { color: var(--ink-lt); font-size: 0.93rem; margin-bottom: 28px; }
.partner-benefits { display: flex; flex-direction: column; gap: 14px; }
.partner-benefits li {
  font-size: 0.9rem;
  color: var(--ink-lt);
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-check {
  color: var(--teal-bright);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Form ── */
.partner-form {
  background: var(--cream);
  border: 1px solid var(--cream-dk);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-lt);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 15px;
  background: white;
  border: 1px solid var(--cream-dk);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; }
.form-group .btn { width: 100%; text-align: center; padding: 16px; font-size: 0.72rem; }

/* ── Footer ── */
footer { background: var(--teal-deep); color: white; }
.footer-top {
  padding: 80px 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { height: 80px; width: auto; filter: brightness(0) invert(1); margin: 0 auto; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
}
.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  padding: 20px 40px;
  text-align: center;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .two-col,
  .partner-inner,
  .machine-showcase { grid-template-columns: 1fr; gap: 56px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-col { border-right: none; border-bottom: 1px solid var(--cream-dk); }
  .image-band { grid-template-columns: 1fr 1fr; height: auto; }
  .image-band-item { height: 240px; }
}

@media (max-width: 640px) {
  #nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-logo { height: 220px; }
  .hero-tagline { font-size: 2.2rem; }
  .machine-frame { width: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .partner-form { padding: 28px 20px; }
  .about-stats { flex-direction: column; padding: 24px; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
  .image-band { grid-template-columns: 1fr; }
  .image-band-item { height: 200px; }
  .intro-band-inner { gap: 12px; }
  .band-dot { display: none; }
}
