/* ══════════════════════════════════════
   Events by Deerah — Luxury Redesign
   Brand: Teal #2878A0 · Burnt #C4611E · Cream #FBF7F0
   ══════════════════════════════════════ */

:root {
  --teal:         #2878A0;
  --teal-dark:    #1d6088;
  --teal-deeper:  #134d6e;
  --teal-darkest: #0c2233;
  --burnt:        #C4611E;
  --burnt-dark:   #a8501a;
  --cream:        #FBF7F0;
  --cream-dark:   #EDE5D8;
  --white:        #FFFFFF;
  --dark:         #0d1820;
  --text:         #2C3E50;
  --muted:        #6B7A8D;
  --border:       #E4D9CC;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 30px rgba(13, 24, 32, 0.1);
  --shadow-lg: 0 12px 60px rgba(13, 24, 32, 0.18);
  --transition: 0.35s ease;
  --max-width: 1200px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ─── Utility ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 0.875rem;
}
.section__eyebrow--light { color: rgba(196,97,30,0.85); }
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section__title--light { color: var(--white); }
.section__desc { font-size: 0.9375rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
}
.btn--primary { background: var(--burnt); color: var(--white); border-color: var(--burnt); }
.btn--primary:hover { background: var(--burnt-dark); border-color: var(--burnt-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,97,30,0.35); }
.btn--hero { background: var(--burnt); color: var(--white); border-color: var(--burnt); padding: 1.1rem 2.75rem; font-size: 0.8rem; }
.btn--hero:hover { background: var(--burnt-dark); border-color: var(--burnt-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,97,30,0.4); }
.btn--light { background: var(--white); color: var(--teal-deeper); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn--outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn--book { background: var(--burnt); color: var(--white) !important; padding: 0.65rem 1.5rem; border-radius: var(--radius); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all var(--transition); border: none; }
.btn--book:hover { background: var(--burnt-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,97,30,0.4); }
.btn--full { width: 100%; justify-content: center; }

/* ─── Reveal ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled { background: rgba(12, 34, 51, 0.97); box-shadow: 0 2px 30px rgba(0,0,0,0.25); backdrop-filter: blur(8px); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.375rem 0; transition: padding var(--transition); }
.header.scrolled .nav { padding: 1rem 0; }

.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo-img { height: 52px; width: auto; border-radius: 8px; display: block; transition: height var(--transition); }
.header.scrolled .nav__logo-img { height: 42px; }
.footer__logo-img { height: 70px; width: auto; border-radius: 8px; display: block; margin-bottom: 0.75rem; }
.logo__icon { width: 50px; height: 50px; flex-shrink: 0; }
.logo__icon--sm { width: 38px; height: 38px; }
.logo__svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; }
.logo__name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: var(--white); line-height: 1.2; letter-spacing: 0.02em; }
.logo__sub { font-size: 0.57rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.58); }

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__link { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; transition: color var(--transition); position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--burnt); transition: width var(--transition); }
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════ */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }

.slider { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 1; }

.slide__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.slide.active .slide__img { transform: scale(1); }

/* Fallback gradient backgrounds */
.slide--1 { background: linear-gradient(135deg, #0c2233 0%, #1d5070 50%, #2878A0 100%); }
.slide--2 { background: linear-gradient(135deg, #1a0e08 0%, #6b2b0d 50%, #C4611E 100%); }
.slide--3 { background: linear-gradient(135deg, #0a1a12 0%, #0c4430 50%, #134d6e 100%); }

.slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,30,0.45) 0%, rgba(10,20,30,0.65) 100%);
  z-index: 1;
}

.slide__content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 860px;
}
.slide__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.slide.active .slide__eyebrow { animation: fadeUp 0.8s ease 0.2s both; }
.slide__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.slide__title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.9); }
.slide__sub {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

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

/* Slider controls */
.slider__arrow {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider__arrow:hover { background: var(--burnt); border-color: var(--burnt); }
.slider__arrow--prev { left: 2rem; }
.slider__arrow--next { right: 2rem; }

.slider__dots {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.625rem; z-index: 3;
}
.dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.dot.active { background: var(--burnt); width: 44px; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
.stats { background: var(--teal-darkest); padding: 3rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__plus { font-size: 0.6em; color: var(--burnt); vertical-align: super; }
.stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════
   WELCOME
   ══════════════════════════════════════ */
.welcome { background: var(--white); }
.welcome__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.welcome__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.welcome__divider {
  display: flex; justify-content: center;
  margin: 1.5rem auto 2rem;
}
.welcome__divider span {
  display: block; width: 60px; height: 2px;
  background: var(--burnt);
  position: relative;
}
.welcome__divider span::before,
.welcome__divider span::after {
  content: ''; position: absolute; top: 0;
  width: 8px; height: 2px; background: var(--burnt);
}
.welcome__divider span::before { left: -14px; }
.welcome__divider span::after  { right: -14px; }
.welcome__text {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.welcome__values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.value {
  padding: 2rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value i {
  font-size: 1.5rem; color: var(--teal);
  margin-bottom: 1rem; display: block;
}
.value h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.5rem;
}
.value p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   SERVICES (image cards)
   ══════════════════════════════════════ */
.services { background: var(--cream); }
.services .container { margin-bottom: 3rem; }
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 600px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.svc-card__bg {
  position: absolute; inset: 0;
}
.svc-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.svc-card:hover .svc-card__bg img { transform: scale(1.08); }
.svc-card__bg-fallback {
  position: absolute; inset: 0;
}
.svc-card__bg-fallback--1 { background: linear-gradient(160deg, #1d5070 0%, #2878A0 100%); }
.svc-card__bg-fallback--2 { background: linear-gradient(160deg, #6b2b0d 0%, #C4611E 100%); }
.svc-card__bg-fallback--3 { background: linear-gradient(160deg, #0c4430 0%, #134d6e 100%); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,28,0.88) 0%, rgba(10,18,28,0.25) 60%, transparent 100%);
  transition: background var(--transition);
}
.svc-card:hover .svc-card__overlay { background: linear-gradient(to top, rgba(10,18,28,0.94) 0%, rgba(10,18,28,0.45) 70%, rgba(10,18,28,0.1) 100%); }
.svc-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.svc-card:hover .svc-card__content { transform: translateY(0); }
.svc-card__icon {
  display: block;
  font-size: 1.5rem; color: var(--burnt);
  margin-bottom: 0.875rem;
  opacity: 0.9;
}
.svc-card__title {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.svc-card__desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 1.25rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.svc-card:hover .svc-card__desc { max-height: 100px; opacity: 1; }
.svc-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burnt);
  transition: gap var(--transition);
}
.svc-card__link:hover { gap: 0.875rem; }

/* ══════════════════════════════════════
   ABOUT (dark)
   ══════════════════════════════════════ */
.about { background: var(--teal-darkest); padding: 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }

.about__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  background: var(--dark);
}
.about__img-main {
  grid-column: 1; grid-row: 1 / 3;
  position: relative; overflow: hidden;
  background: var(--teal-deeper);
}
.about__img-accent {
  grid-column: 2; grid-row: 1;
  position: relative; overflow: hidden;
  background: #0c3040;
}
.about__img-main img,
.about__img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__img-main:hover img,
.about__img-accent:hover img { transform: scale(1.04); }
.about__img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,0.15);
}
.about__badge {
  grid-column: 2; grid-row: 2;
  background: var(--burnt);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
}
.about__badge-num {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 300;
  color: var(--white); line-height: 1;
  display: block; margin-bottom: 0.5rem;
}
.about__badge-txt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.5; }

.about__content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
}
.about__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15; margin-bottom: 1.75rem;
}
.about__text {
  font-size: 0.9375rem; color: rgba(255,255,255,0.65);
  line-height: 1.9; margin-bottom: 1.125rem;
}
.about__pillars { margin: 2.25rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.about__pillar {
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.about__pillar i { font-size: 1.1rem; color: var(--burnt); margin-top: 0.2rem; flex-shrink: 0; }
.about__pillar h5 { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; letter-spacing: 0.04em; }
.about__pillar p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.about__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process { background: var(--cream); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process__step {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step__num {
  font-family: var(--font-heading);
  font-size: 5rem; font-weight: 300;
  color: var(--cream-dark);
  line-height: 1; margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.process__step:hover .step__num { color: var(--burnt); opacity: 0.25; }
.step__line {
  width: 30px; height: 2px;
  background: var(--burnt); margin: 0 auto 1.25rem;
}
.step__icon { font-size: 1.25rem; color: var(--teal); margin-bottom: 1rem; }
.step__title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.75rem;
}
.step__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════
   GALLERY (masonry)
   ══════════════════════════════════════ */
.gallery { background: var(--white); }
.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}
.gallery__col { display: flex; flex-direction: column; gap: 1rem; }
.gallery__col:nth-child(2) { margin-top: 2.5rem; }
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery__col:first-child .gallery__item:first-child { aspect-ratio: 4/5; }
.gallery__col:last-child .gallery__item:last-child { aspect-ratio: 4/5; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--muted); opacity: 0.25;
}
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,34,51,0.75), transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.gallery__cta { text-align: center; padding: 0 2rem; }

/* ══════════════════════════════════════
   TESTIMONIALS (dark)
   ══════════════════════════════════════ */
.testimonials { background: var(--teal-deeper); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background var(--transition), transform var(--transition);
}
.testimonial:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.testimonial__quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem; line-height: 1;
  color: var(--burnt); opacity: 0.6;
  margin-bottom: 0.5rem;
}
.testimonial__text {
  font-family: var(--font-heading);
  font-style: italic; font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 1.75rem;
}
.testimonial__divider {
  width: 40px; height: 1px;
  background: var(--burnt); margin-bottom: 1.5rem; opacity: 0.7;
}
.testimonial__author { display: flex; align-items: center; gap: 1rem; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial__name { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 0.15rem; }
.testimonial__event { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; }
.testimonial__stars { color: var(--burnt); font-size: 0.72rem; letter-spacing: 2px; }

/* ══════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-deeper) 100%);
}
.cta-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-band__bg-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-deeper) 60%, var(--teal) 100%);
}
.cta-band__overlay {
  position: absolute; inset: 0;
  background: rgba(12, 34, 51, 0.78);
}
.cta-band__content { position: relative; z-index: 1; }
.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 1rem; letter-spacing: 0.01em;
}
.cta-band__sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; font-weight: 300; letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact__info .section__eyebrow,
.contact__info .section__title { text-align: left; }
.contact__desc { color: var(--muted); line-height: 1.85; margin-bottom: 2.25rem; font-size: 0.9375rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact__item { display: flex; align-items: center; gap: 1rem; font-size: 0.9375rem; color: var(--text); }
.contact__item-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.contact__item a { transition: color var(--transition); }
.contact__item a:hover { color: var(--burnt); }
.contact__social { display: flex; gap: 0.875rem; }
.contact__social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition);
}
.contact__social a:hover { background: var(--burnt); transform: translateY(-2px); }

.contact__form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); }
.form__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 500;
  color: var(--dark); margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.45rem; }
.form__group label { font-size: 0.72rem; font-weight: 700; color: var(--dark); letter-spacing: 0.08em; text-transform: uppercase; }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9375rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none; appearance: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(40,120,160,0.1); }
.form__group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236B7A8D' d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 20px; padding-right: 2.5rem;
}
.form__note { text-align: center; font-size: 0.875rem; font-weight: 600; padding: 0.875rem; border-radius: var(--radius); margin-top: -0.5rem; }
.form__note.success { background: #e8f5e9; color: #2e7d32; }
.form__note.error   { background: #fdecea; color: #c62828; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer { background: var(--teal-darkest); color: rgba(255,255,255,0.8); padding: 5rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.25fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; }
.footer__name { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); font-weight: 500; letter-spacing: 0.02em; }
.footer__tagline { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--burnt); margin-bottom: 1.25rem; }
.footer__desc { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer__links h4, .footer__services h4, .footer__connect h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem; }
.footer__links ul, .footer__services ul { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__links li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__links li a:hover { color: var(--burnt); }
.footer__services li { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer__social { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); }
.footer__social a:hover { background: var(--burnt); transform: translateY(-2px); }
.footer__linktree { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--transition); margin-bottom: 1.5rem; }
.footer__linktree:hover { color: var(--burnt); }
.footer__bottom { padding: 1.75rem 0; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__cards        { grid-template-columns: 1fr; height: auto; }
  .svc-card               { height: 420px; }
  .svc-card__desc         { max-height: 100px; opacity: 1; }
  .about__grid            { grid-template-columns: 1fr; }
  .about__images          { min-height: 400px; }
  .about__content         { padding: 4rem 3rem; }
  .process__steps         { grid-template-columns: repeat(2, 1fr); }
  .welcome__values        { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid     { grid-template-columns: 1fr 1fr; }
  .contact__grid          { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid           { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats__grid            { grid-template-columns: repeat(2, 1fr); }
  .stat                   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(even)   { border-right: none; }
  .stat:nth-child(odd)    { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .section        { padding: 4.5rem 0; }
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: rgba(12, 34, 51, 0.98);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 2.5rem; z-index: 999;
    backdrop-filter: blur(12px);
  }
  .nav__links.open  { display: flex; }
  .nav__link        { font-size: 1.2rem; }
  .hamburger        { display: flex; }
  .services__cards  { grid-template-columns: 1fr; }
  .svc-card         { height: 380px; }
  .gallery__masonry { grid-template-columns: 1fr 1fr; padding: 0 1rem; }
  .gallery__col:nth-child(3) { display: none; }
  .gallery__col:nth-child(2) { margin-top: 0; }
  .process__steps   { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form__row        { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 2rem; }
  .about__content   { padding: 3rem 1.5rem; }
  .about__cta       { flex-direction: column; }
  .footer__grid     { grid-template-columns: 1fr; gap: 2rem; }
  .slider__arrow    { width: 40px; height: 40px; font-size: 0.875rem; }
  .slider__arrow--prev { left: 1rem; }
  .slider__arrow--next { right: 1rem; }
  .welcome__values  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery__masonry  { grid-template-columns: 1fr; }
  .gallery__col:nth-child(2) { display: none; }
  .process__steps    { grid-template-columns: 1fr; }
  .welcome__values   { grid-template-columns: 1fr; }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .slide__title      { font-size: 2.5rem; }
}
