/* ============================================================
   CANTORUM MEDIA — style.css
   Premium Event Venues & Luxury Hospitality
   Colour palette: Cream / Warm Taupe / Muted Gold / Deep Charcoal text
   ============================================================ */

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

:root {
  --cream:         #F5F0E8;
  --cream-dark:    #EDE7D9;
  --taupe:         #E2DAC8;
  --taupe-mid:     #D4C9B0;
  --parchment:     #F9F6F0;

  /* Text colours */
  --text-dark:     #1E1C18;
  --text-mid:      #4A4840;
  --text-light:    #7A7568;
  --text-cream:    #F5F0E8;

  /* Gold */
  --gold:          #B8955A;
  --gold-light:    #C9A96E;
  --gold-pale:     #D4B97A;

  /* Charcoal — used only for the hero overlay, dark panels, and text */
  --charcoal:      #1C1C1A;
  --charcoal-mid:  #2E2E2B;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:     1200px;
  --section-pad:   100px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.btn--outline {
  background: transparent;
  color: rgba(245, 240, 232, 0.9);
  border-color: rgba(245, 240, 232, 0.45);
}
.btn--outline:hover {
  border-color: rgba(245, 240, 232, 0.9);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--text-cream);
  border-color: var(--charcoal);
}
.btn--dark:hover {
  background: var(--charcoal-mid);
}

.btn--cream {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--parchment);
  border-color: var(--parchment);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.btn--large {
  padding: 20px 52px;
  font-size: 12px;
}

/* ============================================================
   NAVIGATION — cream/off-white background
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.96);
  border-bottom: 1px solid rgba(184, 149, 90, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.98);
  box-shadow: 0 1px 12px rgba(30, 28, 24, 0.08);
}

/* On hero, nav sits over dark image — keep cream but slightly more opaque */
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  height: 58px;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

/* On cream nav, show dark logo only */
.nav__logo-img--white { display: none; }
.nav__logo-img--dark  { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  transition: color 0.25s ease;
}

.nav__link:hover {
  color: var(--text-dark);
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  background: var(--gold);
  padding: 11px 22px;
  border: 1px solid var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav__cta:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav — cream background */
.nav__mobile {
  display: none;
  background: var(--cream);
  padding: 32px 40px 40px;
  border-top: 1px solid rgba(184, 149, 90, 0.18);
}

.nav__mobile.open { display: block; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav__mobile-link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.nav__mobile-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 28px;
  font-weight: 500;
}

/* ============================================================
   HERO — dark overlay, light text
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  margin-top: 82px; /* offset for fixed nav */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 16, 0.60) 0%,
    rgba(18, 18, 16, 0.52) 50%,
    rgba(18, 18, 16, 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero__location {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-cream);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.78);
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__br { display: none; }

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll span {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(245, 240, 232, 0.45);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184, 149, 90, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ============================================================
   APPROACH — cream background, dark text
   ============================================================ */
.approach {
  background: var(--cream);
  padding: var(--section-pad) 0 0;
}

.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.approach__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.approach__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.approach__body:last-child { margin-bottom: 0; }

/* Stats bar */
.stats {
  background: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 40px;
}

.stats__item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
}

.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.stats__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(74, 72, 64, 0.2);
  flex-shrink: 0;
}

/* ============================================================
   PROTOCOL — cream background, dark text
   ============================================================ */
.protocol {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.protocol__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.protocol__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.protocol__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.protocol__card {
  border: 1px solid rgba(74, 72, 64, 0.14);
  padding: 48px 36px 52px;
  background: var(--parchment);
  transition: border-color 0.3s ease;
}

.protocol__card:hover {
  border-color: var(--gold);
}

.protocol__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(74, 72, 64, 0.14);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.protocol__card-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.protocol__card-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ============================================================
   WHO WE SERVE — cream-dark background
   ============================================================ */
.serve {
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
}

.serve__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.01em;
}

.serve__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.serve__panel {
  background: var(--cream);
  padding: 60px 52px 64px;
}

/* Alt panel for hospitality — matches cream theme */
.serve__panel--alt {
  background: var(--parchment);
}

.serve__panel--alt .serve__panel-tag  { color: var(--gold); }
.serve__panel--alt .serve__panel-title { color: var(--text-dark); }
.serve__panel--alt .serve__panel-body  { color: var(--text-mid); }

.serve__panel-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.serve__panel-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.serve__panel-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* ============================================================
   HERITAGE — taupe/warm background (not black), dark text
   ============================================================ */
.heritage {
  background: var(--taupe-mid);
  padding: var(--section-pad) 0;
}

.heritage__inner {
  max-width: 760px;
}

.heritage .section-label {
  color: var(--gold);
}

.heritage__headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.heritage__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 22px;
}

.heritage__body:last-of-type {
  margin-bottom: 44px;
}

/* ============================================================
   TRUST STRIP — cream background
   ============================================================ */
.trust {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid rgba(74, 72, 64, 0.1);
  border-bottom: 1px solid rgba(74, 72, 64, 0.1);
}

.trust__inner { text-align: center; }

.trust__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
}

.trust__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
}

.trust__icon {
  font-size: 14px;
  color: var(--gold);
  line-height: 1;
}

.trust__text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  text-align: center;
}

/* ============================================================
   CONTACT — warm taupe background, dark text
   ============================================================ */
.contact {
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
}

.contact__inner {
  text-align: center;
  max-width: 700px;
}

.contact__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.contact__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 48px;
}

.contact__alt {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
}

.contact__email {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 149, 90, 0.35);
  padding-bottom: 1px;
  margin-left: 6px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact__email:hover {
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}

.contact__note {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

/* ============================================================
   FOOTER — cream/off-white background, dark text
   ============================================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(184, 149, 90, 0.2);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer__locations {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer__nav-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  transition: color 0.25s ease;
}

.footer__nav a:hover {
  color: var(--text-dark);
}

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

.footer__contact-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
}

.footer__email {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  transition: color 0.25s ease;
}

.footer__email:hover { color: var(--gold); }

.footer__calendly,
.footer__social {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  transition: color 0.25s ease;
}

.footer__calendly:hover,
.footer__social:hover { color: var(--text-dark); }

.footer__bottom {
  border-top: 1px solid rgba(74, 72, 64, 0.1);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__bottom p {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .protocol__cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .trust__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  .approach__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .serve__panels {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer__left {
    grid-column: 1 / -1;
  }
  .stats {
    flex-wrap: wrap;
    gap: 32px;
  }
  .stats__divider { display: none; }
  .stats__item    { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }

  .container { padding: 0 24px; }

  .hero { margin-top: 76px; }
  .hero__br { display: block; }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .serve__panel     { padding: 44px 32px 48px; }
  .protocol__card   { padding: 36px 28px 40px; }

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

  .footer__inner    { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom   {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }

  .stats__item { flex: 0 0 100%; }

  .nav__inner  { padding: 0 24px; }
  .nav__mobile { padding: 28px 24px 36px; }
}
