/* ============================================================
   DECKJACKS — Premium Tiling Solutions
   style.css
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --white:       #FFFFFF;
  --off-white:   #F7F5F2;
  --dark:        #0D0D0D;
  --dark-2:      #161616;
  --dark-3:      #222222;
  --gold:        #C9A96E;
  --gold-dark:   #B8935A;
  --gray:        #6B6B6B;
  --gray-light:  #E8E6E2;
  --text:        #1A1A1A;
  --nav-h:       76px;
  --max-w:       1280px;
  --transition:  0.28s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === TYPOGRAPHY HELPERS === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.14;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-3);
  border-color: var(--dark-3);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1px;
}
.nav__logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-radius: 2px;
}
.nav__link:hover { color: var(--gold); }
.nav__link svg { transition: transform var(--transition); }
.has-dropdown:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--dark-2);
  border-top: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition), padding-left var(--transition), background var(--transition);
}
.dropdown li a:hover {
  color: var(--gold);
  padding-left: 26px;
  background: rgba(255,255,255,0.04);
}

/* Phone CTA */
.btn--nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.btn--nav:hover { background: var(--gold-dark); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile phone item (hidden on desktop) */
.nav__phone-mobile { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 20px) 32px 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 7.5vw, 88px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  max-width: 640px;
  margin-bottom: 26px;
}
.hero__subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 44px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: var(--gold);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.ticker__track {
  display: inline-flex;
  will-change: transform;
  animation: tickerScroll 28s linear infinite;
}
.ticker__track span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  gap: 28px;
}
.ticker__track span::after {
  content: '◆';
  font-size: 7px;
  opacity: 0.7;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section {
  padding: 100px 32px;
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--off-white {
  background: var(--off-white);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section__header {
  margin-bottom: 60px;
  max-width: 640px;
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.14;
  margin-bottom: 18px;
}
.section__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 560px;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.55); }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--off-white);
  padding: 40px 32px 36px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--gray-light); }
.service-card:hover::after { width: 100%; }

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card__desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--gray);
}

/* ============================================================
   SLIDESHOW / MONTAGE
   ============================================================ */
.montage {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark);
}
.montage__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.montage__slide.is-active { opacity: 1; }
.montage__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.montage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.montage__caption {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  pointer-events: none;
}
.montage__caption h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 50px);
  color: var(--white);
  line-height: 1.14;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.montage__controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.montage__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}
.montage__dot.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-section {
  background: var(--dark-2);
}
.video-section__header {
  padding: 60px 32px 36px;
}
.video-section__header .container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.video-wrapper {
  width: 100%;
  max-height: 72vh;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
.video-wrapper video {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  display: block;
}
.video-section__note {
  text-align: center;
  padding: 16px 32px;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}
.video-section__note a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__header {
  padding: 80px 32px 48px;
}
.gallery__header .container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery__grid {
  columns: 4;
  column-gap: 4px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  display: block;
  line-height: 0;
}
.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__footer {
  padding: 40px 32px;
  text-align: center;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.review-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-card__text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 24px;
}
.review-card__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-card__location {
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
}
.reviews__cta {
  text-align: center;
  padding-top: 8px;
}
.reviews__cta p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 16px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image {
  position: relative;
  height: 580px;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.about__image::after {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 44px;
}
.stat {
  padding: 24px 20px;
  background: var(--dark-3);
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  text-decoration: none;
  transition: color var(--transition);
}
.contact__detail:hover { color: var(--gold); }
.contact__detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.social-btn svg { width: 17px; height: 17px; }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23C9A96E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 14px;
  border-radius: 2px;
  margin-top: 4px;
}
.form-success[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  padding: 48px 32px 28px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}
.footer__logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 5px;
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__socials .social-btn {
  width: 36px;
  height: 36px;
  border-color: rgba(255,255,255,0.15);
}
.footer__copy {
  max-width: var(--max-w);
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   FADE-UP ANIMATIONS (Intersection Observer)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > .fade-up:nth-child(1)  { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2)  { transition-delay: 0.08s; }
.stagger > .fade-up:nth-child(3)  { transition-delay: 0.16s; }
.stagger > .fade-up:nth-child(4)  { transition-delay: 0.24s; }
.stagger > .fade-up:nth-child(5)  { transition-delay: 0.32s; }
.stagger > .fade-up:nth-child(6)  { transition-delay: 0.40s; }
.stagger > .fade-up:nth-child(7)  { transition-delay: 0.48s; }
.stagger > .fade-up:nth-child(8)  { transition-delay: 0.56s; }

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image {
    height: 420px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gallery__grid {
    columns: 3;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }
  .section {
    padding: 72px 20px;
  }
  .nav__inner {
    padding: 0 20px;
  }

  /* Hide desktop links + phone CTA, show hamburger */
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 899;
  }
  .nav__links.is-open { display: flex; }
  .nav__link {
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    letter-spacing: 0.06em;
  }
  .has-dropdown > .nav__link > svg { transition: transform 0.3s; }
  .has-dropdown.open > .nav__link > svg { transform: rotate(180deg); }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    display: none;
    padding-left: 16px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a {
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    border: none;
  }
  .dropdown li a:hover { padding-left: 8px; }

  .btn--nav { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone-mobile { display: block; width: 100%; margin-top: 20px; }
  .nav__phone-mobile a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 2px;
    justify-content: center;
  }

  .hero__title { font-size: clamp(38px, 10vw, 56px); }
  .hero__subtitle { font-size: 15px; }
  .hero__scroll { display: none; }

  .services__grid { grid-template-columns: 1fr; gap: 2px; }
  .gallery__grid { columns: 2; }
  .gallery__header { padding: 60px 20px 32px; }

  .about__image::before,
  .about__image::after { display: none; }
  .about__stats { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .montage { height: 55vh; }
  .montage__caption { padding: 0 24px; bottom: 60px; }

  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__links {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .gallery__grid { columns: 1; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .ticker__track span { padding: 0 18px; font-size: 10px; letter-spacing: 0.15em; }
  .services__grid { gap: 2px; }
}
