/* ===== Benchlyco — Design System ===== */
/* Based on Goaltender Sqfeet Tailwind v4 config */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

:root {
  /* Brand colors */
  --color-brand: #e11b12;
  --color-brand-dark: #b3140d;
  --color-brand-soft: #fdeceb;

  /* Neutrals */
  --color-ink: #16120e;
  --color-ink-soft: #4c4640;
  --color-muted: #8b847b;
  --color-line: #e8e0d4;
  --color-paper: #ffffff;
  --color-sand: #f5f1e9;
  --color-charcoal: #1b1712;
  --color-charcoal-2: #272119;

  /* Fonts */
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-display: 'Hanken Grotesk', system-ui, sans-serif;

  /* Spacing */
  --spacing: 0.25rem;

  /* Radius */
  --radius-lg: 0.5rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;
  --radius-3xl: 1.5rem;

  /* Transitions */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* Container */
  --container-max: 1280px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.5;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-paper);
  color: var(--color-ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* ===== Container ===== */
.container-x {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .container-x {
    padding-inline: 2rem;
  }
}

@media (min-width: 1280px) {
  .container-x {
    padding-inline: 2.5rem;
  }
}

/* ===== Typography ===== */
.font-serif {
  font-family: var(--font-serif);
}

.font-display {
  font-family: var(--font-display);
}

.font-sans {
  font-family: var(--font-sans);
}

.text-balance {
  text-wrap: balance;
}

.italic {
  font-style: italic;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 0.3s var(--ease-out-soft);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .site-header .header-inner {
    height: 5rem;
  }
}

.site-header .logo-wrap {
  display: inline-flex;
  align-items: center;
}

.site-header .logo-badge {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

.site-header .logo-badge img {
  height: 3.2rem;
  width: auto;
  max-width: none;
}

@media (min-width: 768px) {
  .site-header .logo-badge img {
    height: 4.5rem;
  }
}

.site-header nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .site-header nav.desktop-nav {
    display: flex;
  }
}

.site-header nav.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header.transparent nav.desktop-nav a {
  color: rgba(255, 255, 255, 0.75);
}

.site-header.transparent nav.desktop-nav a:hover {
  color: white;
}

.site-header.scrolled nav.desktop-nav a {
  color: var(--color-ink-soft);
}

.site-header.scrolled nav.desktop-nav a:hover {
  color: var(--color-ink);
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .site-header .phone-link {
    display: inline-flex;
  }
}

.site-header.transparent .phone-link {
  color: rgba(255, 255, 255, 0.8);
}

.site-header.scrolled .phone-link {
  color: var(--color-ink-soft);
}

.site-header .phone-link:hover {
  color: var(--color-brand);
}

.btn-tour {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-brand);
  color: white;
  transition: all 0.3s var(--ease-out-soft);
  box-shadow: 0 8px 30px -8px rgba(225, 27, 18, 0.5);
}

.btn-tour:hover {
  background: var(--color-brand-dark);
  box-shadow: 0 12px 40px -10px rgba(225, 27, 18, 0.6);
}

@media (min-width: 640px) {
  .btn-tour {
    display: inline-flex;
  }
}

/* Nav mega-dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 640px;
  max-width: 90vw;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-line);
  z-index: 60;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-content {
  flex: 1;
  padding: 1.5rem;
}

.nav-dropdown-header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted) !important;
  margin-bottom: 1rem;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.nav-dropdown-grid a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink) !important;
  transition: color 0.2s;
}

.nav-dropdown-grid a:hover {
  color: var(--color-brand) !important;
}

.nav-dropdown-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.nav-dropdown-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
  transition: gap 0.2s;
}

.nav-dropdown-cta a:hover {
  gap: 0.625rem;
}

.nav-dropdown-image {
  width: 240px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

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

.nav-dropdown-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

.nav-dropdown-image .image-text {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: white;
}

.nav-dropdown-image .image-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.nav-dropdown-image .image-sub {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.9;
}

/* Locations dropdown — narrower */
.nav-dropdown-locations .nav-dropdown-menu {
  width: 480px;
}

.nav-dropdown-locations .nav-dropdown-image {
  width: 200px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.site-header.transparent .menu-toggle {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Mobile menu open: header sits over the white full-screen menu, so the
   toggle must be dark (the white transparent-state style would vanish). */
.site-header.menu-open .menu-toggle {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--color-ink, #1a1a1a);
}

.site-header.scrolled .menu-toggle {
  border-color: var(--color-line);
  color: var(--color-ink);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: white;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu nav a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-ink);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.mobile-menu nav a:hover {
  background: var(--color-sand);
  color: var(--color-brand);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-brand);
  color: white;
  transition: all 0.3s var(--ease-out-soft);
  box-shadow: 0 8px 30px -8px rgba(225, 27, 18, 0.5);
}

.btn-primary:hover {
  background: var(--color-brand-dark);
  box-shadow: 0 12px 40px -10px rgba(225, 27, 18, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(225, 27, 18, 0.7);
  color: var(--color-brand);
  transition: all 0.3s var(--ease-out-soft);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-brand);
  color: white;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: white;
  color: var(--color-ink);
  transition: all 0.3s var(--ease-out-soft);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(22, 18, 14, 0.15);
  color: var(--color-ink);
  transition: all 0.3s var(--ease-out-soft);
}

.btn-ghost:hover {
  border-color: rgba(22, 18, 14, 0.4);
  background: rgba(22, 18, 14, 0.03);
}

/* Arrow icon in buttons */
.btn-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
  transform: translateX(0.25rem);
}

/* ===== Section helpers ===== */
.bg-sand { background: var(--color-sand); }
.bg-paper { background: var(--color-paper); }
.bg-charcoal { background: var(--color-charcoal); }
.bg-charcoal-2 { background: var(--color-charcoal-2); }
.text-ink { color: var(--color-ink); }
.text-ink-soft { color: var(--color-ink-soft); }
.text-muted { color: var(--color-muted); }
.text-white { color: white; }
.text-brand { color: var(--color-brand); }
.border-line { border-color: var(--color-line); }

/* ===== Section spacing ===== */
.section-pad {
  padding-block: 3.5rem;
}

@media (min-width: 768px) {
  .section-pad {
    padding-block: 5rem;
  }
}

/* ===== Eyebrow label ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  border: 1.5px solid var(--color-brand);
}

.eyebrow.ink-soft { color: var(--color-ink-soft); }
.eyebrow.white-70 { color: rgba(255, 255, 255, 0.7); }

/* ===== Card ===== */
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  transition: all 0.3s var(--ease-out-soft);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 27, 18, 0.3);
  box-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.22);
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-soft);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05), transparent);
}

.card-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand);
  backdrop-filter: blur(8px);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .card-body {
    padding: 2rem;
  }
}

.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-ink);
}

.card-body p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-ink-soft);
}

.card-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-ink);
}

.card-list li::before {
  content: '✓';
  margin-top: 0.125rem;
  color: var(--color-brand);
  font-weight: bold;
  flex-shrink: 0;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.75rem;
}

/* ===== Feature image (alternating) ===== */
.feature-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-soft);
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-content h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-ink);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .feature-content h2 {
    font-size: 2.5rem;
  }
}

.feature-content p {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-ink-soft);
}

/* ===== Stats ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
}

/* ===== Process steps ===== */
.process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  position: relative;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
}

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(225, 27, 18, 0.9);
}

.process-card h3 {
  font-family: var(--font-display);
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.process-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Sector pills ===== */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pill {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

/* ===== Location cards ===== */
.location-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
}

.location-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-soft);
}

.location-featured:hover img {
  transform: scale(1.05);
}

.location-featured .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35), transparent);
}

.location-featured .content {
  position: relative;
  padding: 1.75rem;
  color: white;
}

.location-badge {
  display: inline-flex;
  border-radius: 9999px;
  background: var(--color-brand);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-featured h3 {
  font-family: var(--font-serif);
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .location-featured h3 {
    font-size: 1.875rem;
  }
}

.location-featured p {
  margin-top: 0.5rem;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
}

.location-featured .view-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Coming soon card */
.location-soon {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  padding: 1.5rem;
}

.location-soon .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.location-soon .items {
  margin-top: 0.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.location-soon .item {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  cursor: pointer;
  transition: all 0.2s;
}

.location-soon .item:last-child {
  border-bottom: none;
}

.location-soon .item:hover .arrow-circle {
  border-color: rgba(225, 27, 18, 0.4);
  color: var(--color-brand);
}

.location-soon .item .name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-ink);
}

.location-soon .item .region {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--color-line);
  color: var(--color-muted);
  transition: all 0.2s;
}

/* ===== Enterprise CTA card ===== */
.enterprise-cta {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--color-line);
  background: linear-gradient(135deg, var(--color-charcoal), var(--color-charcoal-2));
  color: white;
}

.enterprise-cta-grid {
  display: grid;
}

@media (min-width: 1024px) {
  .enterprise-cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.enterprise-cta-image {
  position: relative;
  min-height: 280px;
}

@media (min-width: 1024px) {
  .enterprise-cta-image {
    min-height: 100%;
  }
}

.enterprise-cta-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enterprise-cta-image .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 23, 18, 0.6), transparent);
}

@media (min-width: 1024px) {
  .enterprise-cta-image .gradient {
    background: linear-gradient(to right, transparent, transparent, rgba(27, 23, 18, 1));
  }
}

.enterprise-cta-content {
  padding: 2rem;
}

@media (min-width: 768px) {
  .enterprise-cta-content {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .enterprise-cta-content {
    padding: 3.5rem;
  }
}

.enterprise-cta-content h2 {
  font-family: var(--font-display);
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .enterprise-cta-content h2 {
    font-size: 2.25rem;
  }
}

.enterprise-cta-content p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}

.enterprise-cta-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .enterprise-cta-list {
    grid-template-columns: 1fr 1fr;
  }
}

.enterprise-cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.enterprise-cta-list li::before {
  content: '✓';
  margin-top: 0.125rem;
  color: var(--color-brand);
  font-weight: bold;
  flex-shrink: 0;
}

.enterprise-cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Insights cards ===== */
.insights-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  transition: border-color 0.2s;
}

.insight-card:hover {
  border-color: rgba(225, 27, 18, 0.3);
}

.insight-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.insight-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-soft);
}

.insight-card:hover .img-wrap img {
  transform: scale(1.04);
}

.insight-card .badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand);
  backdrop-filter: blur(8px);
}

.insight-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.insight-card .body h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375;
  color: var(--color-ink);
}

.insight-card .body p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-ink-soft);
}

.insight-card .read-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.2s;
}

.insight-card:hover .read-link {
  color: var(--color-brand);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--color-line);
  background: var(--color-sand);
}

.site-footer .footer-top {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer .footer-top {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}

.site-footer .footer-headline {
  font-family: var(--font-serif);
  max-width: 56rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .site-footer .footer-headline {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .site-footer .footer-headline {
    font-size: 3rem;
  }
}

.footer-cta-card {
  display: block;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--color-line);
}

.footer-cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-soft);
}

.footer-cta-card:hover img {
  transform: scale(1.04);
}

.footer-cta-card .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25), transparent);
}

.footer-cta-card .content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
  color: white;
}

.footer-cta-card .title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer-cta-card .subtitle {
  margin-top: 0.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-top-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 3fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.footer-col ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col li a {
  display: inline-block;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--color-brand);
}

.footer-col .soon-tag {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(225, 27, 18, 0.7);
}

.footer-address {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-muted);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--color-line);
  padding-top: 1.75rem;
  padding-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom .links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom .links a {
  padding: 0.375rem 0;
  transition: color 0.2s;
}

.footer-bottom .links a:hover {
  color: var(--color-ink);
}

/* ===== Chat widget ===== */
.chat-widget {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
}

.chat-widget-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--color-brand);
  color: white;
  box-shadow: 0 4px 20px rgba(225, 27, 18, 0.3);
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}

.chat-widget-button:hover {
  transform: scale(1.05);
}

.chat-widget-popup {
  display: none;
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 340px;
  border-radius: 1.25rem;
  background: white;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 41;
}

.chat-widget-popup.open {
  display: block;
}

.chat-widget-popup-header {
  background: var(--color-charcoal);
  padding: 1.25rem 1.5rem;
}

.chat-widget-popup-header h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
}

.chat-widget-popup-header p {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.chat-widget-popup-body {
  padding: 0.5rem;
}

.chat-widget-option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--color-ink);
  transition: background 0.2s;
  cursor: pointer;
}

.chat-widget-option:hover {
  background: var(--color-sand);
}

.chat-widget-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  flex-shrink: 0;
}

.chat-widget-option-icon.whatsapp {
  background: #25D366;
  color: white;
}

.chat-widget-option-icon.call {
  background: var(--color-brand);
  color: white;
}

.chat-widget-option-icon.visit {
  background: var(--color-ink);
  color: white;
}

.chat-widget-option-icon.message {
  background: var(--color-charcoal-2);
  color: white;
}

.chat-widget-option-text {
  flex: 1;
}

.chat-widget-option-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
}

.chat-widget-option-sub {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.125rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--color-charcoal);
}

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

.hero .overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 23, 18, 0.92), rgba(27, 23, 18, 0.55), transparent);
}

.hero .overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 23, 18, 0.8), transparent, rgba(27, 23, 18, 0.15));
}

.hero .content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero .inner {
  max-width: 42rem;
}

.hero .eyebrow-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
}

.hero .eyebrow-hero::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  border: 1.5px solid var(--color-brand);
}

.hero h1 {
  font-family: var(--font-serif);
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.04;
  color: white;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero h1 .italic {
  font-style: italic;
}

/* Hero finder form */
.hero-finder {
  margin-top: 2.5rem;
  max-width: 36rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: white;
  padding: 0.5rem;
  box-shadow: 0 24px 70px -30px rgba(0, 0, 0, 0.55);
}

@media (min-width: 640px) {
  .hero-finder {
    border-radius: 9999px;
    padding: 0.375rem;
  }
}

.hero-finder .finder-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .hero-finder .finder-row {
    flex-direction: row;
    align-items: center;
  }
}

.finder-field {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  padding: 0.625rem 0.875rem;
}

@media (min-width: 640px) {
  .finder-field {
    border-radius: 9999px;
    padding: 0.375rem 0.875rem;
  }
}

.finder-field .icon {
  flex-shrink: 0;
  color: var(--color-brand);
}

.finder-field .field-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.finder-field .field-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.finder-field select {
  width: 100%;
  background: transparent;
  padding: 0.25rem 1.25rem 0.25rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
  border: none;
  outline: none;
  cursor: pointer;
}

.finder-divider {
  display: none;
}

@media (min-width: 640px) {
  .finder-divider {
    display: block;
    width: 1px;
    height: 1.75rem;
    background: var(--color-line);
  }
}

.finder-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 0.75rem;
  background: var(--color-brand);
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .finder-btn {
    margin-top: 0;
    border-radius: 9999px;
    flex-shrink: 0;
  }
}

.finder-btn:hover {
  background: var(--color-brand-dark);
}

.hero-location-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .hero-location-badge {
    display: inline-flex;
  }
}

/* ===== Page hero (non-home pages) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-charcoal);
  color: white;
  padding-top: 8rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 23, 18, 0.9), rgba(27, 23, 18, 0.6));
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero .breadcrumb {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  color: white;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
}

.page-hero .subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
}

/* ===== Solution cards grid (services page) ===== */
.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  transition: all 0.2s;
}

.solution-card:hover {
  border-color: rgba(225, 27, 18, 0.3);
}

.solution-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.solution-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-soft);
}

.solution-card:hover .img-wrap img {
  transform: scale(1.04);
}

.solution-card .badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand);
  backdrop-filter: blur(8px);
}

.solution-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.solution-card .body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-ink);
}

.solution-card .body p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
}

.solution-card .body .pricing {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
}

/* ===== Form ===== */
.enquiry-form {
  max-width: 36rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

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

.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
}

.form-field label .req {
  color: var(--color-brand);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--color-line);
  background: var(--color-sand);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-ink);
  transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-brand);
  background: white;
  box-shadow: 0 0 0 3px rgba(225, 27, 18, 0.1);
}

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

.form-submit {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-brand);
  color: white;
  transition: all 0.3s var(--ease-out-soft);
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 30px -8px rgba(225, 27, 18, 0.5);
}

.form-submit:hover {
  background: var(--color-brand-dark);
  box-shadow: 0 12px 40px -10px rgba(225, 27, 18, 0.6);
}

.form-note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #15803d;
}

.form-success.show {
  display: block;
}

/* ===== Amenities grid ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-ink);
}

.amenity-pill::before {
  content: '✓';
  color: var(--color-brand);
  font-weight: bold;
  font-size: 0.75rem;
}

/* ===== Section heading ===== */
.section-heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-ink);
  text-wrap: balance;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.75rem;
  }
}

.section-heading.white {
  color: white;
}

.section-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-ink-soft);
}

.section-sub.white-70 {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Alternating feature rows ===== */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .feature-rows {
    gap: 6rem;
  }
}

.feature-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.feature-row.reverse .feature-image {
  order: 2;
}

@media (min-width: 1024px) {
  .feature-row.reverse .feature-image {
    order: 2;
  }
  .feature-row.reverse .feature-content {
    order: 1;
  }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--color-line);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-soft);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .caption {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
}

/* ===== Locations grid ===== */
.locations-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* ===== Quick contact cards ===== */
.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  border-radius: 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  padding: 1.75rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-ink);
}

.contact-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
}

.contact-card a {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
}

/* ===== Form two-column layout ===== */
.form-section {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .form-section {
    grid-template-columns: 1fr 1fr;
  }
}

.form-info h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .form-info h2 {
    font-size: 2.5rem;
  }
}

.form-info p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-ink-soft);
}

/* ===== Other solutions (on solution detail pages) ===== */
.other-solutions {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .other-solutions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.other-solution-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  overflow: hidden;
  transition: all 0.2s;
}

.other-solution-card:hover {
  border-color: rgba(225, 27, 18, 0.3);
}

.other-solution-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.other-solution-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-soft);
}

.other-solution-card:hover .img-wrap img {
  transform: scale(1.04);
}

.other-solution-card .body {
  padding: 1.5rem;
}

.other-solution-card .body .tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.other-solution-card .body h3 {
  font-family: var(--font-serif);
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-ink);
}

.other-solution-card .body p {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-ink-soft);
}

.other-solution-card .body .link {
  margin-top: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.2s;
}

.other-solution-card:hover .body .link {
  color: var(--color-brand);
}

/* ===== What's included list ===== */
.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-ink);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--color-line);
}

.included-list li::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--color-brand-soft);
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e11b12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.included-list li:last-child {
  border-bottom: none;
}

/* ===== Scroll reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-soft), transform 0.6s var(--ease-out-soft);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Skyline banner section ===== */
.skyline-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.skyline-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.skyline-banner .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-charcoal), rgba(27, 23, 18, 0.8), rgba(27, 23, 18, 0.4));
}

.skyline-banner .content {
  position: relative;
  padding: 2rem;
}

@media (min-width: 768px) {
  .skyline-banner .content {
    padding: 3.5rem;
  }
}

/* ===== Responsive grid for solutions ===== */
.solutions-cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .solutions-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.pt-7 { padding-top: 1.75rem; }
.pb-10 { padding-bottom: 2.5rem; }
.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.hidden { display: none; }
.relative { position: relative; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.overflow-hidden { overflow: hidden; }
.flex-wrap { flex-wrap: wrap; }
.justify-end { justify-content: flex-end; }
.shrink-0 { flex-shrink: 0; }
