:root {
  --navy: #0F1B2D;
  --navy-light: #1A2B42;
  --navy-mid: #152236;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dim: rgba(197, 165, 90, 0.15);
  --gold-glow: rgba(197, 165, 90, 0.3);
  --cream: #FAF7F2;
  --cream-dark: #EDE8DF;
  --text-dark: #0F1B2D;
  --text-body: #3A3A3A;
  --text-light: #CFCABE;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  background: rgba(15, 27, 45, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: 'Tenor Sans', serif;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.header-phone {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border: 1px solid var(--gold-dim);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.header-phone:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.header-phone:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 48px;
  min-height: 48px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 10px var(--gold-glow); }
.btn-primary:focus-visible { outline: 2px solid var(--cream); outline-offset: 4px; }

.btn-outline {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  padding: 16px 48px;
  min-height: 48px;
  border: 1px solid var(--gold);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid var(--cream); outline-offset: 4px; }

/* ===== SECTION UTILITIES ===== */
.section-label {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,45,0.88) 0%, rgba(15,27,45,0.75) 50%, rgba(15,27,45,0.92) 100%);
}
.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(197, 165, 90, 0.08);
  pointer-events: none;
}
.hero-circle-1 { width: 500px; height: 500px; }
.hero-circle-2 { width: 700px; height: 700px; border-color: rgba(197, 165, 90, 0.04); }

.hero-eyebrow {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero h1 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
.hero h1 .ampersand { color: var(--gold); font-style: italic; }

.hero-subtext {
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  margin-top: 24px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-cta {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 24px;
  background: var(--cream);
  text-align: center;
}
.about-inner {
  max-width: 680px;
  margin: 0 auto;
}
.about h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 32px;
}
.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
}

/* ===== SERVICES GRID (home page preview) ===== */
.services-preview {
  padding: 100px 24px;
  background: var(--white);
}
.services-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.services-preview h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 64px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,27,45,0.85) 100%);
  z-index: 1;
}
.service-card-content {
  position: relative;
  z-index: 2;
}
.service-card h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.service-card p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.4;
}

.services-cta {
  margin-top: 48px;
}

/* Text-based service cards (home page) */
.services-text-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-text-card {
  text-decoration: none;
  text-align: left;
  padding: 32px 24px;
  background: var(--cream);
  border: 1px solid rgba(15, 27, 45, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.service-text-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.service-text-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.stc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}
.stc-icon svg {
  width: 100%;
  height: 100%;
}
.service-text-card h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-text-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== SERVICES PAGE FULL ===== */
.page-hero {
  padding: 180px 24px 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,45,0.85) 0%, rgba(15,27,45,0.9) 100%);
}
.page-hero h1 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  line-height: 1.1;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
.page-hero h1 .ampersand { color: var(--gold); font-style: italic; }
.page-hero-sub {
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.services-full {
  padding: 80px 24px;
  background: var(--cream);
}
.services-full-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  background: var(--white);
  overflow: hidden;
  min-height: 320px;
}
.service-row:nth-child(even) .service-row-img { order: 2; }
.service-row:nth-child(even) .service-row-text { order: 1; }

.service-row-img {
  position: relative;
  overflow: hidden;
}
.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-row:hover .service-row-img img { transform: scale(1.03); }

.service-row-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row-text h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-row-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}
.service-row-text .service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 100px 24px;
  background: var(--navy);
}
.why-us-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.why-us h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 64px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.why-card {
  text-align: left;
  padding: 40px;
  background: var(--navy-light);
  border: 1px solid rgba(197, 165, 90, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  border-color: rgba(197, 165, 90, 0.3);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.why-card h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== SERVICE AREA ===== */
.service-area {
  padding: 100px 24px;
  background: var(--cream);
}
.service-area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-area-text { text-align: left; }
.service-area-text h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.service-area-text p {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}
.service-area-img {
  position: relative;
  overflow: hidden;
}
.service-area-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 80px 24px;
  background: var(--navy-mid);
  text-align: center;
}
.cta-band h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-band p {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== MAP ===== */
.map-section {
  padding: 0;
  background: var(--navy);
}
.map-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.map-section h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 32px;
  text-align: center;
}
#map {
  height: 400px;
  width: 100%;
  border: 1px solid rgba(197, 165, 90, 0.15);
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 24px;
  background: var(--cream-dark);
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.contact-text p {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Tenor Sans', serif;
  font-size: 1.4rem;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid var(--gold);
  transition: color 0.15s ease;
}
.contact-phone:hover { color: var(--gold); }
.contact-phone:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.contact-phone svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.contact-location {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 300;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 16px;
  border: 1px solid rgba(15, 27, 45, 0.15);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; }

.form-submit {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.form-submit:active { transform: translateY(0); }
.form-submit:focus-visible { outline: 2px solid var(--navy); outline-offset: 4px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  font-size: 0.95rem;
  padding: 12px 16px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(197, 165, 90, 0.15);
  color: var(--text-dark);
  border-left: 3px solid var(--gold);
}
.form-status.error {
  display: block;
  background: rgba(200, 50, 50, 0.1);
  color: #8B0000;
  border-left: 3px solid #8B0000;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 64px 24px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}
.footer-brand .footer-logo {
  font-family: 'Tenor Sans', serif;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: 'Tenor Sans', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.footer-contact h4 {
  font-family: 'Tenor Sans', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(207, 202, 190, 0.5);
  font-weight: 300;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade.visible { opacity: 1; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-text-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row:nth-child(even) .service-row-img { order: 1; }
  .service-row:nth-child(even) .service-row-text { order: 2; }
  .service-row-img { aspect-ratio: 16/9; }
  .service-row-text { padding: 32px; }
  .service-area-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header { padding: 16px 20px; }
  .logo { font-size: 1.1rem; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(15, 27, 45, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; }
  .nav-toggle { display: block; }
  .header-phone {
    font-size: 0.8rem;
    padding: 8px 16px;
    display: none;
  }
  .nav .header-phone { display: inline-block; }

  .hero { padding: 100px 20px 60px; }
  .hero-circle-1 { width: 300px; height: 300px; }
  .hero-circle-2 { width: 450px; height: 450px; }
  .about { padding: 80px 20px; }
  .services-preview { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-text-grid { grid-template-columns: 1fr 1fr; }
  .why-us { padding: 80px 20px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-card { padding: 32px 24px; }
  .contact { padding: 80px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-band { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-text-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
  .contact-phone { font-size: 1.1rem; }
  .page-hero { padding: 140px 20px 60px; }
}
