/* ============================================
   Classic Rods Inc. — Auto Repair Website
   Style: Classic & Elegant
   Palette: Teal + Slate Grey
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-teal-deep: #1B4D5E;
  --color-teal-mid: #2A6B7C;
  --color-teal-light: #3D8A9E;
  --color-teal-pale: #D4E8ED;
  --color-slate-dark: #1C2329;
  --color-slate-mid: #3A4A54;
  --color-slate: #5A6B76;
  --color-slate-light: #8A9BA8;
  --color-slate-pale: #D1DADF;
  --color-cream: #F5F2ED;
  --color-cream-light: #FAF8F5;
  --color-gold: #C8A96E;
  --color-gold-light: #D4BA85;
  --color-white: #FFFFFF;
  --color-black: #0A0A0A;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(28, 35, 41, 0.08);
  --shadow-md: 0 4px 16px rgba(28, 35, 41, 0.1);
  --shadow-lg: 0 8px 32px rgba(28, 35, 41, 0.12);
  --shadow-xl: 0 16px 48px rgba(28, 35, 41, 0.15);

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-slate-dark);
  background-color: var(--color-cream-light);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-teal-deep);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-slate-dark);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-slate);
  line-height: 1.6;
  max-width: 600px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-teal-deep);
  color: var(--color-white);
  border: 1.5px solid var(--color-teal-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-teal-mid);
  border-color: var(--color-teal-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--color-teal-deep);
  border: 1.5px solid var(--color-teal-deep);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--color-teal-deep);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-teal-deep);
  border: 1.5px solid var(--color-teal-deep);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-teal-deep);
  color: var(--color-white);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 0.9375rem;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 35, 41, 0.06);
  transition: all var(--transition-med);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-teal-deep);
  letter-spacing: -0.01em;
}

.logo-icon {
  color: var(--color-teal-deep);
}

.logo-light .logo-icon {
  color: var(--color-gold);
}

.logo-light .logo-text {
  color: var(--color-white);
}

/* --- Navigation --- */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-teal-deep);
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-teal-deep) !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
}

.nav-phone::after {
  display: none !important;
}

.nav-phone:hover {
  color: var(--color-teal-mid) !important;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-slate-dark);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  background: var(--color-cream-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-teal-deep) 0%, var(--color-teal-mid) 100%);
  opacity: 0.03;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--color-gold);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--color-slate-dark);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-headline .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-teal-deep);
  display: block;
  font-size: 0.85em;
  margin-top: 0.15em;
}

.hero-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-slate);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-slate-pale);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-slate-dark);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-slate-light);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-slate-pale);
}

/* --- Hero Visual (Asymmetric) --- */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 82%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 55%;
  height: 32%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-cream-light);
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent-bar {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* --- Scroll Indicator --- */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-slate-light);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  background: var(--color-cream-light);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-med);
}

.service-card:hover {
  border-color: var(--color-teal-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-teal-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--color-slate-dark);
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-slate);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 78%;
  height: 85%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 35%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-cream);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: var(--color-teal-deep);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.about-badge svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.about-content {
  max-width: 520px;
}

.about-content .section-title {
  margin-bottom: var(--space-lg);
}

.about-content > p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.about-values {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.value-item {
  padding-left: var(--space-lg);
  border-left: 2px solid var(--color-teal-pale);
}

.value-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
}

.value-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-slate);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.why-content .section-title {
  margin-bottom: var(--space-2xl);
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-md);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-teal-pale);
  line-height: 1;
  padding-top: 0.25rem;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-slate-dark);
}

.why-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-slate);
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.why-quote {
  position: absolute;
  bottom: -32px;
  left: -24px;
  right: -24px;
  background: var(--color-teal-deep);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.why-quote svg {
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.why-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-sm);
}

.why-quote span {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-teal-deep) 0%, var(--color-teal-mid) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-slate-dark);
}

.cta-actions .btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.cta-actions .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-teal-deep);
  border-color: var(--color-white);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-slate);
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--space-sm);
}

.contact-item dt {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-slate-dark);
  padding-top: 0.15rem;
}

.contact-item dt svg {
  color: var(--color-teal-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item dd {
  font-size: 0.9375rem;
  color: var(--color-slate);
  line-height: 1.65;
  padding-left: 2rem;
}

.contact-item dd a {
  color: var(--color-teal-mid);
  transition: color var(--transition-fast);
}

.contact-item dd a:hover {
  color: var(--color-teal-deep);
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-link {
  display: block;
  position: relative;
}

.map-link img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.map-link:hover img {
  transform: scale(1.03);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 77, 94, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast);
}

.map-link:hover .map-overlay {
  background: rgba(27, 77, 94, 0.8);
}

/* --- Contact Form --- */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-slate-pale);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9375rem;
  color: var(--color-slate);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-slate-mid);
  margin-bottom: 0.375rem;
  letter-spacing: 0.03em;
}

.required {
  color: var(--color-teal-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-slate-dark);
  background: var(--color-cream-light);
  border: 1.5px solid var(--color-slate-pale);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-teal-mid);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(42, 107, 124, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-slate-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--color-slate-light);
  text-align: center;
  margin-top: var(--space-sm);
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
}

.form-success svg {
  color: var(--color-teal-mid);
  margin-bottom: var(--space-md);
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.form-success .btn-ghost {
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-slate-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer-contact address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: var(--space-xl);
  }

  .hero-visual {
    height: 520px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .why-quote {
    left: -12px;
    right: -12px;
    bottom: -24px;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-cream-light);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-xl);
    gap: var(--space-md);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-med);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: var(--space-xl) 0;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    height: 400px;
    order: 1;
  }

  .hero-image-main {
    width: 100%;
    height: 100%;
  }

  .hero-image-accent {
    display: none;
  }

  .hero-accent-bar {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .about-image-stack {
    height: 400px;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-visual {
    order: -1;
  }

  .why-quote {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: var(--space-md);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .about-image-stack {
    height: 300px;
  }

  .about-img-main {
    width: 85%;
    height: 80%;
  }

  .about-img-float {
    width: 65%;
    height: 40%;
  }

  .about-badge {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .contact-form-wrap {
    padding: var(--space-md);
  }
}
