/* ============================================
   BLOOM & CO. — EVENT DECOR
   Luxury Editorial Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ---- Variables ---- */
:root {
  --cream: #faf6f0;
  --warm-white: #fdf9f4;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07c40;
  --charcoal: #1e1a17;
  --muted: #7a6e65;
  --blush: #f5e8df;
  --sage: #8fa89c;
  --border: rgba(201,169,110,0.25);
  --shadow: rgba(30,26,23,0.08);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Page Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: load-fill 1.5s ease forwards;
}
@keyframes load-fill { to { transform: translateX(0); } }

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 2px 30px var(--shadow);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--warm-white);
  transition: color var(--transition);
}
nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: white; }
nav.scrolled .nav-cta { border-color: var(--gold); color: var(--gold); }
nav.scrolled .nav-cta:hover { background: var(--gold); color: white; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: all 0.35s ease;
}
nav.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 7rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('pexels-enzo-iorio-381015179-28179599.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,26,23,0.15) 0%,
    rgba(30,26,23,0.5) 60%,
    rgba(30,26,23,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.8s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 2s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 2.2s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 2.4s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: white;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 3s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease infinite 3s;
}
@keyframes scrollDrop { to { top: 50px; } }

/* ---- Section Base ---- */
section { padding: 7rem 4rem; }
.section-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- About Strip ---- */
.about-strip {
  background: var(--charcoal);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.strip-stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.strip-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.strip-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}
.strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* ---- About Section ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 88%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 55%;
  object-fit: cover;
  border: 6px solid var(--cream);
}
.about-gold-tag {
  position: absolute;
  bottom: 12%;
  left: -3%;
  background: var(--gold);
  color: white;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  padding: 1rem 1.5rem;
  z-index: 2;
}
.about-text .section-desc { margin-bottom: 2rem; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--warm-white);
  border-left: 3px solid var(--gold-light);
  transition: border-color var(--transition);
}
.about-feature:hover { border-left-color: var(--gold); }
.feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-text strong {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}
.feature-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Services ---- */
.services-section {
  background: var(--warm-white);
  padding: 7rem 4rem;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,26,23,0.85) 0%, rgba(30,26,23,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(30,26,23,0.9) 0%, rgba(30,26,23,0.3) 60%, rgba(30,26,23,0.1) 100%);
}
.service-num {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.service-name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-desc { max-height: 100px; opacity: 1; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ---- Gallery ---- */
.gallery-section { padding: 7rem 4rem; }
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 7; }
.gallery-item:nth-child(5) { grid-column: span 5; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(201,169,110,0.15); }
.gallery-item-overlay span {
  font-size: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--blush);
  padding: 7rem 4rem;
  text-align: center;
}
.testimonials-section .section-label { justify-content: center; }
.testimonials-section .section-label::before { display: none; }
.testimonials-section .section-title { margin: 0 auto 4rem; }
.testimonials-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  scroll-snap-align: start;
  background: white;
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}
.testimonial-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.testimonial-event {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---- Process ---- */
.process-section {
  padding: 7rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.process-step {
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 1px;
  background: var(--gold-light);
}
.step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.step-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- Contact / CTA ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem;
  text-align: center;
  background: var(--charcoal);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('pexels-kaderdygnn-10295247.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content .section-label { justify-content: center; color: var(--gold-light); }
.cta-content .section-label::before { background: var(--gold-light); }
.cta-content .section-title { color: white; }
.cta-content .section-title em { color: var(--gold-light); }
.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.cta-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: white;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus { border-color: var(--gold); }
.cta-form button {
  padding: 1rem 2rem;
  background: var(--gold);
  border: none;
  color: white;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.cta-form button:hover { background: var(--gold-dark); }

/* ---- Footer ---- */
footer {
  background: #141210;
  color: rgba(255,255,255,0.45);
  padding: 4rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- Keyframes ---- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child { grid-column: span 2; aspect-ratio: 16/7; }
  .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: span 6; }
  .gallery-item:nth-child(3) { grid-column: span 4; }
  .gallery-item:nth-child(4) { grid-column: span 8; }
  .gallery-item:nth-child(5) { grid-column: span 6; }
  .gallery-item:nth-child(6) { grid-column: span 6; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .process-step:nth-child(3)::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.9rem 2rem; }
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 75%; max-width: 320px; background: var(--charcoal); flex-direction: column; align-items: flex-start; justify-content: center; padding: 4rem 3rem; gap: 2rem; transform: translateX(100%); transition: transform 0.4s ease; z-index: 105; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 0 2rem 5rem; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  section { padding: 5rem 2rem; }
  .services-section { padding: 5rem 2rem; }
  .gallery-section { padding: 5rem 2rem; }
  .testimonials-section { padding: 5rem 2rem; }
  .cta-section { padding: 5rem 2rem; }
  footer { padding: 3rem 2rem; }
  .about-strip { padding: 3rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 420px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .services-grid .service-card:last-child { grid-column: span 1; aspect-ratio: 3/4; }
  .about { padding: 5rem 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item img { min-height: 200px; }
  .testimonial-card { flex: 0 0 calc(80% - 1rem); }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-strip { flex-direction: column; }
  .strip-divider { width: 60px; height: 1px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 90%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
}
