/*
Theme Name: The Elite Interior
Theme URI: https://example.com/the-elite-interior
Author: Codex
Description: Custom WordPress business theme for The Elite Interior, Hyderabad.
Version: 1.5.45
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: the-elite-interior
*/

:root {
  --elite-black: #001233;
  --elite-ink: #061a35;
  --elite-muted: #506078;
  --elite-line: #d9e2ef;
  --elite-cream: #f3f7fb;
  --elite-white: #ffffff;
  --elite-gold: #FD5D07;
  --elite-gold-dark: #d84b00;
  --elite-green: #001f4d;
  --elite-shadow: 0 18px 45px rgba(0, 18, 51, 0.12);
  --elite-radius: 8px;
  --elite-max: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  color: var(--elite-ink);
  background: var(--elite-white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  display: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--elite-max), calc(100% - 48px));
  margin: 0 auto;
}

.top-strip {
  background: var(--elite-black);
  color: var(--elite-white);
  font-size: 14px;
  overflow: hidden;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 0;
  overflow: hidden;
}

.top-strip__ticker {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.top-strip__ticker span {
  display: inline-block;
  min-width: max-content;
  animation: eliteTicker 24s linear infinite;
  will-change: transform;
}

.top-strip__message::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 12px 2px 0;
  content: "";
  background: var(--elite-gold);
  border-radius: 50%;
}

@keyframes eliteTicker {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(253, 93, 7, 0.22);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 248px;
  max-width: 23vw;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--elite-line);
  background: var(--elite-white);
  border-radius: 6px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--elite-black);
}

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

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  color: var(--elite-ink);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.is-active {
  color: var(--elite-gold-dark);
}

.nav-group {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 310px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.98));
  border: 1px solid rgba(253, 93, 7, 0.28);
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: 0.18s ease;
}

.nav-submenu::before {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--elite-white);
  border-left: 1px solid rgba(253, 93, 7, 0.28);
  border-top: 1px solid rgba(253, 93, 7, 0.28);
  transform: rotate(45deg);
}

.nav-submenu a {
  min-height: 48px;
  padding: 11px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-submenu a:hover,
.nav-submenu a:focus,
.nav-submenu a.is-active {
  color: var(--elite-black);
  background: rgba(253, 93, 7, 0.14);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--elite-white);
  background: var(--elite-gold-dark);
  border-radius: 5px;
  font-weight: 700;
  white-space: nowrap;
}

.section {
  padding: 76px 0;
}

.section--cream {
  background: var(--elite-cream);
}

.section--contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 18, 51, 0.94), rgba(0, 18, 51, 0.88)),
    url("assets/images/commercial-interiors.png") center/cover;
  color: var(--elite-white);
}

.section--contact .section__title,
.section--contact .contact-card h3 {
  color: var(--elite-white);
}

.section--contact .section__lead,
.section--contact .contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section--contact .section__eyebrow {
  color: var(--elite-gold);
}

.section--testimonials {
  position: relative;
  overflow: hidden;
  background: var(--elite-white);
  color: var(--elite-ink);
}

.section--clients .section__title {
  color: var(--elite-black);
}

.section--testimonials .section__eyebrow,
.section--clients .section__eyebrow {
  color: var(--elite-gold-dark);
}

.section--why {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 18, 51, 0.88), rgba(0, 18, 51, 0.78)),
    url("assets/images/false-ceiling-lighting.png") center/cover;
  color: var(--elite-white);
}

.section--why .section__title {
  color: var(--elite-white);
}

.section--why .section__eyebrow {
  color: var(--elite-gold);
}

.section--clients {
  color: var(--elite-ink);
  background: var(--elite-white);
}

.section__eyebrow {
  margin: 0 0 9px;
  color: var(--elite-gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section__title {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--elite-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
}

.section__lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--elite-muted);
  font-size: 18px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: var(--elite-white);
  overflow: hidden;
  background: var(--elite-black);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1120px, calc(100% - 48px));
  padding: 98px 0 130px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  position: absolute;
  right: max(24px, calc((100vw - var(--elite-max)) / 2));
  bottom: 118px;
  z-index: 2;
  display: grid;
  gap: 2px;
  max-width: 260px;
  padding: 18px 20px;
  color: var(--elite-white);
  background: rgba(0, 18, 51, 0.78);
  border: 1px solid rgba(253, 93, 7, 0.52);
  border-radius: var(--elite-radius);
  backdrop-filter: blur(12px);
}

.hero__badge strong {
  color: var(--elite-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.hero__badge span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.hero__kicker {
  margin: 0 0 12px;
  color: #FD5D07;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1060px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.04;
}

.hero p {
  max-width: 610px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1.2;
}

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

.btn--dark {
  color: var(--elite-white);
  background: var(--elite-black);
}

.btn--outline {
  color: var(--elite-white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.hero-services {
  position: relative;
  z-index: 2;
  margin-top: -88px;
}

.hero-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-card,
.project-card,
.why-card,
.testimonial-card,
.contact-card,
.stat,
.process-step,
.elite-form {
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.service-card:hover,
.project-card:hover,
.why-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.stat:hover,
.process-step:hover,
.elite-form:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 93, 7, 0.55);
  box-shadow: 0 24px 60px rgba(0, 18, 51, 0.18);
}

.feature-card {
  min-height: 168px;
  padding: 24px;
}

.feature-card__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--elite-white);
  background: var(--elite-green);
  border-radius: 6px;
  font-weight: 800;
}

.feature-card h3,
.service-card h3,
.why-card h3,
.contact-card h3 {
  margin: 0 0 9px;
  color: var(--elite-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.why-card p,
.contact-card p {
  margin: 0;
  color: var(--elite-muted);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  width: 82%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
}

.image-stack img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 285px;
  border: 9px solid var(--elite-white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  background: var(--elite-cream);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
}

.stat strong {
  display: block;
  color: var(--elite-black);
  font-size: 28px;
}

.stat span {
  color: var(--elite-muted);
  font-size: 14px;
}

.services-grid,
.projects-grid,
.why-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
}

.service-card img,
.project-card img {
  transition: transform 0.45s ease, opacity 0.3s ease;
}

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

.service-card img,
.project-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.service-card__body,
.project-card__body {
  padding: 24px;
}

.service-card ul {
  margin: 16px 0 20px;
  padding-left: 18px;
  color: var(--elite-muted);
}

.text-link {
  display: inline-flex;
  color: var(--elite-gold-dark);
  font-weight: 800;
}

.project-card {
  overflow: hidden;
}

.project-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.project-card p {
  margin: 0;
  color: var(--elite-muted);
}

.why-card,
.contact-card {
  padding: 25px;
}

.section--why .why-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 32px;
}

.section--why .why-card::after {
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 128px;
  height: 128px;
  content: "";
  background: rgba(253, 93, 7, 0.13);
  border-radius: 50%;
}

.why-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 15px;
  color: var(--elite-white);
  background: linear-gradient(135deg, var(--elite-black), var(--elite-green));
  border-radius: 7px;
  font-weight: 900;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.enquiry-stack {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.contact-panel {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-panel .contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--elite-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--elite-white);
  background: var(--elite-gold);
  border-radius: 6px;
  font-weight: 900;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.elite-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
}

.form-wrap > .elite-form,
.form-wrap > .enquiry-stack {
  height: 100%;
}

.form-wrap > .elite-form label:has(textarea),
.form-wrap > .enquiry-stack .elite-form label:has(textarea) {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
}

.form-wrap > .elite-form textarea,
.form-wrap > .enquiry-stack .elite-form textarea {
  height: 100%;
}

.section--contact .elite-form {
  border-color: rgba(253, 93, 7, 0.32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.elite-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.elite-form label {
  display: grid;
  gap: 7px;
  color: var(--elite-black);
  font-size: 14px;
  font-weight: 800;
}

.elite-form input,
.elite-form textarea,
.elite-form select {
  width: 100%;
  min-height: 47px;
  padding: 13px 14px;
  color: var(--elite-ink);
  background: #f8fbff;
  border: 1px solid var(--elite-line);
  border-radius: 5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.elite-form input:focus,
.elite-form textarea:focus,
.elite-form select:focus {
  outline: none;
  background: var(--elite-white);
  border-color: var(--elite-gold);
  box-shadow: 0 0 0 3px rgba(253, 93, 7, 0.18);
}

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

.notice {
  display: grid;
  gap: 5px;
  padding: 15px 17px;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 14px 36px rgba(16, 29, 24, 0.14);
}

.notice strong {
  display: block;
  font-size: 16px;
}

.notice span {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.88;
}

.notice--success {
  color: #1d5f39;
  background: #e9f7ee;
  border: 1px solid rgba(29, 95, 57, 0.2);
}

.notice--error {
  color: #8a2020;
  background: #fff0f0;
  border: 1px solid rgba(138, 32, 32, 0.2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 0;
}

.client-strip span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 16px;
  color: var(--elite-black);
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
  box-shadow: var(--elite-shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.client-strip span:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 93, 7, 0.55);
  box-shadow: 0 20px 45px rgba(0, 18, 51, 0.16);
}

.reveal-card {
  opacity: 0;
  transform: translate3d(-42px, 26px, 0);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: transform, opacity;
}

.reveal-card:nth-child(even) {
  transform: translate3d(42px, 26px, 0);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__content {
  animation: heroTextIn 0.9s ease both;
}

.hero__badge {
  animation: heroBadgeIn 0.9s ease 0.25s both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBadgeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card {
  padding: 25px;
}

.section--testimonials .testimonial-card {
  position: relative;
  min-height: 250px;
  color: var(--elite-ink);
  background: var(--elite-white);
  border-color: var(--elite-line);
  box-shadow: var(--elite-shadow);
}

.section--testimonials .testimonial-card::before {
  display: block;
  margin-bottom: 12px;
  color: var(--elite-gold);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.7;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--elite-muted);
}

.testimonial-card strong {
  color: var(--elite-black);
}

.section--testimonials .testimonial-card p,
.section--testimonials .testimonial-card span {
  color: var(--elite-muted);
}

.section--testimonials .testimonial-card strong {
  color: var(--elite-black);
}

.page-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  color: var(--elite-white);
  background: var(--elite-black);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 72px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.content-prose {
  max-width: 880px;
}

.content-prose h2,
.content-prose h3 {
  color: var(--elite-black);
  font-family: Georgia, "Times New Roman", serif;
}

.content-prose p,
.content-prose li {
  color: var(--elite-muted);
  font-size: 17px;
}

.process-step {
  position: relative;
  padding: 25px;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
}

.process-step strong {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--elite-white);
  background: var(--elite-gold-dark);
  border-radius: 5px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.process-step p {
  margin: 0;
  color: var(--elite-muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: var(--elite-black);
}

.site-footer::before {
  display: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: 34px;
  padding: 58px 0 38px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 15px;
  color: var(--elite-white);
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer p {
  margin: 0 0 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  font-size: 0;
}

.footer-brand img {
  width: 230px;
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-list a::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--elite-gold);
  border-radius: 50%;
  opacity: 0.75;
}

.footer-list a:hover {
  color: var(--elite-gold);
  transform: translateX(4px);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact-row > span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--elite-gold);
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 14px;
}

.footer-bottom span:last-child {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--elite-white);
  background: var(--elite-gold);
  border-radius: 999px;
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--elite-white);
  background: var(--elite-green);
  border-radius: 50%;
  box-shadow: var(--elite-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-actions a:hover,
.floating-actions a:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 18, 51, 0.2);
}

.floating-actions svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.floating-actions a:last-child {
  background: var(--elite-gold-dark);
}

.elite-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.64);
}

.elite-modal.is-open {
  display: flex;
}

.elite-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 30px;
  background: var(--elite-white);
  border: 1px solid var(--elite-line);
  border-radius: var(--elite-radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.elite-modal__panel h2 {
  margin: 0 0 8px;
  color: var(--elite-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.elite-modal__panel p:not(.section__eyebrow) {
  margin: 0 0 20px;
  color: var(--elite-muted);
}

.elite-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--elite-white);
  background: var(--elite-black);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .top-strip__inner {
    align-items: center;
  }

  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 210;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    left: 0;
    width: 100vw;
    padding: 34px 24px 32px;
    color: var(--elite-white);
    background:
      linear-gradient(180deg, rgba(0, 18, 51, 0.98), rgba(0, 31, 77, 0.98)),
      var(--elite-black);
    border-top: 2px solid var(--elite-gold);
    box-shadow: none;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.24s ease, opacity 0.24s ease;
    visibility: hidden;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav::before {
    display: block;
    margin: 0 0 18px;
    padding: 0 52px 16px 0;
    color: var(--elite-gold);
    content: "The Elite Interior";
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
  }

  .main-nav a {
    justify-content: space-between;
    min-height: 46px;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 15px;
  }

  .main-nav a:hover,
  .main-nav a:focus,
  .main-nav a.is-active {
    color: var(--elite-gold);
  }

  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    margin: 6px 0 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(253, 93, 7, 0.22);
    border-radius: 8px;
  }

  .nav-submenu a {
    min-height: 42px;
    color: rgba(255, 255, 255, 0.74);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .nav-submenu::before {
    display: none;
  }

  .header-cta {
    display: none;
  }

  body.nav-open .menu-toggle {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 520;
    background: rgba(0, 18, 51, 0.95);
    border-color: var(--elite-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  }

  body.nav-open .menu-toggle span {
    opacity: 0;
  }

  body.nav-open .menu-toggle::before,
  body.nav-open .menu-toggle::after {
    background: var(--elite-gold);
  }

  body.nav-open .menu-toggle::before {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-services__grid,
  .services-grid,
  .projects-grid,
  .why-grid,
  .contact-grid,
  .process-grid,
  .testimonial-grid,
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .form-wrap > .elite-form {
    height: auto;
  }

  .form-wrap > .elite-form textarea {
    height: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--elite-max));
  }

  .top-strip {
    font-size: 13px;
  }

  .site-header__inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand__logo {
    width: 166px;
    max-width: calc(100vw - 98px);
    height: 42px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__content {
    padding: 62px 0 170px;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero__badge {
    left: 14px;
    right: 14px;
    bottom: 42px;
    max-width: none;
  }

  .hero-services {
    margin-top: 0;
    padding-top: 24px;
    background: var(--elite-cream);
  }

  .hero p,
  .section__lead {
    font-size: 16px;
  }

  .button-row {
    width: 100%;
  }

  .button-row .btn {
    flex: 1 1 100%;
  }

  .hero-services__grid,
  .services-grid,
  .projects-grid,
  .why-grid,
  .contact-grid,
  .process-grid,
  .testimonial-grid,
  .footer-top,
  .elite-form__row,
  .stats,
  .client-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-services {
    padding-bottom: 8px;
  }

  .feature-card,
  .service-card,
  .project-card,
  .why-card,
  .testimonial-card,
  .contact-card,
  .stat,
  .process-step,
  .client-strip span {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 0;
  }

  .service-card img,
  .project-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .section--testimonials .testimonial-card,
  .section--why .why-card {
    min-height: 0;
  }

  .section__title {
    font-size: 30px;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 14px;
    border: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .elite-form,
  .elite-modal__panel {
    padding: 20px;
  }

  .contact-panel .contact-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-actions a {
    width: 46px;
    height: 46px;
  }

  .floating-actions svg {
    width: 21px;
    height: 21px;
  }

  .reveal-card,
  .reveal-card:nth-child(even) {
    transform: translate3d(0, 12px, 0);
  }

  .reveal-card.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 22px, var(--elite-max));
  }

  .brand__logo {
    width: 150px;
    height: 38px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-services__grid,
  .services-grid,
  .projects-grid,
  .why-grid,
  .testimonial-grid,
  .client-strip {
    gap: 18px;
  }

  .feature-card,
  .service-card__body,
  .project-card__body,
  .why-card,
  .testimonial-card,
  .contact-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-card,
  .reveal-card:nth-child(even) {
    opacity: 1;
    transform: none;
  }
}
