:root {
  --ink: #0a0a0a;
  --paper: #f4f1ea;
  --accent: #ffcd00;
  --muted: #8f8a80;
  --line: rgba(244,241,234,0.12);
  --card: #181818;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.serif { font-family: 'Instrument Serif', serif; font-style: italic; text-transform: none; letter-spacing: 0; font-weight: 400; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.logo a { color: inherit; text-decoration: none; }
.logo span { color: var(--ink); background: var(--accent); padding: 2px 6px; margin-left: 2px; }
.nav-links { display: none; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--paper); text-decoration: none; }
.nav-links a:hover, .nav-links a.current { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--paper); color: var(--ink); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(60px, 12vw, 160px);
}
.hero h1 .accent {
  display: inline-block;
  background: var(--accent);
  padding: 0 12px;
  transform: rotate(-1deg);
}
.hero .sub {
  font-size: 18px;
  max-width: 460px;
  margin: 28px 0 40px;
  color: rgba(244,241,234,0.78);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-secondary { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-secondary:hover { background: var(--paper); color: var(--ink); }

/* HERO IMAGE BLOCK */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  border: 2px solid var(--accent);
}
.hero-visual .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,241,234,0.3);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--ink);
  padding: 12px 16px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

/* MARQUEE */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
  overflow: hidden;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after {
  content: '★';
  color: var(--accent);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION HEADER */
section { padding: 100px 0; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(44px, 7vw, 88px);
  margin-bottom: 48px;
  max-width: 900px;
}
.section-title .serif { color: var(--muted); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-photo {
  aspect-ratio: 3 / 4;
  background: #d8d3c7;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
}
.about-photo .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: rgba(244,241,234,0.78);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.stats-band {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band .stat-num { color: var(--accent); }
.stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ACCOLADES */
.accolades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .accolades-grid { grid-template-columns: 1fr 1fr; }
}
.accolade-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  background: var(--card);
  position: relative;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.accolade-card:hover { transform: translateY(-4px); background: var(--accent); color: var(--ink); border-color: var(--accent); }
.accolade-card:hover .accolade-source { background: var(--ink); color: var(--accent); }
.accolade-card:hover .accolade-list li { border-bottom-color: rgba(10,10,10,0.25); }
.accolade-card:hover .accolade-list li::before { color: var(--ink); }
.accolade-card:hover .accolade-list .year { color: var(--ink); opacity: 0.7; }
.accolade-source {
  display: inline-block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--ink);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}
.accolade-list {
  list-style: none;
}
.accolade-list li {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,241,234,0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.accolade-list li:last-child { border-bottom: none; }
.accolade-list li::before {
  content: '★';
  color: var(--accent);
  font-size: 14px;
  margin-top: 4px;
}
.accolade-list .year {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  color: var(--muted);
  margin-right: 4px;
  min-width: 54px;
}

/* TESTIMONIAL */
.testimonial {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.testimonial .section-label { color: rgba(244,241,234,0.5); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .testimonial-grid { grid-template-columns: 1.3fr 0.9fr; gap: 64px; }
}
.quote-block { position: relative; padding-top: 40px; }
.quote-mark {
  position: absolute;
  top: -40px;
  left: -12px;
  font-family: 'Instrument Serif', serif;
  font-size: 220px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
}
.quote-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  font-style: italic;
  position: relative;
  z-index: 2;
  color: var(--paper);
  margin-bottom: 32px;
}
.quote-source {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}
.quote-source .src-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.quote-source .src-sub {
  font-size: 13px;
  color: rgba(244,241,234,0.6);
  letter-spacing: 0.04em;
}
.testimonial-photo {
  aspect-ratio: 4 / 5;
  background: #1c1c1c;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--accent);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICES */
.services { background: var(--ink); color: var(--paper); }
.services .section-label { color: rgba(244,241,234,0.5); }
.services .section-title .serif { color: var(--accent); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--accent);
  padding: 40px 32px;
  position: relative;
  display: block;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--ink);
  color: var(--accent);
  border-color: var(--accent);
}
.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--ink);
  color: var(--accent);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.service-card.featured:hover::before { background: var(--accent); color: var(--ink); }
.service-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  color: rgba(10,10,10,0.4);
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(255,205,0,0.4); }
.service-name {
  font-size: 32px;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 15px;
  color: rgba(10,10,10,0.85);
  margin-bottom: 24px;
  min-height: 72px;
  transition: color 0.3s;
}
.service-card:hover .service-desc { color: rgba(255,205,0,0.85); }
.service-meta {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(10,10,10,0.15);
  border-bottom: 1px solid rgba(10,10,10,0.15);
  transition: color 0.3s, border-color 0.3s;
}
.service-card:hover .service-meta {
  color: var(--accent);
  border-top-color: rgba(255,205,0,0.3);
  border-bottom-color: rgba(255,205,0,0.3);
}
.service-list {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid rgba(10,10,10,0.15);
  transition: border-color 0.3s;
}
.service-card:hover .service-list { border-top-color: rgba(255,205,0,0.3); }
.service-list li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-list li::before {
  content: '→';
  color: var(--ink);
  font-weight: 700;
  transition: color 0.3s;
}
.service-card:hover .service-list li::before { color: var(--accent); }
.section-cta { text-align: center; margin-top: 56px; }

/* BOOKING */
.booking-inner {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 56px 40px;
  text-align: center;
}
.booking-inner h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 16px; color: var(--paper); }
.booking-inner h2 .serif { color: var(--accent); }
.booking-inner p { font-size: 17px; color: rgba(244,241,234,0.7); max-width: 560px; margin: 0 auto 32px; }
.calendly-inline-widget { margin-top: 24px; }

/* CONTACT */
.contact { background: var(--ink); color: var(--paper); }
.contact .section-label { color: rgba(244,241,234,0.5); }
.contact h2 { color: var(--paper); }
.contact h2 .serif { color: var(--accent); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  border: 1px solid rgba(244,241,234,0.2);
  padding: 32px 28px;
  transition: background 0.2s;
}
.contact-card:hover { background: rgba(244,241,234,0.05); }
.contact-card .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  margin-bottom: 12px;
}
.contact-card .value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.01em;
}
.contact-card a { color: var(--paper); text-decoration: none; }
.contact-card a:hover { color: var(--accent); }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(244,241,234,0.5);
  border-top: 1px solid rgba(244,241,234,0.1);
  padding: 32px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
