/* ═══════════════════════════════════════════════════════
   APEX GARAGE — Obsidian Luxury  (data-style="26")
   Museum-grade dark aesthetic. Obsidian + burnished bronze.
   ═══════════════════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
  font-family: 'OTJubilee-Platinum';
  src: url('https://fonts.cdnfonts.com/css/ot-jubilee-platinum') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');
@import url('https://api.fonts.coollabs.io/css2?family=Switzer:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #151415;
  --surface: #242324;
  --accent: #7b5136;
  --accent-hover: #9a6a4a;
  --text: #f1eade;
  --text-muted: #3f383c;
  --border: #9faf9b;

  --accent-rgb: 123, 81, 54;
  --bg-rgb: 21, 20, 21;

  --heading-font: 'Cormorant Garamond', 'OTJubilee-Platinum', serif;
  --body-font: 'Switzer', 'Switzer-Regular', -apple-system, sans-serif;
  --heading-weight: 400;
  --body-weight: 400;

  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Word-break safety ── */
.service-card, .team-card, .hero h1, .section-header h2,
h1, h2, h3, h4, p {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ══════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(21, 20, 21, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(159, 175, 155, 0.08);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-logo span {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--body-font);
  font-size: 0.85rem;
  color: rgba(241, 234, 222, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

/* Hero gradient blob decor */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(123, 81, 54, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Stone texture overlay for hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(rgba(241,234,222,0.01) 0% 25%, transparent 0% 50%) 0 0 / 80px 80px,
    radial-gradient(ellipse at 20% 80%, rgba(123,81,54,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(159,175,155,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--border);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero h1 .line {
  display: block;
}

.hero h1 .line-sm {
  font-size: 0.5em;
  color: rgba(241, 234, 222, 0.5);
}

.hero h1 .line-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(241, 234, 222, 0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.hero-stat .number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--text);
  display: block;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(241, 234, 222, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ── SVG Section Shape ── */
.section-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-shape svg {
  width: 100%;
  height: auto;
}

.section-shape path {
  fill: none;
  stroke: var(--border);
  stroke-width: 0.5;
  opacity: 0.15;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--body-font);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 44px;
  min-width: 44px;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 81, 54, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(241, 234, 222, 0.15);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   SECTIONS (shared)
   ══════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 6rem 1.5rem;
  box-shadow: 0 1px 0 var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: rgba(241, 234, 222, 0.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════════════════════
   SERVICES — STICKY SEQUENCE
   ══════════════════════════════════════════════════════ */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  opacity: 0.08;
}

.service-card:hover::before {
  clip-path: inset(0 0 0 0);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card-content {
  padding: 1.5rem;
}

.service-card-number {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.service-card h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(241, 234, 222, 0.5);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE — FULL GRID
   ══════════════════════════════════════════════════════ */
.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-full-card {
  background: var(--surface);
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.service-full-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  opacity: 0.06;
}

.service-full-card:hover::before {
  clip-path: inset(0 0 0 0);
}

.service-full-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-full-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-full-text {
  padding: 1.5rem;
}

.service-full-text .service-num {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.service-full-text h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-full-text p {
  font-size: 0.9rem;
  color: rgba(241, 234, 222, 0.5);
  line-height: 1.6;
}

/* Services without photos */
.service-text-card {
  background: var(--surface);
  border-radius: 0.4rem;
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  border-left: 2px solid var(--accent);
}

.service-text-card:hover {
  background: rgba(36, 35, 36, 0.8);
  transform: translateX(4px);
}

.service-text-card .service-num {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.service-text-card h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-text-card p {
  font-size: 0.9rem;
  color: rgba(241, 234, 222, 0.5);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   GALLERY — CARD STACK
   ══════════════════════════════════════════════════════ */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-item {
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21,20,21,0.4) 100%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   USP / FEATURES
   ══════════════════════════════════════════════════════ */
.usp-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.usp-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: 0.4rem;
  position: relative;
  border-left: 2px solid var(--border);
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateX(4px);
  border-left-color: var(--accent);
}

.usp-card .usp-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
}

.usp-card h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.9rem;
  color: rgba(241, 234, 222, 0.5);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════ */
.cta-section {
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(123, 81, 54, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(241, 234, 222, 0.45);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   CONTACTS
   ══════════════════════════════════════════════════════ */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 0.4rem;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 81, 54, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-info h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-info p,
.contact-info a {
  font-size: 0.9rem;
  color: rgba(241, 234, 222, 0.6);
  transition: color var(--transition);
}

.contact-info a:hover {
  color: var(--accent);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(241, 234, 222, 0.05);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(241, 234, 222, 0.4);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(241, 234, 222, 0.25);
}

/* ══════════════════════════════════════════════════════
   REVIEW / TESTIMONIAL
   ══════════════════════════════════════════════════════ */
.review-section {
  background: var(--surface);
}

.review-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.review-block blockquote {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

.review-block blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════════════════════════
   SVG DECORATIVE SHAPES
   ══════════════════════════════════════════════════════ */
.decor-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.decor-shape-1 {
  top: -60px;
  right: -100px;
  width: 300px;
  opacity: 0.08;
}

.decor-shape-2 {
  bottom: -40px;
  left: -80px;
  width: 250px;
  opacity: 0.06;
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (subpages)
   ══════════════════════════════════════════════════════ */
.page-hero {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(123, 81, 54, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(241, 234, 222, 0.45);
  max-width: 500px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   DIVIDERS
   ══════════════════════════════════════════════════════ */
.divider {
  box-shadow: 0 1px 0 var(--bg);
  height: 1px;
  background: rgba(241, 234, 222, 0.04);
}

/* ══════════════════════════════════════════════════════
   DESKTOP (768px+)
   ══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav {
    padding: 1rem 3rem;
  }

  .nav-links {
    display: flex;
  }

  .burger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .section {
    padding: 8rem 3rem;
  }

  .hero {
    padding: 10rem 3rem 6rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
  }

  /* Services grid — 2 columns */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

  .gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1 / 4; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 4 / 9; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 1 / 6; grid-row: 3; }
  .gallery-item:nth-child(6) { grid-column: 6 / 9; grid-row: 3; }

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

  /* Contact list */
  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .page-hero {
    padding: 12rem 3rem 5rem;
  }

  .cta-section {
    padding: 8rem 3rem;
  }

  .footer {
    padding: 4rem 3rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ══════════════════════════════════════════════════════
   LARGE DESKTOP (1200px+)
   ══════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .nav {
    padding: 1.25rem 4rem;
  }

  .section {
    padding: 10rem 4rem;
  }

  .hero {
    padding: 12rem 4rem 8rem;
  }

  /* Services — 8-column alternating layout */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-card-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .service-card-img {
    width: 45%;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .service-card-content {
    width: 55%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-card:nth-child(even) .service-card-inner {
    flex-direction: row-reverse;
  }

  /* Services full page — alternating */
  .service-full-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .service-full-img {
    width: 45%;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .service-full-text {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-full-card:nth-child(even) .service-full-inner {
    flex-direction: row-reverse;
  }

  /* Gallery stays asymmetric 8-col */

  /* USP — 3 columns on large */
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero {
    padding: 14rem 4rem 6rem;
  }

  .cta-section {
    padding: 10rem 4rem;
  }

  .footer {
    padding: 4rem;
  }
}

/* ══════════════════════════════════════════════════════
   HOVER EFFECTS
   ══════════════════════════════════════════════════════ */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.usp-card:hover {
  box-shadow: var(--shadow);
}

/* ══════════════════════════════════════════════════════
   DECORATIVE PSEUDO-ELEMENTS
   ══════════════════════════════════════════════════════ */

/* Accent line on section headers */
.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
}

/* Corner accents on service cards */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-top: 1px solid rgba(159, 175, 155, 0.1);
  border-right: 1px solid rgba(159, 175, 155, 0.1);
  border-radius: 0 0.4rem 0 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.service-card:hover::after {
  border-color: rgba(123, 81, 54, 0.3);
}

/* ══════════════════════════════════════════════════════
   SCROLL-BEHAVIOR OVERRIDE
   ══════════════════════════════════════════════════════ */
/* Lenis handles smooth scrolling via JS — do NOT set scroll-behavior: smooth */
