/* ========================================
   Ackeret Insurance Agency — Stylesheet
   Classic & Elegant · Forest Green + Off-White
   ======================================== */

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

:root {
  --forest-deep: #1A3A1A;
  --forest: #2C5F2D;
  --forest-light: #3D7A3F;
  --forest-muted: #4A8B4E;
  --off-white: #F5F0E8;
  --off-white-light: #FAF7F2;
  --cream: #EDE8DC;
  --sand: #D4CBB8;
  --text-dark: #1C1C1A;
  --text-mid: #3D3D3A;
  --text-light: #6B6B66;
  --text-muted: #94948E;
  --gold: #B8963E;
  --gold-light: #D4B86A;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(26, 58, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 58, 26, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 58, 26, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 58, 26, 0.14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

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

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

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow-line {
  width: 32px;
  height: 1.5px;
  background-color: var(--forest);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost:hover {
  background-color: var(--forest);
  color: var(--off-white);
  transform: translateY(-1px);
}

.btn-ghost-light {
  background-color: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(245, 240, 232, 0.4);
}

.btn-ghost-light:hover {
  background-color: rgba(245, 240, 232, 0.1);
  border-color: var(--off-white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 95, 45, 0.08);
  transition: var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
}

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

.logo-mark {
  color: var(--forest);
  flex-shrink: 0;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.logo--light .logo-sub {
  color: rgba(245, 240, 232, 0.7);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--forest);
  background-color: rgba(44, 95, 45, 0.06);
}

.nav-cta {
  background-color: var(--forest) !important;
  color: var(--off-white) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background-color: var(--forest-deep) !important;
  color: var(--off-white) !important;
}

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

.nav-toggle-bar {
  width: 22px;
  height: 1.5px;
  background-color: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--off-white) 0%, var(--cream) 50%, var(--off-white) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--forest) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--forest) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--forest) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.headline-accent {
  color: var(--forest);
  font-style: italic;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Stat Cards */
.hero-cards {
  position: relative;
  height: 480px;
}

.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44, 95, 45, 0.06);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stat-card--1 {
  top: 0;
  left: 0;
  width: 220px;
}

.stat-card--2 {
  top: 60px;
  right: 0;
  width: 220px;
}

.stat-card--3 {
  bottom: 80px;
  left: 40px;
  width: 220px;
}

.stat-card--4 {
  bottom: 0;
  right: 20px;
  width: 220px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ---------- Services ---------- */
.services {
  padding: 120px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: rgba(44, 95, 45, 0.1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(44, 95, 45, 0.08);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--forest);
  color: var(--off-white);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  transition: var(--transition);
}

/* ---------- About ---------- */
.about {
  padding: 120px 0;
  background-color: var(--off-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--forest);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.2;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  margin: 28px 0;
  border-radius: 2px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(44, 95, 45, 0.08);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---------- Why Us ---------- */
.why-us {
  padding: 120px 0;
  background-color: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    radial-gradient(circle at 30% 30%, var(--off-white) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, var(--off-white) 1px, transparent 1px);
  background-size: 48px 48px, 72px 72px;
  pointer-events: none;
}

.section-header--light .section-eyebrow {
  color: var(--gold-light);
}

.section-header--light .eyebrow-line {
  background-color: var(--gold-light);
}

.section-title--light {
  color: var(--off-white);
}

.section-subtitle--light {
  color: rgba(245, 240, 232, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background-color: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: var(--transition);
}

.why-card:hover {
  background-color: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.15);
  transform: translateY(-4px);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(245, 240, 232, 0.08);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 120px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(44, 95, 45, 0.1);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--forest);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 28px;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--forest);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 120px 0;
  background-color: var(--forest);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    radial-gradient(circle at 20% 80%, var(--off-white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--off-white) 1px, transparent 1px);
  background-size: 56px 56px, 40px 40px;
  pointer-events: none;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 50%, var(--forest-light) 100%);
  pointer-events: none;
}

.section-eyebrow--light {
  color: var(--gold-light);
}

.section-eyebrow--light .eyebrow-line {
  background-color: var(--gold-light);
}

.eyebrow-line--light {
  background-color: var(--gold-light) !important;
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--off-white);
  margin-bottom: 24px;
}

.cta-description {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.85;
  text-align: center;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 120px 0;
  background-color: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  margin: 28px 0;
  border-radius: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(44, 95, 45, 0.08);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-detail-link {
  font-size: 0.9375rem;
  color: var(--forest);
  transition: var(--transition);
}

.contact-detail-link:hover {
  color: var(--forest-deep);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrap {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44, 95, 45, 0.06);
}

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

.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background-color: var(--off-white);
  border: 1.5px solid rgba(44, 95, 45, 0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--forest);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.08);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%236B6B66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: rgba(44, 95, 45, 0.06);
  border: 1px solid rgba(44, 95, 45, 0.15);
  border-radius: var(--radius-md);
  color: var(--forest);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 20px;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--forest);
}

/* ---------- Map Section ---------- */
.map-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 58, 26, 0.2);
}

.map-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 20px;
}

.map-pin {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--forest);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.map-card-address {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--forest-deep);
  color: var(--off-white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-services a,
.footer-link {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-services a:hover,
.footer-link:hover {
  color: var(--off-white);
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-legal {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-cards {
    height: 320px;
    order: -1;
  }

  .stat-card {
    padding: 20px 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-card--1 { width: 180px; }
  .stat-card--2 { width: 180px; }
  .stat-card--3 { width: 180px; left: 20px; }
  .stat-card--4 { width: 180px; }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    height: 480px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--off-white);
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 16px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-cards {
    height: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    order: -1;
  }

  .stat-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
  }

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

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

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

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .map-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

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

  .hero-headline {
    font-size: 2.5rem;
  }

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

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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