/* ==========================================================
   VARIABLES & RESET
   ========================================================== */

:root {
  /* Colours */
  --bg-1:          #09090B;
  --bg-2:          #0E1118;
  --bg-3:          #131B2E;
  --gold:          #C9A96E;
  --gold-light:    #E2CC98;
  --gold-dim:      rgba(201, 169, 110, 0.28);
  --gold-subtle:   rgba(201, 169, 110, 0.07);

  --w100: rgba(255, 255, 255, 1.00);
  --w90:  rgba(255, 255, 255, 0.90);
  --w70:  rgba(255, 255, 255, 0.70);
  --w60:  rgba(255, 255, 255, 0.60);
  --w50:  rgba(255, 255, 255, 0.50);
  --w40:  rgba(255, 255, 255, 0.40);
  --w30:  rgba(255, 255, 255, 0.30);
  --w15:  rgba(255, 255, 255, 0.15);
  --w08:  rgba(255, 255, 255, 0.08);
  --w05:  rgba(255, 255, 255, 0.05);
  --w03:  rgba(255, 255, 255, 0.03);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:   1200px;
  --pad-h:   clamp(20px, 5vw, 64px);
  --pad-v:   clamp(80px, 10vw, 140px);

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0,  0.0,  0.2,  1.0);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  background: var(--bg-1);
  color: var(--w100);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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


/* ==========================================================
   TYPOGRAPHY UTILITIES
   ========================================================== */

.label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--w100);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--w100);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--w70);
  line-height: 1.85;
  font-weight: 300;
}

.section-footnote {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--w40);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
}


/* ==========================================================
   LAYOUT
   ========================================================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.section {
  padding: var(--pad-v) 0;
  position: relative;
}

.section--alt  { background: var(--bg-2); }
.section--dark { background: var(--bg-3); }
.section--bg   { background-size: cover; background-position: center; background-repeat: no-repeat; }

.section-intro {
  max-width: 680px;
  margin-bottom: 4rem;
}

.section-intro h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-1);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--w70);
  border: 1px solid var(--w15);
}
.btn--outline:hover {
  border-color: var(--w40);
  color: var(--w100);
  transform: translateY(-2px);
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition:
    background    0.45s var(--ease),
    border-color  0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--w08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-svg {
  display: block;
  flex-shrink: 0;
}

.logo-sep {
  display: block;
  width: 1px;
  height: 26px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w90);
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Desktop nav links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--w60);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--w100); }

.btn-nav {
  border: 1px solid var(--gold-dim) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  transition: all 0.2s !important;
}
.btn-nav:hover {
  background: var(--gold-subtle) !important;
  border-color: var(--gold) !important;
}

/* ---- Hamburger ---- */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--w70);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Mobile menu ---- */
.nav-mobile {
  display: none;
  background: rgba(9, 9, 11, 0.97);
  border-top: 1px solid var(--w08);
  padding: 0.5rem var(--pad-h) 2rem;
}
.nav-mobile.open { display: block; }

.nav-mobile ul { display: flex; flex-direction: column; }
.nav-mobile ul li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  color: var(--w60);
  border-bottom: 1px solid var(--w08);
  transition: color 0.2s;
}
.nav-mobile ul li:last-child a {
  border-bottom: none;
  color: var(--gold);
  font-weight: 500;
}
.nav-mobile ul li a:hover { color: var(--w100); }


/* ==========================================================
   HERO
   ========================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-1);
}

/* Background image layer , slightly scaled down for a zoomed-out feel */
.hero-bg-img {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(0.88);
  z-index: 0;
}

/* Vignette overlay , darkens edges and adds directional depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(9,9,11,0.82) 100%),
    linear-gradient(170deg, rgba(9,9,11,0.38) 0%, rgba(9,9,11,0.60) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
}

.hero-glow--1 {
  width: 70vw;
  height: 70vw;
  top: -25%;
  right: -25%;
  background: radial-gradient(circle, rgba(13, 22, 48, 0.65) 0%, transparent 65%);
  filter: blur(80px);
}

.hero-glow--2 {
  width: 45vw;
  height: 45vw;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.045) 0%, transparent 65%);
  filter: blur(80px);
  animation: glow2drift 18s ease-in-out infinite alternate;
}

@keyframes glow2drift {
  from { transform: translate(0, 0); opacity: 0.6; }
  to   { transform: translate(3%, -4%); opacity: 1; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.5) 25%,
    rgba(0,0,0,0.5) 75%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.5) 25%,
    rgba(0,0,0,0.5) 75%,
    transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: clamp(88px, 15vh, 130px);
  padding-bottom: clamp(36px, 6vh, 70px);
}

.hero-overline {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--w100);
  margin-bottom: 1.4rem;
  max-width: 860px;
  transform: none; /* spans handle motion; heading only fades */
}

.hero-heading[data-animate] { transform: none; }
.hero-heading[data-animate].is-visible { transform: none; }

.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* Per-word entrance animation */
.hero-heading .hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) scale(0.9);
  transition: none;
}

.hero-heading.is-visible .hw {
  animation: hero-word-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

.hero-heading.is-visible .hw--punct { animation-duration: 0.4s; }

@keyframes hero-word-in {
  0%  { opacity: 0; transform: translateY(22px) scale(0.9); text-shadow: none; }
  45% { text-shadow: 0 0 40px rgba(201, 169, 110, 0.65); }
  100% { opacity: 1; transform: translateY(0) scale(1); text-shadow: none; }
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: clamp(0.97rem, 1.45vw, 1.12rem);
  color: var(--w80);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.75rem;
  border-left: 2px solid rgba(201, 169, 110, 0.45);
  padding-left: 1.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Safety net for shorter laptop viewports so CTAs always stay in view */
@media (max-height: 760px) {
  .hero-content    { padding-top: 84px; padding-bottom: 28px; }
  .hero-heading    { font-size: clamp(2.1rem, 5.2vw, 4.2rem); margin-bottom: 1rem; }
  .hero-overline   { margin-bottom: 0.9rem; }
  .hero-rule       { margin-bottom: 1rem; }
  .hero-body       { margin-bottom: 1.25rem; line-height: 1.55; }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}

.hero-scroll-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w30);
}

.hero-scroll-bar {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--w30), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(0.5) translateY(10px); }
}


/* ==========================================================
   COMPARISON TABLE
   ========================================================== */

/* What We Do — icon + two-column table */
/* What We Do — icon + two-column table */
.wwd-table {
  margin-top: 3rem;
  border: 1px solid var(--w08);
  border-top: 2px solid rgba(201, 169, 110, 0.4);
  overflow: hidden;
}

.wwd-table-head {
  display: grid;
  grid-template-columns: 38% 62%;
  background: rgba(201, 169, 110, 0.05);
  border-bottom: 1px solid var(--w08);
}

.wwd-th {
  padding: 0.7rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.wwd-th:first-child { border-right: 1px solid var(--w08); }

.wwd-row {
  display: grid;
  grid-template-columns: 38% 62%;
  border-bottom: 1px solid var(--w08);
  transition: background 0.2s;
}

.wwd-row:last-child { border-bottom: none; }
.wwd-row:hover { background: var(--w03); }

.wwd-cell {
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
}

.wwd-cell--goal {
  gap: 0.75rem;
  border-right: 1px solid var(--w08);
}

.wwd-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.wwd-goal {
  font-size: 0.85rem;
  color: var(--w90);
  font-weight: 400;
  line-height: 1.35;
}

.wwd-cell--how {
  font-size: 0.82rem;
  color: var(--w60);
  line-height: 1.55;
  font-weight: 300;
}

.wwd-cell--how strong {
  color: var(--w90);
  font-weight: 500;
}



/* ==========================================================
   SERVICES
   ========================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--w08);
  border: 1px solid var(--w08);
}

.service-card {
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}
.service-card:hover { background-color: var(--bg-3); }

.service-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.07);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.service-inner {
  position: relative;
  z-index: 1;
}

.service-inner h3  { margin-bottom: 1.25rem; }

.service-intro-text {
  font-size: 0.95rem;
  color: var(--w60);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.75;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--w70);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.55;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 1rem;
  height: 1px;
  background: var(--gold);
}

.service-note {
  font-size: 0.85rem;
  color: var(--w40);
  font-style: italic;
  line-height: 1.65;
  padding-top: 1.5rem;
  border-top: 1px solid var(--w08);
}


/* ==========================================================
   GALLERY
   ========================================================== */

.gallery-section {
  padding: var(--pad-v) 0 0;
  background: var(--bg-1);
}

.gallery-header {
  margin-bottom: 1.5rem;
}

.gallery-header h2 { margin-top: 0.5rem; margin-bottom: 1.25rem; }

.gallery-lead {
  max-width: 560px;
}

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

.g-item {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: default;
  height: 300px;
}

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0);
  transition: background 0.4s ease;
}

.g-item:hover::after {
  background: rgba(9,9,11,0.15);
}

/* Football hero tile , full width, taller */
.g-item--tall {
  grid-column: 1 / -1;
  height: 360px;
  background-position: center 40%;
}

.g-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(9,9,11,0.55);
  padding: 0.35rem 0.7rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Gallery responsive */
@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .g-item--tall {
    grid-column: 1 / -1;
    height: 340px;
  }
  .g-item { height: 220px; }
}

@media (max-width: 480px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .g-item--tall {
    grid-column: 1 / -1;
    height: 260px;
  }
  .g-item { height: 180px; }
}


/* ==========================================================
   HOW WE WORK , IMAGE CARDS
   ========================================================== */

.hw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--w08);
  border: 1px solid var(--w08);
}

.hw-card {
  position: relative;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: background-color 0.3s;
}
.hw-card:hover { background-color: var(--bg-3); }

.hw-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.07);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hw-card-inner {
  position: relative;
  z-index: 1;
}

.hw-card-inner h3 {
  margin-bottom: 1rem;
}

.hw-card-inner p {
  font-size: 0.9rem;
  color: var(--w60);
  line-height: 1.7;
  font-weight: 300;
  max-width: 380px;
}

@media (max-width: 900px) {
  .hw-grid { grid-template-columns: 1fr; }
  .hw-card  { min-height: 280px; padding: 2rem; }
}


/* ==========================================================
   NETWORK , CAPABILITIES
   ========================================================== */

.net-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--w08);
  border: 1px solid var(--w08);
  margin-bottom: 2.5rem;
}

.net-card {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.net-card:hover { background: var(--bg-3); }

.net-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.net-title {
  font-size: 0.85rem;
  color: var(--w70);
  font-weight: 400;
  line-height: 1.5;
}

.net-statement {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--w70);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  max-width: 680px;
}

@media (max-width: 900px) {
  .net-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .net-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   ABOUT / BACKGROUND
   ========================================================== */

.about-body {
  max-width: 760px;
  margin-bottom: 3rem;
}

.about-body p {
  font-size: 1.05rem;
  color: var(--w60);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }

/* Default: single column stacked */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--w08);
  border: 1px solid var(--w08);
}

/* Horizontal row variant (used in Background section) */
.pillars--row {
  flex-direction: row;
}

.pillar {
  background: var(--bg-1);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.2s;
  flex: 1;
}
.pillar:hover { background: var(--bg-2); }

.pillar-mark {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--w70);
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .pillars--row { flex-direction: column; }
}


/* ==========================================================
   APPROACH
   ========================================================== */

.approach-section {
  border-top: 1px solid var(--w08);
  border-bottom: 1px solid var(--w08);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.approach-inner {
  max-width: 820px;
  margin: 0 auto;
}

.approach-section .label { justify-content: center; margin-bottom: 1.5rem; }

.approach-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--w90);
  quotes: none;
  margin-bottom: 2.5rem;
}

.approach-body {
  font-size: 1rem;
  color: var(--w50);
  font-weight: 300;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}


/* ==========================================================
   CONTACT
   ========================================================== */

.contact-section {
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-section .label { margin-bottom: 1rem; }

.contact-section h2 { margin-bottom: 1.5rem; }

.contact-body {
  font-size: 1rem;
  color: var(--w60);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-location {
  font-size: 0.75rem;
  color: var(--w30);
  letter-spacing: 0.06em;
}


/* ==========================================================
   CONTACT ICONS
   ========================================================== */

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  min-width: 110px;
  transition: transform 0.2s var(--ease);
}
.contact-icon-item:hover { transform: translateY(-3px); }

.contact-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s;
}
.contact-icon-item:hover .contact-icon-circle {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
}

.contact-icon-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-icon-value {
  font-size: 0.8rem;
  color: var(--w60);
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .contact-icons { gap: 1.25rem; }
  .contact-icon-item { min-width: 90px; }
}


/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
  border-top: 1px solid var(--w08);
  padding: 2.5rem 0;
  background: var(--bg-1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--w30);
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
}
.footer-nav a {
  font-size: 0.75rem;
  color: var(--w30);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--w70); }


/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }


/* ==========================================================
   RESPONSIVE , tablet
   ========================================================== */

@media (max-width: 1024px) {
  .hw-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 2.5rem 2rem; }
}


/* ==========================================================
   RESPONSIVE , mobile
   ========================================================== */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn  { display: flex; }


  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 600px) {
  .hero-ctas    { flex-direction: column; align-items: flex-start; }
  .contact-ctas { flex-direction: column; align-items: stretch; }
  .contact-ctas .btn { justify-content: center; }
  .footer-nav   { flex-wrap: wrap; gap: 1.25rem; }
  .wwd-table-head { grid-template-columns: 1fr; }
  .wwd-th:first-child { border-right: none; display: none; }
  .wwd-row { grid-template-columns: 1fr; }
  .wwd-cell--goal { border-right: none; border-bottom: 1px solid var(--w08); }
}


/* ==========================================================
   PROPOSAL MODAL
   ========================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9,9,11,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--w08);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s var(--ease-out);
}

.modal-backdrop.is-open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: 1px solid var(--w15);
  color: var(--w50);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--w40); color: var(--w90); }

.modal-heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--w100);
  margin-bottom: 0.75rem;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--w50);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Form layout */
.proposal-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row--2 { flex-direction: row; gap: 1.25rem; }
.form-row--2 .form-field { flex: 1; min-width: 0; }

.form-field { display: flex; flex-direction: column; gap: 0.45rem; }

.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w60);
}

.req { color: var(--gold); }

.form-optional {
  font-size: 0.68rem;
  color: var(--w30);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-field input,
.form-field textarea {
  background: var(--bg-1);
  border: 1px solid var(--w15);
  color: var(--w90);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--w30); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-actions { margin-top: 0.5rem; }

.btn--full { width: 100%; justify-content: center; }

.form-note {
  font-size: 0.72rem;
  color: var(--w30);
  text-align: center;
  line-height: 1.6;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--w100);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--w50);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .form-row--2 { flex-direction: column; }
  .modal { padding: 2rem 1.5rem; }
}
