/* ============================================
   The Sunny Soul Company — Main Stylesheet
   ============================================ */

/* Google Fonts */
@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=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --copper:        #C4511A;
  --copper-dark:   #9E3E0E;
  --copper-light:  #E8835A;
  --copper-pale:   #F9EDE5;
  --green:         #2C4A1E;
  --green-light:   #3D6428;
  --cream:         #F8F4EF;
  --cream-dark:    #EDE6DC;
  --tan:           #C9AD96;
  --text:          #1C1C1C;
  --text-light:    #5A5552;
  --white:         #FFFFFF;
  --nav-height:    92px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 28px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.16);
  --radius:        12px;
  --transition:    all 0.35s ease;
  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Nunito Sans', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── Layout Helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section {
  padding: 90px 0;
}

.section--cream { background: var(--cream); }
.section--dark  { background: var(--text); color: var(--white); }
.section--copper { background: var(--copper); color: var(--white); }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.85); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,81,26,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}
.btn--outline:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--copper);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 76px;
  width: auto;
  transition: var(--transition);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  transition: var(--transition);
  color: var(--text);
  white-space: nowrap;
}

.nav--transparent .nav__link { color: var(--white); }
.nav--transparent .nav__link:hover { color: var(--copper-light); background: rgba(255,255,255,0.1); }
.nav--solid .nav__link:hover { color: var(--copper); background: var(--copper-pale); }

.nav__cta {
  background: var(--copper);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 22px;
}
.nav__cta:hover {
  background: var(--copper-dark) !important;
  color: var(--white) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav--transparent .nav__hamburger span { background: var(--white); }
.nav--solid .nav__hamburger span { background: var(--text); }

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--inner {
  height: 65vh;
  min-height: 440px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,28,0.72) 0%,
    rgba(28,28,28,0.45) 55%,
    rgba(28,28,28,0.28) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
}

.hero--center .hero__content {
  text-align: center;
  margin: 0 auto;
}

.hero__content h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 580px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero--center .hero__content p { margin-left: auto; margin-right: auto; }

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero--center .hero__buttons {
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
  z-index: 2;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Services Grid (Home) ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img { transform: scale(1.04); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.60) 50%, rgba(0,0,0,0.18) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
}

.service-card__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
}

.service-card__overlay h3 { margin-bottom: 10px; font-size: 1.7rem; }
.service-card__overlay p  { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.95rem; }

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: var(--transition);
}

.service-card:hover .service-card__arrow { color: var(--white); border-color: rgba(255,255,255,0.7); }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--copper);
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ── Two Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.two-col__img:hover img { transform: scale(1.03); }

.two-col__text h2 { margin-bottom: 1.2rem; }
.two-col__text .eyebrow { margin-bottom: 0.8rem; }

.two-col__text ul {
  margin: 1.2rem 0;
}

.two-col__text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.two-col__text li::before {
  content: '✦';
  color: var(--copper);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── Pricing Block ── */
.pricing-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--cream-dark);
}

.pricing-block__price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--copper);
  font-weight: 600;
  line-height: 1;
  margin: 16px 0 8px;
}

.pricing-block__note { font-size: 0.9rem; color: var(--text-light); }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-item--wide { grid-column: span 2; aspect-ratio: 4/3; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,81,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.gallery-item__overlay svg {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
  color: var(--white);
  width: 40px;
  height: 40px;
}

.gallery-item:hover .gallery-item__overlay { background: rgba(28,28,28,0.38); }
.gallery-item:hover .gallery-item__overlay svg { opacity: 1; transform: scale(1); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--white); }

.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  padding: 16px;
  transition: color 0.2s;
}
.lightbox__prev:hover, .lightbox__next:hover { color: var(--white); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196,81,26,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; cursor: pointer; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 20px 24px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Contact Info ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}

.contact-info__text a { transition: color 0.2s; }
.contact-info__text a:hover { color: var(--copper); }

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat {
  background: var(--cream);
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}

.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--copper);
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── Venue Tags ── */
.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.venue-tag {
  background: var(--copper-pale);
  color: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(196,81,26,0.2);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 2rem; }

.cta-banner__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Pull Quote ── */
.pull-quote {
  border-left: 4px solid var(--copper);
  padding: 20px 28px;
  margin: 2rem 0;
  background: var(--copper-pale);
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* ── Process Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: steps;
}

.step {
  text-align: center;
  counter-increment: steps;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ── Kombi Feature List ── */
.kombi-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.5rem 0;
}

.kombi-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.kombi-feature__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ── About Section ── */
.about-intro {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 52px;
}

/* ── Footer ── */
.footer {
  background: #1A1714;
  color: rgba(255,255,255,0.85);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--copper-light);
  display: block;
  margin-bottom: 14px;
  line-height: 1.2;
}

.footer__brand p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.9); }

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--copper-light); }

.footer__contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer__contact a:hover { color: var(--copper-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}

.footer__bottom a { transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ── Mobile Menu ── */
@media (max-width: 1100px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav__links.open { right: 0; }

  .nav__link {
    color: var(--text) !important;
    font-size: 1rem;
    width: 100%;
    padding: 12px 16px;
  }

  .nav__cta { margin-top: 16px; width: 100%; text-align: center; justify-content: center; }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav__overlay.open { opacity: 1; pointer-events: all; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse { direction: ltr; }
  .two-col__img img { height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card__img { height: 340px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid--4 { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }

  .steps { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .stat:last-child { border-bottom: none; }

  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .kombi-features { grid-template-columns: 1fr; }

  .about-intro { padding: 32px 24px; }

  .cta-banner { padding: 60px 24px; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__buttons { flex-direction: column; }
  .pricing-block { padding: 32px 20px; }
}

/* ── Page-specific ── */
.page-header {
  padding-top: var(--nav-height);
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* ── Pricing Grids ── */
.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.pricing-rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}

@media (max-width: 640px) {
  .pricing-options { grid-template-columns: 1fr; }
  .pricing-rates   { grid-template-columns: 1fr; }
}

/* ── Footer Social Icons ── */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.footer__social a,
.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.25s ease;
}

.footer__social a:hover {
  background: var(--copper);
  color: var(--white);
}

.footer__social-icon--disabled {
  opacity: 0.35;
  cursor: default;
}
