/* ============================================
   Verve Productions — Stylesheet
   Backgrounds: vivid chartreuse + white, alternating full-bleed by section.
   Text: dark gray as the base "letras" color, with true near-black
   reserved for headlines, buttons, and hover/active states — the black
   is what gives punch and dynamism against the quieter gray body copy.
   Flat solid fills only — no gradients.
   ============================================ */

:root {
  --chartreuse: #f4f991;
  --white: #ffffff;

  /* near-black — reserved for headlines, wordmark, buttons, and
     hover/active/focus states: the "resaltar y dar dinamismo" color */
  --ink: #141414;

  /* dark gray — the base color for regular body copy / "letras" */
  --gray-dark: #333333;
  --gray-soft: rgba(51, 51, 51, 0.68);
  --gray-faint: rgba(51, 51, 51, 0.16);

  --chartreuse-wash: rgba(244, 249, 145, 0.35);

  --font-display: 'Anton', 'Arial Narrow Bold', sans-serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-dark);
  background: var(--white);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400; /* Anton only ships one (already-black) weight */
  font-style: normal;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 104px 32px;
}

.kicker {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker.center { justify-content: center; text-align: center; }
.kicker::before {
  content: '';
  width: 24px;
  height: 4px;
  background: var(--chartreuse);
  display: inline-block;
  flex: none;
}

.section-title {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  margin-bottom: 56px;
}
.section-title.center { text-align: center; }

/* Reusable "highlighted" annotation: solid chartreuse block, black text */
.about-bio-sub,
.contact-note {
  display: inline-block;
  background: var(--chartreuse);
  color: var(--ink);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 3px;
}

/* ============ BUTTONS ============ */
/* Idle: filled light / outlined, black label — buttons are calls to
   action, so they live in the "black" camp. Hover: solid black fill
   with a white label, the clearest dynamism cue on the page. */
.btn {
  display: inline-block;
  padding: 18px 42px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 0 var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-width: 2.5px;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 0 rgba(20, 20, 20, 0.25);
}
.full-width { width: 100%; text-align: center; }

/* ============ NAV — white chrome, chartreuse trim ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 4px solid var(--chartreuse);
  transition: background 0.3s ease;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}
.logo-mark span {
  background: var(--chartreuse);
  padding: 2px 6px;
  margin-left: 2px;
}

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

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-link:hover { border-color: var(--ink); color: var(--ink); }

.nav-cta {
  background: var(--chartreuse);
  color: var(--ink);
  border: 2px solid var(--chartreuse);
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 3px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============ HERO — full chartreuse block ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* CONTENT SWAP: replace with a real event photo, e.g.
     background-image: url('../images/hero.jpg'); background-size: cover; */
  background: var(--chartreuse);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  color: var(--gray-dark);
}

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 11vw, 9.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--ink);
}

.hero-letters {
  display: inline-block;
}

.hero-letter {
  display: inline-block;
  position: relative;
  transform-origin: bottom center;
  transform: translateY(-160%);
  animation: hero-letter-drop 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.hero-letter:nth-child(1) { animation-delay: 0.05s; }
.hero-letter:nth-child(2) { animation-delay: 0.13s; }
.hero-letter:nth-child(3) { animation-delay: 0.21s; }
.hero-letter:nth-child(4) { animation-delay: 0.29s; }
.hero-letter:nth-child(5) { animation-delay: 0.37s; }

/* Heavy, brick-like drop: fast direct fall (gravity ease-in), then a
   sharp squash on impact instead of an elastic bounce back up. */
@keyframes hero-letter-drop {
  0% {
    transform: translateY(-160%) scaleY(1) scaleX(1);
    box-shadow: 0 0 0 0 rgba(20, 20, 20, 0);
    animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }
  62% {
    transform: translateY(0) scaleY(1) scaleX(1);
    box-shadow: 0 0 0 0 rgba(20, 20, 20, 0);
    animation-timing-function: ease-out;
  }
  72% {
    transform: translateY(0) scaleY(0.82) scaleX(1.16);
    box-shadow: 0 6px 8px 0 rgba(20, 20, 20, 0.4);
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    box-shadow: 0 4px 6px -2px rgba(20, 20, 20, 0);
  }
}

.hero-fade-in {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-in-up 0.6s ease-out forwards;
  animation-delay: 0.85s;
}

@keyframes hero-fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-letter { transform: translateY(0); animation: none; box-shadow: none; }
  .hero-fade-in { opacity: 1; transform: translateY(0); animation: none; }
}

.hero-cities {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin: 18px 0 0;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--gray-dark);
  margin: 26px 0 46px;
  padding-bottom: 14px;
  display: inline-block;
  border-bottom: 3px solid var(--white);
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-dark);
  font-size: 1.4rem;
  z-index: 2;
  animation: bounce 2.2s infinite;
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============ VENUE BUILD — animated isometric 3D scene ============ */
.venue-build {
  background: #F2F0EA;
  padding: 0;
}

.venue-build-stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 82vh, 760px);
  overflow: hidden;
}

.venue-build-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.venue-build-caption {
  position: absolute;
  top: 74%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0;
  padding: 0 24px;
  max-width: min(80%, 640px);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.3;
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .venue-build-stage { height: clamp(360px, 62vh, 560px); }
  .venue-build-caption { font-size: clamp(1rem, 4vw, 1.4rem); }
}

/* ============ ABOUT — white block ============ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 84px 320px 132px 1fr;
  gap: 24px;
  align-items: center;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 1;
}

/* Hand-drawn "event floor plan" annotations — pure decoration, black
   pencil-style line art living in dedicated margin columns to the left
   and right of the photo, never on top of it. Each sketch's SVG is run
   through the #pencil-rough filter (defined once in the About section's
   markup) so lines wobble like an actual pencil instead of clean vector
   strokes. */
.about-sketch-col {
  position: relative;
  height: 400px;
  color: var(--gray-dark);
  pointer-events: none;
}

.about-sketch { position: absolute; }
.about-sketch svg {
  display: block;
  overflow: visible;
  filter: url(#pencil-rough);
}

.about-sketch-label {
  font-family: 'Architects Daughter', cursive;
  font-size: 0.92rem;
  line-height: 1.2;
  color: var(--gray-dark);
}

/* --- left column: compass + vertical dimension line --- */
.about-sketch-col--left { width: 84px; }

.about-sketch--compass {
  top: 18px;
  left: 14px;
  width: 50px;
}
.about-sketch--compass .about-sketch-label--n {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
}

.about-sketch--dims {
  top: 96px;
  left: 20px;
  width: 40px;
}
.about-sketch--dims .about-sketch-label--vert {
  position: absolute;
  top: 96px;
  left: -3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* --- right column: floor-plan tag + connector + round-table sketch --- */
.about-sketch-col--right { width: 132px; }

.about-sketch--plan {
  top: 6px;
  left: 0;
  width: 132px;
  transform: rotate(-1.5deg);
}
.about-sketch--plan .about-sketch-label--top {
  position: absolute;
  top: 8px;
  left: 12px;
}
.about-sketch--plan .about-sketch-label--bottom {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-size: 0.72rem;
  color: var(--gray-soft);
}

.about-sketch--connector {
  top: 90px;
  left: 56px;
  width: 20px;
  height: 130px;
}

.about-sketch--table {
  bottom: 4px;
  left: 4px;
  width: 122px;
  transform: rotate(2deg);
}
.about-sketch--table .about-sketch-label {
  position: absolute;
  bottom: -8px;
  left: 4px;
  transform: rotate(-2deg);
}

@media (max-width: 860px) {
  .about-sketch-col { display: none; }
}

.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 22px; line-height: 1.1; }
.about-bio { font-size: 1.05rem; color: var(--gray-dark); }
.about-bio-sub { margin-top: 16px; }

/* ============ SERVICES — white block ============ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--gray-faint);
  border: 1px solid var(--gray-faint);
}

.service-card {
  background: var(--white);
  padding: 38px 30px;
  border-top: 4px solid var(--chartreuse);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  background: var(--chartreuse-wash);
  transform: translateY(-4px);
  box-shadow: 0 14px 0 0 var(--gray-faint);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-soft);
  margin: 0;
}

/* ============ PORTFOLIO — white block ============ */
.portfolio { background: var(--white); }
.portfolio .section-inner { padding-bottom: 0; }

/* Static grid — the best, highest-resolution shots. Fixed, no filtering. */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.portfolio-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.portfolio-caption {
  margin: 16px 2px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.portfolio-caption::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 1px;
  flex: none;
  background: var(--chartreuse);
  border: 1px solid var(--ink);
}

/* Auto-scrolling reference-shot marquee — same continuous-scroll pattern
   as the Clients/Logos section (full-bleed strip, duplicated set, pause
   on hover, edge fades). */
.eventos-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 56px 0 0;
}

.eventos-marquee::before,
.eventos-marquee::after {
  content: '';
  position: absolute;
  top: 56px;
  bottom: 0;
  width: clamp(40px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.eventos-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
}
.eventos-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
}

.eventos-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: eventos-scroll 46s linear infinite;
}
.eventos-marquee:hover .eventos-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .eventos-track { animation: none; }
}

@keyframes eventos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.eventos-set {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
}

.eventos-item {
  flex: 0 0 auto;
  width: 260px;
  height: 190px;
}
.eventos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

@media (max-width: 720px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 24px; }
  .eventos-item { width: 200px; height: 150px; }
  .eventos-track { gap: 16px; }
  .eventos-set { gap: 16px; }
}

/* ============ TESTIMONIALS — white block ============ */
.testimonials { background: var(--white); color: var(--gray-dark); }
.testimonials .section-title { color: var(--ink); }

.testimonials-inner { position: relative; }

/* Decorative blueprint annotations flanking the carousel — anchored to
   section-inner's own edges (not the narrower carousel), so they only
   render once there's enough room on both sides to clear it safely. */
.testi-sketch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-dark);
  pointer-events: none;
  z-index: 1;
}
.testi-sketch--left { left: 0; }
.testi-sketch--right { right: 0; text-align: right; }

/* Reused sketch pieces (.about-sketch--plan/--connector) carry absolute
   offsets meant for the About section's positioning context; reset them
   to a normal stacked flow here, but keep position:relative (not static)
   so each piece's own absolutely-positioned label still anchors to it. */
.testi-sketch .about-sketch {
  position: relative;
  top: 0; left: 0; right: auto; bottom: auto;
  display: block;
  margin: 0 0 16px;
}
.testi-sketch--right .about-sketch { margin-left: auto; }
.testi-sketch .about-sketch--truss { width: 128px; }
.testi-sketch .about-sketch--booth { width: 116px; }
.testi-sketch .about-sketch--connector { width: 20px; height: 90px; margin: 4px auto 16px; }
.testi-sketch .about-sketch-label {
  position: static;
  display: block;
  margin-top: 6px;
}

@media (max-width: 1180px) {
  .testi-sketch { display: none; }
}

.testimonial-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 60px;
}

.quote {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 30px;
}
.quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 2.6em;
  line-height: 0.5;
  color: var(--chartreuse);
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 18px;
}

.client-name {
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}
.client-title { margin: 4px 0 0; font-size: 0.82rem; color: var(--gray-soft); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--gray-faint);
  color: var(--gray-dark);
  width: 44px; height: 44px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gray-faint);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.dot.active { background: var(--chartreuse); border-color: var(--ink); transform: scale(1.25); }

/* ============ CLIENTS — white block, auto-scrolling logo marquee ============ */
.clients { background: var(--white); }
.clients .section-inner { padding-bottom: 0; }

/* Full-bleed strip: breaks out of .section-inner's max-width so the
   marquee scrolls edge-to-edge, regardless of where this section sits
   in the page. */
.clients-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 48px 0 76px;
}

/* Soft fade at each edge so logos ease in/out instead of cutting off */
.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
}
.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 88px;
  animation: clients-scroll 34s linear infinite;
}
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.clients-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 88px;
}

.client-logo {
  flex: 0 0 auto;
  height: 110px;
  display: flex;
  align-items: center;
}
.client-logo img {
  height: 100%;
  width: auto;
  max-width: 380px;
  object-fit: contain;
}

/* A few source files (1 Hotel South Beach's tall/narrow crop, Palm Tree
   Club's logo with built-in padding around the wordmark) read visually
   smaller than the rest at the shared height, so they get a boost. */
.client-logo--lg {
  height: 150px;
}
.client-logo--lg img {
  max-width: 420px;
}

@media (max-width: 720px) {
  .clients-track { gap: 56px; }
  .clients-set { gap: 56px; }
  .client-logo { height: 80px; }
  .client-logo img { max-width: 260px; }
  .client-logo--lg { height: 108px; }
  .client-logo--lg img { max-width: 300px; }
}

/* ============ CONTACT — full chartreuse block ============ */
.contact { background: var(--chartreuse); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-intro h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 10px 0 20px; line-height: 1.1; color: var(--ink); }
.contact-intro p { color: var(--gray-dark); }

.contact-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.contact-details li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.contact-details a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.contact-details a:hover { text-decoration-color: var(--ink); color: var(--ink); }

/* on the chartreuse contact section, the chip needs a white surface to
   actually stand out instead of blending into the page background */
.contact-note { margin-top: 24px; background: var(--white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  padding: 38px;
  border: 1px solid var(--gray-faint);
  border-top: 5px solid var(--ink);
  border-radius: 4px;
}

.contact-form label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-soft);
  margin-top: 14px;
}
.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-faint);
  border-radius: 3px;
  background: var(--white);
  color: var(--gray-dark);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: inset 4px 0 0 0 var(--chartreuse);
}

.contact-form button { margin-top: 22px; }

.form-status {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  display: none;
}
.form-status.visible { display: block; }

/* ============ FOOTER — white block, chartreuse trim ============ */
.site-footer {
  background: var(--white);
  color: var(--gray-dark);
  border-top: 4px solid var(--chartreuse);
}
.site-footer .section-inner { padding: 48px 32px; }

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { font-size: 1rem; }

.footer-social {
  display: flex;
  gap: 22px;
}
.footer-social a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--ink); color: var(--ink); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-soft);
  margin: 8px 0 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--chartreuse);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 420px; }

  .main-nav .nav-link {
    width: 100%;
    padding: 16px 32px;
    border-bottom: 1px solid var(--gray-faint);
  }
  .main-nav .nav-cta {
    margin: 14px 32px;
    width: calc(100% - 64px);
    text-align: center;
  }

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

  .section-inner { padding: 72px 22px; }

  .carousel-arrow { display: none; }
  .testimonial-slide { padding: 0 8px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: 100%; max-width: 300px; text-align: center; }
}
