@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --primary:        #7a0a0f;
  --primary-dark:   #5c0709;
  --primary-light:  #a01318;
  --accent:         #ec242c;
  --accent-hover:   #d41920;

  --ink:            #1a1a1a;
  --ink-70:         rgba(26,26,26,0.70);
  --ink-40:         rgba(26,26,26,0.40);
  --ink-10:         rgba(26,26,26,0.07);

  --cream:          #f5f1ea;
  --sand:           #e8e2d6;
  --stone:          #8a8378;
  --stone-light:    #bdb8b0;
  --white:          #ffffff;

  --hairline:       rgba(26,26,26,0.11);
  --hairline-light: rgba(245,241,234,0.14);

  --font-display:   'Inter Tight', sans-serif;
  --font-body:      'Inter', sans-serif;

  --text-xs:      clamp(0.75rem,  0.7rem  + 0.22vw, 0.875rem);
  --text-sm:      clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
  --text-base:    clamp(1rem,     0.92rem + 0.36vw, 1.125rem);
  --text-lg:      clamp(1.125rem, 1rem    + 0.55vw, 1.375rem);
  --text-xl:      clamp(1.375rem, 1.2rem  + 0.8vw,  1.75rem);
  --text-2xl:     clamp(1.75rem,  1.5rem  + 1.2vw,  2.5rem);
  --text-3xl:     clamp(2.25rem,  1.8rem  + 2vw,    4rem);
  --text-hero:    clamp(3rem,     4.5vw   + 1rem,   6.5rem);
  --text-display: clamp(3.25rem,  6vw     + 0.5rem, 8.75rem);

  --rhythm:      140px;
  --section-pad: var(--rhythm) 0;
  --gutter:      clamp(1.25rem, 4vw, 5rem);
  --gap:         clamp(1.25rem, 2.5vw, 2.5rem);

  --ease-out:    cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-std:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    180ms;
  --dur-base:    360ms;
  --dur-slow:    600ms;

  --radius-sm:   2px;
  --radius:      4px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  max-width: 65ch;
  line-height: 1.72;
  color: var(--ink-70);
}

.label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
}
.section-rule {
  width: 48px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    color           var(--dur-fast) var(--ease-out),
    border-color    var(--dur-fast) var(--ease-out),
    transform       var(--dur-fast) var(--ease-out);
  text-decoration: none;
  line-height: 1;
  border-radius: var(--radius-sm);
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  background-color: var(--ink);
  border-bottom: 1px solid var(--hairline-light);
  transition: background-color var(--dur-base) var(--ease-out);
}
.nav.scrolled {
  background-color: rgba(26,26,26,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  letter-spacing: -0.025em;
  color: var(--white);
  z-index: 201;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  position: fixed;
  inset: 0;
  background-color: var(--ink);
  z-index: 199;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--white);
  letter-spacing: -0.03em;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta { display: none; align-items: center; gap: 1.25rem; }
.nav-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-phone:hover { color: var(--accent); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition:
    transform var(--dur-fast) var(--ease-out),
    opacity   var(--dur-fast) var(--ease-out);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-top: 62px;
}
.hero-content {
  background-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, var(--primary) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-label { margin-bottom: 1.5rem; position: relative; }
.hero-heading {
  font-size: var(--text-display);
  color: var(--white);
  line-height: 0.93;
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-heading em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(245,241,234,0.72);
  max-width: 40ch;
  line-height: 1.52;
  margin-bottom: 2.75rem;
  position: relative;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.hero-vertical-cta {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--accent);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease-out);
  z-index: 10;
}
.hero-vertical-cta:hover { background-color: var(--accent-hover); }

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 44vh;
  background-color: var(--ink);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-hairline {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--hairline-light);
  z-index: 5;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background-color: var(--primary);
  padding: 2.25rem var(--gutter);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  align-items: center;
  justify-content: flex-start;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 1;
  min-width: 150px;
}
.trust-icon {
  width: 32px;
  height: 32px;
  color: rgba(245,241,234,0.75);
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.trust-item-text span {
  font-size: var(--text-xs);
  color: rgba(245,241,234,0.58);
  letter-spacing: 0.03em;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background-color: var(--ink);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
}
.marquee-item span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.85);
}
.marquee-item .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SPLIT (feature + about)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  align-items: stretch;
}
.split-media {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background-color: var(--sand);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.split:hover .split-media img { transform: scale(1.04); }

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) var(--gutter);
}
.split-body .label { margin-bottom: 1rem; }
.split-body h2 { margin-bottom: 1.25rem; }
.split-body p { margin-bottom: 1.75rem; }

.split-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: var(--text-sm);
  color: var(--ink-70);
  line-height: 1.55;
}
.split-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.62em;
}

.split--dark { background-color: var(--ink); }
.split--dark .split-body { background-color: var(--ink); }
.split--dark h2,
.split--dark h3 { color: var(--white); }
.split--dark p  { color: rgba(245,241,234,0.68); }
.split--dark .label { color: var(--stone-light); }
.split--dark .split-list li { color: rgba(245,241,234,0.68); }

.split--cream { background-color: var(--cream); }
.split--cream .split-body { background-color: var(--cream); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  padding: var(--section-pad);
  background-color: var(--sand);
}
.services-grid-header {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.services-grid-header .label { margin-bottom: 0.75rem; }
.services-grid-header h2 { max-width: 20ch; }

.services-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--stone-light);
}

.service-card {
  background-color: var(--sand);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.service-card:hover { background-color: var(--cream); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-thumb img { transform: scale(1.04); }

.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
}
.service-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.12;
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--ink-70);
  line-height: 1.62;
  max-width: none;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: color var(--dur-fast) var(--ease-out);
}
.service-link:hover { color: var(--accent); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background-color: var(--ink);
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
}
.stat-num .unit {
  font-size: 0.5em;
  color: var(--accent);
  letter-spacing: 0;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background-color: var(--accent);
  padding: clamp(4rem, 7vw, 8rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '24/7';
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 20rem);
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-band-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
}
.cta-band .label {
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.13em;
}
.cta-band h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 0.93;
}
.cta-band p {
  color: rgba(255,255,255,0.82);
  font-size: var(--text-lg);
  max-width: 48ch;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.cta-phone-large {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.cta-phone-large:hover { opacity: 0.82; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-pad);
  background-color: var(--ink);
}
.gallery .label { color: var(--stone-light); }
.gallery h2 { color: var(--white); }
.gallery-header { margin-bottom: clamp(2.5rem, 4vw, 4rem); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--ink-40);
}
.gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.6), transparent 55%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad);
  background-color: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info .label { margin-bottom: 0.75rem; }
.contact-info h2 { margin-bottom: 1.5rem; color: var(--ink); }
.contact-info p   { color: var(--ink-70); margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--hairline);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  min-width: 76px;
  padding-top: 0.15em;
}
.contact-detail-value {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.55;
}
.contact-detail-value a {
  color: var(--primary);
  transition: color var(--dur-fast) var(--ease-out);
}
.contact-detail-value a:hover { color: var(--accent); }

/* Form */
.contact-form-wrapper {
  background-color: var(--ink);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.contact-form-wrapper h3 {
  color: var(--white);
  font-size: var(--text-2xl);
  margin-bottom: 1.75rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--stone-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--white);
  padding: 0.875rem 1rem;
  font-size: var(--text-base);
  transition:
    border-color       var(--dur-fast) var(--ease-out),
    background-color   var(--dur-fast) var(--ease-out);
  outline: none;
  border-radius: var(--radius-sm);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background-color: rgba(255,255,255,0.1);
}
.form-group select option {
  background-color: var(--ink);
  color: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: var(--text-xs);
  color: #ff6b6b;
  margin-top: 0.2rem;
  display: none;
}
.form-error.visible { display: block; }
.form-success {
  padding: 1.25rem 1.5rem;
  background-color: rgba(122,10,15,0.35);
  border: 1px solid var(--primary-light);
  color: var(--cream);
  font-size: var(--text-sm);
  line-height: 1.6;
  display: none;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--ink);
  border-top: 1px solid var(--hairline-light);
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--hairline-light);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }
.footer-brand p {
  color: var(--stone);
  font-size: var(--text-sm);
  max-width: 38ch;
  line-height: 1.65;
}
.footer-nav-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(245,241,234,0.55);
  transition: color var(--dur-fast) var(--ease-out);
  line-height: 1.5;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-legal {
  font-size: var(--text-xs);
  color: var(--stone);
  line-height: 1.65;
}
.footer-legal a {
  color: var(--stone-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition:
    opacity   0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}
.fade-up    { transform: translateY(36px); }
.fade-left  { transform: translateX(-36px); }
.fade-right { transform: translateX(36px); }
.scale-in   { transform: scale(0.93); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1)  { transition-delay:   0ms; }
.stagger.visible > *:nth-child(2)  { transition-delay:  75ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 150ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 225ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 300ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 375ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 450ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 525ms; }

/* ============================================================
   BREAKPOINT 640px
   ============================================================ */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }

  .stats-inner { grid-template-columns: repeat(4, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 7;
  }
}

/* ============================================================
   BREAKPOINT 900px
   ============================================================ */
@media (min-width: 900px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    gap: 2.25rem;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-sm);
    letter-spacing: 0.01em;
  }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }

  .hero { grid-template-columns: 1fr 1fr; }
  .hero-image { min-height: auto; }
  .hero-vertical-cta { display: flex; }
  .hero-hairline { display: block; }

  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media { order: 2; }
  .split--reverse .split-body  { order: 1; }

  .services-items { grid-template-columns: repeat(4, 1fr); }

  .contact-inner { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ============================================================
   BREAKPOINT 1200px
   ============================================================ */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
  }
  .gallery-item { aspect-ratio: unset; height: 100%; }
  .gallery-item:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: unset;
  }

  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right, .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track { animation: none; }
  .split-media img,
  .gallery-item img,
  .service-thumb img { transition: none; }
}
