/* ==========================================================================
   Header
   ========================================================================== */
.headerPhone {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.headerPhone:hover {
  color: var(--color-blue-400);
}

.mobilePhone {
  display: block;
  padding: 10px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
  transition: color 0.25s var(--ease);
}

.mobilePhone:hover {
  color: var(--color-blue-600);
}
.siteHeader {
  position: relative;
}

.headerBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid black;
  z-index: 900;
}

.headerContainer {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 16px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  width: 158px;
  height: auto;
  transition: opacity 0.3s var(--ease);
}

.logo:hover img {
  opacity: 0.85;
}

.menuDesktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menuDesktop ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navLink {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: white;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.navLink::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue-600), var(--color-blue-400));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.navLink:hover,
.navLink.isActive {
  color: var(--color-blue-400);
}

.navLink:hover::after,
.navLink.isActive::after {
  transform: scaleX(1);
}

.menuMobileToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
}

.menuMobileToggle span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.mobileNavOverlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 940;
}

.mobileNavOverlay.isVisible {
  opacity: 1;
  visibility: visible;
}

.mobileNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86%, 380px);
  height: 100%;
  background: var(--color-surface);
  box-shadow: -8px 0 40px rgba(15, 17, 23, 0.18);
  z-index: 950;
  transition: right 0.35s var(--ease);
  padding: 72px 32px 32px;     /* era 100px 32px 40px */
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobileNav.isActive {
  right: 0;
}

.closeMenu {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--color-bg-alt);
  color: var(--color-ink);
  border-radius: 50%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.closeMenu:hover {
  background: var(--color-blue-600);
  color: #fff;
}

.mobileNav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobileLink {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-ink);
  padding: 10px 4px;
  border-bottom: 1px solid var(--color-line);
  transition: color 0.25s var(--ease);
}

.mobileLink:hover {
  color: var(--color-blue-600);
}

.mobileCta {
  display: inline-flex;
  margin-top: 18px;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ctaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-400));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ctaButton:hover {
  transform: translateY(-2px);
}

.ctaButtonGold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-gold-600), var(--color-gold-300));
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ctaButtonGold:hover {
  transform: translateY(-1px);
}

.ctaLarge {
  padding: 17px 36px;
  font-size: 15px;
}

.ctaGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.ctaGhost:hover {
  border-color: #fff;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.heroMedia {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.35) 45%, rgba(8, 12, 20, 0.78) 100%);
}

.heroContent {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 0px 100px;
  text-align: center;
  color: #fff;
}

.heroContent .eyebrow {
  color: var(--color-gold-300);
  justify-content: center;
}

.heroContent h1 {
  font-size: clamp(36px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.heroAccent {
  display: block;
  color: var(--color-gold-300);
  font-weight: 700;
}

.heroLead {
  margin: 26px auto 0;
  max-width: 900px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.heroActions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.scrollCue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.3s var(--ease);
}

.scrollCue:hover {
  opacity: 0.7;
}

.scrollCueDot {
  animation: scrollCueMove 1.8s var(--ease) infinite;
}

@keyframes scrollCueMove {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Highlights
   ========================================================================== */

.highlights {
  background: var(--color-surface);
  padding: 72px 0;
}

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

.highlightCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.highlightCard:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.highlightIcon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-blue-600);
}

.highlightCard h2 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.highlightCard p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-ink-soft);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  background: var(--color-bg-alt);
  padding: 110px 0;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
}

.aboutMedia {
  position: relative;
}

.aboutMedia img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.aboutMediaBadge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.aboutMediaBadge strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue-700);
  line-height: 1;
}

.aboutMediaBadge span {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.aboutText h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: 22px;
}

.aboutLead {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 16px;
  line-height: 1.55;
}

.aboutText > p:not(.aboutLead) {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-ink-soft);
  margin-bottom: 32px;
}

/* ==========================================================================
   Mid CTA
   ========================================================================== */

.midCta {
  background: linear-gradient(120deg, var(--color-blue-900), var(--color-blue-600));
  padding: 56px 0;
}

.midCtaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.midCtaInner h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  color: #fff;
  max-width: 520px;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  background: var(--color-surface);
  padding: 110px 0;
}

.sectionHead {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}

.sectionHead .eyebrow {
  justify-content: center;
}

.sectionHead h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}

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

.serviceCard {
  position: relative;
  padding: 34px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.serviceCard:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.serviceIndex {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-600);
  letter-spacing: 0.02em;
}

.serviceCard img {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  object-fit: contain;
}

.serviceCard h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 10px;
  padding-right: 30px;
}

.serviceCard p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ink-soft);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  background: linear-gradient(120deg, var(--color-blue-900), var(--color-blue-700) 55%, var(--color-blue-600));
  padding: 64px 0;
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.statCard {
  position: relative;
  padding: 0 20px;
}

.statCard:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(255, 255, 255, 0.18);
}

.statNumber {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--color-gold-300);
  line-height: 1;
}

.statLabel {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* ==========================================================================
   Feedback
   ========================================================================== */

.feedback {
  background: var(--color-bg-alt);
  padding: 70px 0 50px 0;
}

/*.feedbackCard {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  min-height: 220px;
  transition: opacity 0.4s var(--ease);
}

.feedbackCard.isFading {
  opacity: 0;
}

.userAvatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.feedbackQuote {
  font-size: 18px;
  line-height: 1.75;
  color: #666666;
}

.feedbackQuote::before {
  content: "\201C";
  color: var(--color-gold-500);
  font-size: 1.2em;
}

.feedbackQuote::after {
  content: "\201D";
  color: var(--color-gold-500);
  font-size: 1.2em;
}

.ratingStars {
  margin: 38px 0 32px;
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--color-gold-500);
}*/

.brandsRow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.brandsRow img {
  width: 108px;
  height: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.brandsRow img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  background: var(--color-surface);
  padding: 110px 0;
}

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

.galleryItem {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.galleryItem:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: var(--color-bg-alt);
  padding: 0 0 110px;
}

.contactCard {
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-400));
  border-radius: var(--radius-lg);
  padding: 88px 48px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contactCard h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  margin-bottom: 16px;
}

.contactCard p {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.formButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-gold-600), var(--color-gold-300));
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.formButton:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.siteFooter {
  background: rgba(15, 15, 15, 0.95);
  border-top: 1px solid var(--color-line);
  padding-top: 64px;
}

.footerTop {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: start;
    padding-bottom: 48px;
}

.footerBrand img {
  width: 150px;
  margin-bottom: 14px;
}

.footerBrand p {
  font-size: 13.5px;
  color: #d4d4d4;
  max-width: 240px;
  line-height: 1.6;
}

.footerPhone {
  display: inline-block;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #d4d4d4;
  transition: color 0.25s var(--ease);
}

.footerPhone:hover {
  color: var(--color-blue-400);
}

.footerNav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  width: max-content;
}

.footerNav a {
  position: relative;
  font-size: 14.5px;
  color: #d4d4d4;
  transition: color 0.25s var(--ease);
}

.footerNav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--color-blue-600);
  transition: width 0.3s var(--ease);
}

.footerNav a:hover {
  color: var(--color-blue-400);
}

.footerNav a:hover::after {
  width: 100%;
}

.footerSocials {
  display: flex;
  gap: 14px;
  justify-self: end;
}

.footerSocials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-blue-600);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footerSocials a:hover {
  background: var(--color-blue-600);
  color: #d4d4d4;
  transform: translateY(-3px);
}

.footerBottom {
  border-top: 1px solid rgb(37, 37, 37);
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #d4d4d4;
}

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

.legalLink {
  position: relative;
  font-size: 13px;
  color: #d4d4d4;
  transition: color 0.25s var(--ease);
}

.legalLink::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--color-blue-600);
  transition: width 0.3s var(--ease);
}

.legalLink:hover {
  color: var(--color-blue-400);
}

.legalLink:hover::after {
  width: 100%;
}

.legalDivider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 480px) {
  .footerLegal {
    flex-direction: column;
    gap: 10px;
  }

  .legalDivider {
    display: none;
  }
}

.markFooter {
  position: relative;
  color: var(--color-blue-600);
  font-weight: 600;
}

.markFooter::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--color-gold-500);
  transition: width 0.3s var(--ease);
}

.markFooter:hover::after {
  width: 100%;
}

/* ==========================================================================
   Go to top
   ========================================================================== */

.goToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-600);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(17, 98, 196, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 800;
}

.goToTop.isVisible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.goToTop:hover {
  background: var(--color-blue-700);
}

/* ==========================================================================
   Gallery — "View All" link
   ========================================================================== */

.galleryMore {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.ctaGhostDark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), gap 0.25s var(--ease);
}

.ctaGhostDark svg {
  transition: transform 0.25s var(--ease);
}

.ctaGhostDark:hover {
  color: var(--color-blue-600);
  border-color: var(--color-blue-600);
}

.ctaGhostDark:hover svg {
  transform: translateX(3px);
}

@media screen and (max-width: 720px) {
  .galleryMore {
    margin-top: 32px;
  }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].isRevealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 1200px) {
  .headerContainer {
    padding: 16px 48px;
  }

  .aboutGrid {
    gap: 48px;
  }

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

  .footerSocials {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media screen and (max-width: 1090px) {
  .menuDesktop {
    display: none;
  }

  .menuMobileToggle {
    display: flex;
  }

  .highlightsGrid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

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

  .aboutMedia {
    max-width: 420px;
    margin: 0 auto;
  }

  .aboutText {
    text-align: center;
    margin-top: 56px;
  }

  .aboutText > p:not(.aboutLead) {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }

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

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

@media screen and (max-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .heroContent {
    padding: 150px 32px 80px;
  }

  .footerTop {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footerBrand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footerNav ul {
    justify-content: center;
  }

  .footerSocials {
    grid-column: auto;
    justify-self: center;
  }

  .footerBottom {
    justify-content: center;
    text-align: center;
  }

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

    .footerTop {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .footerNav ul{
        width: 100%;
    }
}

@media screen and (max-width: 720px) {
  .headerContainer {
    padding: 14px 28px;
  }

  .logo img {
    width: 136px;
  }

  .hero {
    min-height: 620px;
  }

  .heroContent {
    padding: 140px 24px 72px;
  }

  .heroLead {
    font-size: 15.5px;
  }

  .heroActions {
    gap: 18px;
  }

  .highlights,
  .about,
  .services,
  .gallery {
    padding: 72px 0;
  }

  .feedback {
    background: var(--color-bg-alt);
    padding: 70px 0 30px 0;
  }

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

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

  .statCard:not(:last-child)::after {
    display: none;
  }

  .statCard:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contactCard {
    padding: 56px 28px;
  }
}

@media screen and (max-height: 600px) {
  .mobileNav {
    padding-top: 72px;
  }
}

@media screen and (max-width: 540px) {
    .scrollCue {
        bottom: 20px;
    }
  .heroContent h1 {
    letter-spacing: -0.005em;
  }

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

  .aboutMediaBadge {
    right: 0;
    bottom: -22px;
    padding: 16px 20px;
  }

  .footerNav ul {
    gap: 10px 18px;
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .heroContent {
    padding: 130px 18px 64px;
  }

  .ctaLarge,
  .ctaButtonGold {
    width: 100%;
  }

  .heroActions {
    flex-direction: column;
    width: 100%;
  }
}




/*Form*/
.iframeWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.iframeWrapper iframe {
  width: 100%;
  max-width: 540px;
  min-height: 850px;
  border: 0;
}

@media (max-width: 600px) {
  .iframeWrapper iframe {
    min-height: 1000px;
  }
}

@media (max-width: 490px) {
  .iframeWrapper iframe {
    min-height: 1150px;
  }
}