/* ===================================================
   AP INTERIORS — Premium Interior Design Website
=================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #FAFAF8;
  --ivory:     #F3F2EE;
  --gold:      #BBA477;
  --gold-light:#D8C9AA;
  --mahogany:  #5D4636;
  --espresso:  #251C15;
  --smoke:     #E1DDD7;
  --text-dark: #1F1916;
  --text-mid:  #4C4039;
  --text-soft: #7A695E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:   0 10px 40px rgba(0,0,0,0.12);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.25);

  --transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-sub { margin-top: 20px; }

/* ── GOLD RULE ── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}
.gold-rule.centered { margin: 0 auto 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.btn-primary {
  background: var(--espresso);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--mahogany);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(250,250,248,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(250,250,248,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── SCROLL ANIMATIONS ── */
.fade-in { animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) both; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay   { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

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

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}

.navbar.scrolled {
  background: rgba(250,250,248,0.95);
  padding: 16px 50px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(16px);
}

.navbar.scrolled .nav-links a { color: var(--espresso); }
.navbar.scrolled .nav-logo .logo-ap,
.navbar.scrolled .nav-logo .logo-interiors { color: var(--espresso); }
.navbar.scrolled .hamburger span { background: var(--espresso); }

#navdbar {
  color: white;
}

#navdbar:hover{
  color: var(--espresso);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-ap {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  transition: color 0.5s;
}
.logo-interiors {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.5s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.9);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-links a.nav-cta {
  background: var(--espresso);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
}
.nav-links a.nav-cta:hover { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.nav-links a.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 15s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(37, 28, 21, 0.4) 0%,
    rgba(37, 28, 21, 0.5) 50%,
    rgba(37, 28, 21, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin-top: 40px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(250,250,248,0.85);
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(250,250,248,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(250,250,248,0.6), transparent);
  animation: scrollPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1); transform-origin: top; }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 100px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-deep);
}
.about-img-wrap img { transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.about-img-wrap:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  bottom: 30px; right: -30px;
  background: var(--white);
  padding: 30px 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 2px solid var(--gold);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 8px;
}

.about-body {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 300;
}

.about-locations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  border-top: 1px solid var(--smoke);
  padding-top: 32px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.location-icon {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
}
.location-item strong { display: block; font-weight: 500; color: var(--espresso); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;}
.location-item p { color: var(--text-soft); font-size: 0.95rem; margin: 4px 0 0; font-weight: 300;}

/* STATS */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: var(--ivory);
  padding: 60px 40px;
  border: 1px solid rgba(225,221,215,0.5);
  border-radius: var(--radius-md);
}
.stat-item { 
  text-align: center;
  flex: 1 1 200px;
  max-width: 260px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 12px;
}
.stat-divider {
  display: none;
}

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services { background: var(--ivory); }

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

.service-card {
  position: relative;
  background: var(--espresso);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card .service-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-card img {
  opacity: 0.8;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,28,21,0.9) 0%, rgba(37,28,21,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 32px;
  transition: var(--transition-slow);
}

.service-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
}

.service-body {
  transform: translateY(20px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-body p {
  font-size: 0.95rem;
  color: rgba(250,250,248,0.7);
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.08);
  opacity: 0.5;
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(37,28,21,0.95) 0%, rgba(37,28,21,0.6) 100%);
}
.service-card:hover .service-body {
  transform: translateY(0);
}
.service-card:hover .service-body p {
  opacity: 1;
}


/* ════════════════════════════════════
   GALLERY
════════════════════════════════════ */
.gallery { background: var(--white); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 24px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.gal-item {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  cursor: pointer;
}
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

.gal-item img {
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
  opacity: 0.9;
}
.gal-item:hover img { transform: scale(1.05); opacity: 0.6; }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 28, 21, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.gal-item:hover .gal-overlay span { transform: translateY(0); }

/* ════════════════════════════════════
   PROCESS
════════════════════════════════════ */
.process { background: var(--espresso); }
.process .section-eyebrow { color: var(--gold-light); }
.process .section-heading { color: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: left;
  padding: 0 32px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  color: rgba(187, 164, 119, 0.15);
  line-height: 1;
  margin-bottom: 24px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 500;
}
.process-step p {
  font-size: 0.95rem;
  color: rgba(250,250,248,0.6);
  line-height: 1.8;
  font-weight: 300;
}
.process-connector {
  width: 60px; height: 1px;
  background: rgba(187, 164, 119, 0.2);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials { background: var(--ivory); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testi-card {
  background: var(--white);
  padding: 60px 48px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 24px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px; height: 50px;
  background: var(--espresso);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--espresso);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testi-author span {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 300;
}

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,28,21,0.6);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.1;
}
.cta-content h2 em { font-style: italic; font-weight: 400; color: var(--gold-light); }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-body {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-detail-item {
  border-left: 1px solid var(--smoke);
  padding-left: 20px;
}
.cd-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-detail-item p {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-form-wrap {
  background: var(--ivory);
  padding: 60px 48px;
}

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--smoke);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 120px; }

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.visible { display: block; animation: fadeInUp 0.5s ease; }
.success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--espresso);
  color: var(--white);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-tagline {
  color: rgba(250,250,248,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 24px;
  font-weight: 300;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col a {
  color: rgba(250,250,248,0.7);
  font-size: 0.9rem;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }

.footer-locations li {
  color: rgba(250,250,248,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-locations strong {
  display: block;
  color: var(--white);
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid rgba(250,250,248,0.1);
  padding: 32px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(250,250,248,0.4);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ════════════════════════════════════
   MEDIA QUERIES
════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 16px 24px; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--espresso);
    flex-direction: column;
    justify-content: center;
    transition: right 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; color: var(--white); }
  .navbar.scrolled .nav-links a { color: var(--white); }
  
  .hero-headline { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gal-item.wide, .gal-item.tall { grid-column: auto; grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
}
