:root {
  --gold: #d29a2e;
  --gold-light: #e7b04a;
  --blue: #2f5f8f;
  --blue-light: #4a7db0;
  --navy: #24394d;
  --dark: #243443;
  --white: #ffffff;
  --off-white: #faf8f3;
  --cream: #f4efe6;
  --light-gray: #e7ebf0;
  --mid-gray: #aab3bf;
  --text: #334155;
  --text-muted: #667487;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 14px rgba(20, 35, 50, 0.06);
  --shadow: 0 10px 30px rgba(20, 35, 50, 0.10);
  --shadow-lg: 0 18px 48px rgba(20, 35, 50, 0.14);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 88px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(210, 154, 46, 0.22);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid #d5dde7;
}

.btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-light);
}

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf1f5;
  transition: all var(--transition);
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 999px;
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--blue);
  background: #f3f7fb;
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--blue-light) !important;
}

.header-phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 24px 70px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.93)),
    linear-gradient(135deg, #f8f5ee 0%, #f3f8fc 52%, #eef4f8 100%);
}

.hero-ambient,
.hero-wave,
.hero-pattern {
  pointer-events: none;
  position: absolute;
}

.hero-ambient {
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
}

.hero-ambient-1 {
  width: 420px;
  height: 420px;
  top: 40px;
  left: -80px;
  background: radial-gradient(circle, rgba(231, 176, 74, 0.25) 0%, rgba(231, 176, 74, 0.10) 44%, transparent 74%);
  animation: heroFloatOne 14s ease-in-out infinite;
}

.hero-ambient-2 {
  width: 500px;
  height: 500px;
  right: -140px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(74, 125, 176, 0.20) 0%, rgba(74, 125, 176, 0.08) 42%, transparent 76%);
  animation: heroFloatTwo 18s ease-in-out infinite;
}

.hero-pattern {
  inset: 0;
  background-image: radial-gradient(rgba(47, 95, 143, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 88%);
  animation: heroPatternMove 20s linear infinite;
}

.hero-wave {
  left: -10%;
  width: 120%;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(8px);
}

.hero-wave-1 {
  bottom: 110px;
  animation: waveDriftOne 16s ease-in-out infinite;
}

.hero-wave-2 {
  bottom: 30px;
  background: rgba(255, 255, 255, 0.24);
  animation: waveDriftTwo 22s ease-in-out infinite;
}

.hero-content,
.hero-badges {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.hero-logo {
  margin: 0 auto 24px;
  width: 120px;
  height: 120px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-eyebrow {
  display: inline-block;
  background: #fff7e8;
  color: #a56d08;
  border: 1px solid #f0ddb1;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 34px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #e4eaf0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.badge-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

@keyframes heroFloatOne {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(45px, 30px);
  }
}

@keyframes heroFloatTwo {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-35px, -28px);
  }
}

@keyframes heroPatternMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(24px);
  }
}

@keyframes waveDriftOne {
  0%, 100% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(20px) scaleX(1.03);
  }
}

@keyframes waveDriftTwo {
  0%, 100% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(-24px) scaleX(1.04);
  }
}

/* SERVICES */
.services-section {
  background: var(--off-white);
}

.services-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

.services-intro p {
  color: var(--text-muted);
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
}

.services-note {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.services-note h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.services-note p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.services-note ul {
  display: grid;
  gap: 8px;
}

.services-note li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.services-note li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
  box-shadow: var(--shadow-sm);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-card--featured {
  grid-column: span 2;
  background: #fffdf8;
  border: 1px solid #eedfb9;
  box-shadow: var(--shadow-sm);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #f5f8fb;
}

.service-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  color: var(--blue);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.service-meta span {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  background: #eef5fb;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
  padding: 7px 12px;
}

.service-bestfor {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #f9fbfc;
  border: 1px solid var(--light-gray);
}

.service-bestfor-title,
.service-includes-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-bestfor-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}

.service-list li {
  font-size: 0.84rem;
  color: var(--text);
  padding: 9px 12px;
  background: #f6f8fa;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.services-benefits {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.services-benefit {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
}

.services-benefit strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.services-benefit span {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ABOUT */
.about-section {
  background: var(--white);
}

.about-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 720px;
}

.about-highlight-card {
  opacity: 0;
  transform: translateY(20px);
}

.about-highlight-inner {
  height: 100%;
  background: #f7f9fb;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.about-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #eef5fb;
}

.about-highlight-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.about-highlight-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-highlight-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlight-inner ul {
  display: grid;
  gap: 8px;
}

.about-highlight-inner li {
  color: var(--text);
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.about-highlight-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 140px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

/* WORK */
.work-section {
  background: var(--off-white);
}

.work-intro {
  color: var(--text-muted);
  max-width: 760px;
  margin: -10px 0 28px;
  font-size: 0.98rem;
  line-height: 1.75;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  opacity: 0;
  transform: scale(0.97);
  box-shadow: var(--shadow-sm);
  background: #dfe5ee;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fcfcfa;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
}

.faq-item[open] {
  border-color: #d8e3ee;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* AREAS */
.areas-section {
  background: linear-gradient(135deg, #2a4358 0%, #324e66 100%);
}

.areas-section .section-label {
  color: #ffd47c;
}

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

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas-grid span {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(10px);
}

/* CONTACT */
.contact-section {
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 28px;
}

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

.contact-hours {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}

.contact-hours strong {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  background: #fbfcfd;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 95, 143, 0.10);
}

.form-disclaimer {
  font-size: 0.76rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.form-success {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
  padding: 12px 16px;
  background: rgba(21, 128, 61, 0.08);
  border: 1px solid rgba(21, 128, 61, 0.22);
  border-radius: var(--radius);
}

/* MAP */
.map-wrap {
  line-height: 0;
  background: var(--white);
}

.map-wrap iframe {
  display: block;
  width: 100%;
}

/* FOOTER */
.site-footer {
  background: #233544;
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 64px;
  width: auto;
}

.footer-tagline,
.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-phone {
  display: inline-block;
  font-weight: 700;
  color: #ffd47c;
  font-size: 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a:hover {
  color: #ffd47c;
}

.footer-links-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ANIMATION VISIBILITY */
.services-benefit.visible,
.stat.visible,
.gallery-item.visible,
.faq-item.visible,
.areas-grid span.visible,
.about-highlight-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-card--featured {
    grid-column: span 1;
  }

  .services-head,
  .about-top,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-benefits,
  .about-stats-wrap {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
    border-top: 1px solid var(--light-gray);
  }

  .main-nav a {
    font-size: 1.1rem;
    padding: 14px 32px;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

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

  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .services-benefits,
  .about-stats-wrap {
    grid-template-columns: 1fr;
  }

  .hero-ambient-1 {
    width: 280px;
    height: 280px;
  }

  .hero-ambient-2 {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 20px 64px;
  }

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

  .contact-form {
    padding: 24px;
  }

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

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