/* THE EVENT FIRM — Global Stylesheet */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; font-family: 'Inter', 'Helvetica Neue', sans-serif; font-size: 0.75rem; }

p { font-size: 1.1rem; line-height: 1.9; color: #444; }

.eyebrow {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 1rem;
}

.subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: #555;
  max-width: 620px;
}

/* ── Colors ───────────────────────────────────── */
:root {
  /* Brand Palette */
  --milk:    #FBF7F4;   /* lightest background */
  --oat:     #E5DED2;   /* section backgrounds, borders */
  --taupe:   #A39382;   /* accents, eyebrows, dividers */
  --mocha:   #685D54;   /* mid-tone, subtext, hover states */
  --charcoal: #232323;  /* primary dark, nav, headings */

  /* Mapped tokens */
  --black:        var(--charcoal);
  --white:        #ffffff;
  --off-white:    var(--milk);
  --mid-gray:     var(--taupe);
  --light-gray:   var(--oat);
  --dark-section: var(--charcoal);
  --accent:       var(--taupe);  /* eyebrows, dividers, accent elements */
}

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

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

section { position: relative; scroll-margin-top: 80px; }

/* Offset for fixed nav on non-hero pages */
.page-top { padding-top: 80px; }

/* ── Navigation ───────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(35, 35, 35, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: visible;
}
.nav-logo img {
  width: 120px;
  height: auto;
  display: block;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo-tagline {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }

.nav-phone {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-phone:hover { color: #fff; }

/* ── HAMBURGER ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    padding: 100px 40px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    font-size: 1.4rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
  }
  .nav-links a:hover { color: #fff; }
  .nav-links .nav-cta {
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 16px 24px;
    text-align: center;
    font-size: 0.8rem;
  }
  .nav-links .nav-phone {
    font-size: 1rem;
    color: var(--taupe);
  }
}

.nav-cta {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: #fff;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--oat);
  color: var(--charcoal) !important;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--black);
  color: #fff;
}
.btn-primary:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--black);
}
.btn-light:hover { background: var(--accent); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: #fff; }

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 160px;  /* clear fixed nav + breathing room */
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-content .subhead {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

/* Hero variant: shorter for interior pages */
.hero--short {
  height: 700px !important;
  min-height: unset;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 100px;
}

/* ── Section Spacing ──────────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.section-pad-lg { padding: 140px 0; }

/* ── Dark Section ─────────────────────────────── */
.section-dark {
  background: var(--dark-section);
  color: #fff;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark .eyebrow { color: var(--accent); }

/* ── Off-white Section ────────────────────────── */
.section-light { background: var(--off-white); }

/* ── Divider ──────────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
}

/* ── Service Cards ────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
}

.service-card {
  background: #fff;
  padding: 56px 40px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--off-white); }

.service-card .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  opacity: 0.4;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 28px;
}

.service-card .link-arrow {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.service-card .link-arrow:hover { gap: 14px; }

/* ── Split Section ────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split--reversed .split-content { order: 2; }
.split--reversed .split-image { order: 1; }

.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  min-height: 500px;
  background: #ccc;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Process Steps ────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-gray);
}

.process-step {
  background: #fff;
  padding: 48px 36px;
}

.step-number {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 20px;
}

/* ── Stats Row ────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
}

.stat-item {
  background: var(--off-white);
  padding: 56px 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--black);
}

.stat-label {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.stat-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  border: 1px solid var(--light-gray);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 24px;
}

.testimonial-role {
  display: block;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--taupe);
  margin-top: 4px;
}
.testimonial-author {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ── Full-Width Image Break ───────────────────── */
.image-break {
  height: 500px;
  background: #222;
  overflow: hidden;
  position: relative;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.image-break-text {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── Inquiry Form ─────────────────────────────── */
.inquiry-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-label {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-question {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 32px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.choice-btn {
  padding: 20px 24px;
  border: 1px solid var(--light-gray);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.15s;
}

.choice-btn:hover,
.choice-btn.selected {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: #fff;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--black); }

.form-field textarea { resize: vertical; min-height: 120px; }

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
}

.progress-dot {
  width: 20px;
  height: 2px;
  background: var(--light-gray);
  transition: background 0.2s;
}

.progress-dot.active { background: var(--black); }
.progress-dot.done { background: var(--accent); }

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.form-back {
  background: none;
  border: none;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  cursor: pointer;
  transition: color 0.2s;
}

.form-back:hover { color: var(--black); }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 0;
}

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
}

.footer-brand-tagline {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  white-space: nowrap;
}

.footer-col-title {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ── Content helpers ──────────────────────────── */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── Bullet list (branded) ────────────────────── */
.branded-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.branded-list li {
  font-size: 1rem;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.branded-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ── Placeholder images (for dev) ─────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--oat);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 900px) {
  .container, .container--narrow { padding: 0 24px; }
  .site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reversed .split-content,
  .split--reversed .split-image { order: unset; }
  .split-content { padding: 56px 24px; }
  .split-image { min-height: 300px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-name, .footer-brand-tagline { white-space: normal; }
  .choice-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .section-pad-lg { padding: 80px 0; }
}
