/* ===== GOOGLE FONTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap");

/* ===== ROOT VARIABLES ===== */
:root {
  --cream:        #F7F2E9;
  --cream-dark:   #EDE4D4;
  --cream-deep:   #E3D8C4;

  --green:        #1E3D34;
  --green-mid:    #2A5445;
  --green-light:  #3A6E5A;

  --gold:         #C49A3C;
  --gold-light:   #DDB95A;
  --gold-pale:    #F0DFA0;

  --text-dark:    #1A1612;
  --text-mid:     #3D3530;
  --text-light:   #7A6E62;
  --text-muted:   #A89E94;

  --white:        #FFFDF8;
  --shadow-sm:    0 2px 12px rgba(30,61,52,0.10);
  --shadow-md:    0 6px 30px rgba(30,61,52,0.15);
  --shadow-lg:    0 16px 60px rgba(30,61,52,0.20);

  --max-width:    1200px;
  --header-font:  "Cormorant Garamond", serif;
  --body-font:    "Montserrat", sans-serif;

  --nav-height:   80px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

img { width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition); }

/* ===== UTILITY ===== */
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 2rem;
}

.section__header {
  font-family: var(--header-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.02em;
}

.section__subheader {
  text-align: center;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__description {
  color: var(--text-light);
  line-height: 1.85;
  text-align: center;
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,154,60,0.35); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
}
.gold-divider::before { background: linear-gradient(to right, transparent, var(--gold)); }
.gold-divider::after  { background: linear-gradient(to left,  transparent, var(--gold)); }


/* ══════════════════════════════════════════════════
   NAVBAR
   Desktop  : solid green bar, logo centred in <ul>,
              3 links left + 3 links right
   Mobile   : fully transparent bar, logo left,
              hamburger right; opens solid green
              dropdown with links stacked vertically
   ══════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  isolation: isolate;
}

/* ── Mobile header row (logo left | hamburger right) ── */
.nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: transparent;
  transition: background 0.15s linear;
}

/* nav--transparent means mobile header starts transparent too */
/* JS sets background on <nav> element; on mobile the nav__header
   inherits transparently — we make nav itself the coloured element */

/* Header turns green when menu is open */
.nav__header.active {
  background: var(--green) !important;
}

.nav__header .nav__logo img {
  max-width: 64px;
  height: auto;
}

.nav__menu__btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
}

/* ── Link list ── */
.nav__links {
  list-style: none;

  /* Mobile: hidden above viewport, slides down on open */
  position: absolute;
  top: 100%;          /* just below .nav__header */
  left: 0;
  width: 100%;
  padding: 1.8rem 1.5rem 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;

  background: var(--green);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.35s ease;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Centre logo inside <ul> — hidden on mobile */
.nav__links .nav__logo {
  display: none;
}

/* All nav links */
.nav__links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  border-color: var(--gold);
}

/* Mobile: links invisible until menu opens */
@media (max-width: 768px) {
  .nav__links a {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav__links.open a {
    opacity: 1;
    visibility: visible;
  }

  /* Gallery & contact page: nav header is always solid green.
     Only pages WITHOUT nav--transparent get this rule — index.html
     uses nav--transparent so its JS-driven scroll colour is unaffected. */
  nav:not(.nav--transparent) .nav__header {
    background: var(--green);
  }
}

/* ── Desktop layout ── */
@media (min-width: 769px) {

  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--green);  /* solid green — default (contact page) */
    transition: background 0.15s linear;
  }

  /* Transparent override for home page — JS sets rgba inline on <nav> */
  nav.nav--transparent {
    background: transparent;
  }

  /* Hide the mobile header row entirely */
  .nav__header {
    display: none;
  }

  /* Reset the list to a full-width horizontal bar.
     IMPORTANT: background: inherit so the <nav> background
     set by JS shows through on desktop */
  .nav__links {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    z-index: auto;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;

    padding: .2rem 2rem;
    width: 100%;
    background: inherit;   /* ← key fix: inherits from <nav> */
  }

  /* Show and size the centre logo */
  .nav__links .nav__logo {
    display: flex;
    align-items: center;
  }

  .nav__links .nav__logo img {
    max-width: 100px;
    height: auto;
  }

  .nav__links a {
    opacity: 1;
    visibility: visible;
    font-size: 0.72rem;
  }
}


/* ===== PAGE HERO (inner pages) ===== */
.page__hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--green);
  /* push content below the fixed nav on all screen sizes */
  padding-top: var(--nav-height);
}

.page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,154,60,0.18), transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(58,110,90,0.25), transparent 55%);
}

.page__hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page__hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

.page__hero__content h1 {
  font-family: var(--header-font);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page__hero__content p {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}

/* ===== HOME HERO SLIDER ===== */
.hero__slider {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .hero__slider { padding-top: 68px; }
}

.slides { position: absolute; inset: 0; }

.slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.slides img.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 90%, rgba(0,0,0,0.85), rgba(0,0,0,0.35) 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 5rem;
  max-width: var(--max-width);
  margin: auto;
  width: 100%;
}

.hero__content .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.2rem;
}

.hero__content h1 {
  font-family: var(--header-font);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero__content h1 em { font-style: italic; color: var(--gold-pale); }

.hero__content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active { background: var(--gold); width: 42px; }

.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 3;
}

/* ===== ABOUT ===== */
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image { position: relative; }

.about__image img {
  border-radius: 2px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__image::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.5;
}

.about__text .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about__text h2 {
  font-family: var(--header-font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about__text h2 span { color: var(--gold); }

.about__text p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

.about__text .btn { margin-top: 1.5rem; }

/* ===== PORTFOLIO ===== */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.portfolio__card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.portfolio__card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio__card:hover img { transform: scale(1.06); }

.portfolio__card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,61,52,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio__card:hover .portfolio__card__overlay { opacity: 1; }

.portfolio__card__overlay h3 {
  font-family: var(--header-font);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.portfolio__card__overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

/* ===== SERVICES ===== */
.services__section {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.services__section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.12), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(58,110,90,0.4),    transparent 55%);
}

.services__section .section__container { position: relative; z-index: 1; }
.services__section .section__header    { color: var(--white); }
.services__section .section__subheader { color: var(--gold-pale); }
.services__section .section__description { color: rgba(255,255,255,0.65); }

.service__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.service__card:hover {
  background: rgba(196,154,60,0.08);
  border-color: rgba(196,154,60,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.service__card .icon {
  width: 56px; height: 56px;
  background: rgba(196,154,60,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.service__card h4 {
  font-family: var(--header-font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.service__card h4 a { color: inherit; }
.service__card h4 a:hover { color: var(--gold-pale); }

.service__card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service__card .price {
  font-size: 1.5rem;
  font-family: var(--header-font);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

/* ===== GALLERY GRID ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 3rem;
}

.gallery__grid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery__grid:hover img:not(:hover) { opacity: 0.55; }
.gallery__grid img:hover { transform: scale(1.02); }

.gallery__btn { text-align: center; margin-top: 2.5rem; }

.gallery__masonry {
  columns: 3;
  column-gap: 1rem;
  margin-top: 3rem;
}

.gallery__masonry img {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__masonry img:hover { opacity: 0.88; transform: scale(1.01); }

/* ===== TESTIMONIALS ===== */
.swiper { margin-top: 3rem; padding-bottom: 3.5rem; }

.client__card {
  max-width: 750px;
  margin: auto;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.client__card img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--gold);
}

.client__card .quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--header-font);
}

.client__card p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.client__card h4 {
  font-family: var(--header-font);
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 500;
}

.client__card .client__role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.swiper-pagination-bullet { background: var(--cream-deep); }
.swiper-pagination-bullet-active { background: var(--gold); }

/* ===== BLOG / CTA BANNER ===== */
.blog__banner {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url("assets/blog.jpg") center/cover no-repeat;
  padding: 8rem 2rem;
  text-align: center;
}

.blog__banner h2 {
  font-family: var(--header-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.blog__banner p {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-size: 0.93rem;
}

/* ===== INSTAGRAM STRIP ===== */
.instagram__container { overflow: hidden; background: var(--cream-dark); padding: 2rem 0; }

.instagram__flex {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.instagram__flex img {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(calc(-50% - 0.4rem)); }
}

/* ===== CONTACT PAGE ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: 2rem; }

.info__card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.8rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info__card:hover {
  transform: translateX(4px);
  border-color: rgba(196,154,60,0.4);
  box-shadow: var(--shadow-md);
}

.info__card .icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.info__card__content h3 {
  font-family: var(--header-font);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.info__card__content p,
.info__card__content a {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

.info__card__content a:hover { color: var(--gold); }

.social__links { display: flex; gap: 0.8rem; margin-top: 0.5rem; }

.social__links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  transition: var(--transition);
}

.social__links a:hover {
  background: var(--green);
  color: var(--gold);
  border-color: var(--green);
}

/* Contact Form */
.contact__form {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow-sm);
}

.contact__form h2 {
  font-family: var(--header-font);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form__group { display: flex; flex-direction: column; gap: 0.45rem; }
.form__group.full { grid-column: 1/-1; }

label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

input, select, textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: 3px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.12);
}

textarea { min-height: 140px; resize: vertical; }

.submit__btn {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.submit__btn:hover {
  background: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===== IMAGE MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  justify-content: center;
  align-items: center;
}

.modal.open { display: flex; }

.modal__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.modal__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: var(--transition);
}

.modal__close:hover { opacity: 1; transform: scale(1.1); }

/* ===== FOOTER ===== */
footer {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), var(--green), var(--gold), transparent);
}

footer::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 260px;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,154,60,0.10), transparent 70%);
  pointer-events: none;
}

.footer__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.footer__container .footer__col:not(:last-child) {
  border-right: 1px solid rgba(196,154,60,0.25);
  padding-right: 4rem;
}

.footer__col--center { text-align: center; }

.footer__brand p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.85;
  margin-top: 0.5rem;
}

.footer__logo img { max-width: 130px; margin: 0 0 1.2rem; }

.footer__tagline {
  font-family: var(--header-font);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin: 1rem 0 1.2rem;
  letter-spacing: 0.02em;
}

.footer__socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }

.footer__socials a {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(196,154,60,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
}

.footer__socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(30,61,52,0.2);
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }

.footer__links li { display: flex; align-items: center; gap: 0.5rem; }

.footer__links li::before {
  content: "—";
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.7;
}

.footer__links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--green); letter-spacing: 0.2em; }

.footer__col h4 {
  font-family: var(--header-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1.5px;
  background: var(--gold);
}

.footer__col--center h4::after { left: 50%; transform: translateX(-50%); }

.footer__col p { color: var(--text-light); font-size: 0.88rem; line-height: 1.85; }

.footer__contact { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.5rem; }

.footer__contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-light);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer__contact__item i { color: var(--gold); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer__contact__item a { color: var(--text-mid); transition: var(--transition); }
.footer__contact__item a:hover { color: var(--green); }

.footer__bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(196,154,60,0.2);
  padding: 1.4rem 2rem;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bar span { font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-light); }

.footer__bar .footer__bar__links { display: flex; gap: 1.5rem; }

.footer__bar .footer__bar__links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__bar .footer__bar__links a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image::before { display: none; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .service__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__masonry { columns: 2; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 2rem 1.5rem; }
  .hero__content h1 { font-size: 2.8rem; }
  .slider-dots {
    flex-direction: row;
    bottom: 1.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .dot { width: 20px; height: 2px; }
  .dot.active { width: 36px; }

  /* ── MOBILE FOOTER — compact: logo, tagline, socials only ── */
  .footer__container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  /* hide quick links and contact columns on mobile */
  .footer__container .footer__col--center,
  .footer__container .footer__col:last-child {
    display: none;
  }

  /* remove divider from brand col since it's the only one */
  .footer__container .footer__col:not(:last-child) {
    border-right: none;
    border-bottom: none;
    padding-right: 0;
    padding-bottom: 0;
  }

  /* brand col — centred, tight */
  .footer__brand { padding: 0; }
  .footer__logo img {
    max-width: 100px;
    margin: 0 auto 0.8rem;
  }

  .footer__tagline {
    font-size: 0.9rem;
    margin: 0 0 0.6rem;
  }

  /* hide the long description paragraph on mobile */
  .footer__brand > p:not(.footer__tagline) { display: none; }

  .footer__socials {
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .footer__socials a {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  /* footer bar — single line, centred */
  .footer__bar {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    text-align: center;
  }

  /* hide privacy/terms links on mobile */
  .footer__bar .footer__bar__links { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .service__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__container { grid-template-columns: 1fr 1fr; }
  .footer__container .footer__col:last-child { grid-column: 1/-1; text-align: center; }
}


/* ================================================================
   HOME PAGE — additional component styles
   (appended to global.css so contact.html is unaffected)
   ================================================================ */

/* ── Transparent nav variant (home page only) ── */
/* On desktop, nav--transparent overrides the green background */
@media (min-width: 769px) {
  nav.nav--transparent {
    background: transparent !important;
    box-shadow: none;
  }
  nav.nav--transparent .nav__links {
    background: transparent;
  }
}


/* ── HERO ── */
/* The hero fills the full viewport INCLUDING behind the fixed nav */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;           /* desktop: full viewport */
  min-height: 560px;
  overflow: hidden;
  background: #0a0a0a;
  margin-top: 0;
}

/* ── PHONE (≤ 480px): 16:9 aspect ratio ──
   56.25vw = 9/16 × 100vw, clamped so it never
   gets too short (300px) or taller than 70vh     */
@media (max-width: 480px) {
  .hero {
    height: clamp(300px, 56.25vw, 70vh);
    min-height: unset;
  }
}

/* ── LARGER PHONE / SMALL PHONE LANDSCAPE (481px–600px): 16:10 ──
   62.5vw = 10/16 × 100vw                                         */
@media (min-width: 481px) and (max-width: 600px) {
  .hero {
    height: clamp(340px, 62.5vw, 72vh);
    min-height: unset;
  }
}

/* ── TABLET PORTRAIT (601px–768px): ~16:10 auto-fit ──           */
@media (min-width: 601px) and (max-width: 768px) {
  .hero {
    height: clamp(380px, 65vw, 78vh);
    min-height: unset;
  }
}

/* ── TABLET LANDSCAPE / SMALL LAPTOP (769px–1024px): 75vh ──     */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: 75vh;
    min-height: 480px;
  }
}

/* Prevent body from adding scroll offset for fixed nav on home page */
body:has(nav.nav--transparent) {
  padding-top: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slides img.active {
  opacity: 1;
}

/* vignette overlay — darkens edges so text pops */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.10) 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

/* centred hero copy */
.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero__copy h1 {
  font-family: var(--header-font);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.hero__copy h1 em {
  font-style: italic;
  color: var(--gold-pale);
}

/* ── slide indicators: 01 ——[bar]—— 02 ——[bar]—— 03 … ── */
.hero__indicators {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* On mobile the hero is shorter, so pull indicators up less */
@media (max-width: 600px) {
  .hero__indicators {
    bottom: 1.2rem;
  }
  /* Tighten spread margins so all 6 numbers fit on narrow screens */
  .hero__ind { margin: 0 4px; }
  .hero__ind.spread-left  { margin-left: 24px; }
  .hero__ind.spread-right { margin-right: 24px; }
  .hero__bar--active      { width: 56px; }
  .hero__bar__track       { width: 56px; }
}

/* each number button — has its own left/right margin that expands when adjacent bar is active */
.hero__ind {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  /* default tight margin on both sides */
  margin: 0 6px;
  transition: margin 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* when the bar BEFORE this number is active → push this number right */
.hero__ind.spread-left {
  margin-left: 38px;
}

/* when the bar AFTER this number is active → push this number left */
.hero__ind.spread-right {
  margin-right: 38px;
}

.hero__ind__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  transition: color 0.35s ease, letter-spacing 0.55s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

/* active number — brighter + slightly wider spacing */
.hero__ind.active .hero__ind__num {
  color: #fff;
  letter-spacing: 0.18em;
}

/* bar between numbers — zero width by default, expands when active */
.hero__bar {
  display: flex;
  align-items: center;
  /* bar starts with 0 width — expands to fit fill when active */
  width: 0;
  height: 20px;
  position: relative;
  overflow: visible;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* when active the bar container expands to show the track */
.hero__bar--active {
  width: 80px;
}

/* grey background track */
.hero__bar__track {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.5px;
  width: 80px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* visible only when bar is active */
.hero__bar--active .hero__bar__track {
  opacity: 1;
}

/* gold fill */
.hero__bar__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: none;
}

/* camera-frame corner decorations */
.hero__corner {
  position: absolute;
  z-index: 3;
  width: 22px;
  height: 22px;
  border-color: rgba(255,255,255,0.45);
  border-style: solid;
  pointer-events: none;
}
.hero__corner--tl { top: 18px; left: 18px;  border-width: 2px 0 0 2px; }
.hero__corner--tr { top: 18px; right: 18px; border-width: 2px 2px 0 0; }
.hero__corner--bl { bottom: 18px; left: 18px;  border-width: 0 0 2px 2px; }
.hero__corner--br { bottom: 18px; right: 18px; border-width: 0 2px 2px 0; }

/* ── ABOUT ── */
.about {
  background: var(--cream);
  padding: 6rem 2rem;
}

.about__inner {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* left — photographer image */
.about__img {
  position: relative;
}

.about__img img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* gold frame accent */
.about__img::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 1.5px solid rgba(196,154,60,0.45);
  border-radius: 3px;
  z-index: -1;
}

/* right — copy */
.about__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__body .section__subheader {
  text-align: left;
  margin-bottom: 0.6rem;
}

.about__heading {
  font-family: var(--header-font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.about__heading span {
  color: var(--gold);
  font-style: italic;
}

.about__rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}

.about__para {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

/* services mini-list */
.about__services {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about__svc {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  transition: var(--transition);
}

.about__svc:hover {
  border-color: rgba(196,154,60,0.4);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.about__svc__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}

.about__svc h4 {
  font-family: var(--header-font);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.about__svc p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── GALLERY PREVIEW ── */
.gp {
  background: var(--cream-dark);
  padding: 5rem 2rem;
}

.gp__inner {
  max-width: var(--max-width);
  margin: auto;
}

.gp__inner .section__subheader,
.gp__inner .section__header,
.gp__inner .section__description {
  text-align: center;
}

.gp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 0.9rem;
  margin: 2.5rem 0 2rem;
}

.gp__item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}

.gp__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, opacity 0.3s;
}

.gp__item:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

.gp__btn {
  text-align: center;
  margin-top: 1rem;
}

/* ── TESTIMONIALS ── */
.testi {
  background: var(--cream);
  padding: 5rem 2rem;
}

.testi__inner {
  max-width: var(--max-width);
  margin: auto;
}

.testi__inner .section__subheader,
.testi__inner .section__header {
  text-align: center;
}

.testi__card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testi__card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  display: block;
}

.testi__quote {
  font-family: var(--header-font);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 0.8rem;
}

.testi__card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testi__card h4 {
  font-family: var(--header-font);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.testi__card span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   SOCIAL HANDLES — real embed marquee
   ═══════════════════════════════════════════ */
.social {
  background: var(--cream-dark);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.social__head {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

/* outer clip + edge fade */
.social__marquee__outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right,
    transparent 0%, black 5%, black 95%, transparent 100%);
}

/* belt — one continuous row scrolling left */
.social__marquee__belt {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  width: max-content;
  animation: beltScroll 55s linear infinite;
  padding: 1rem 0 1.5rem;
}

/* pause on hover so users can interact with embeds */
.social__marquee__outer:hover .social__marquee__belt {
  animation-play-state: paused;
}

@keyframes beltScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* individual embed card */
.embed__card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.embed__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* coloured top badge strip */
.embed__badge {
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}

.embed__card--insta .embed__badge {
  background: linear-gradient(90deg, #f09433, #dc2743, #bc1888);
}

.embed__card--fb .embed__badge {
  background: #1877F2;
}

/* embed content area */
.embed__card .instagram-media,
.embed__card .fb-post,
.embed__card iframe {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: none !important;
  display: block;
}

.embed__card__body {
  padding: 0 0 0.5rem;
  flex: 1;
  min-height: 340px;
  display: flex;
  align-items: stretch;
}

.embed__card__body > * {
  width: 100%;
}

/* follow buttons */
.social__follow__row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.social__follow__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  transition: var(--transition);
}

.social__follow__btn--insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social__follow__btn--insta:hover { filter: brightness(1.1); transform: translateY(-2px); }

.social__follow__btn--fb { background: #1877F2; }
.social__follow__btn--fb:hover { background: #1460c8; transform: translateY(-2px); }

/* desktop embed card follow row — handled in mobile block above */


/* ── RESPONSIVE (home page sections) ── */
@media (max-width: 768px) {

  /* ── About: image + text side by side ── */
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
    align-items: start;
  }

  .about__img {
    grid-column: 1;
    grid-row: 1;
  }

  .about__img img {
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    width: 100%;
  }

  .about__img::after { display: none; }

  /* Body: right column, row 1 — flex so services sit at bottom */
  .about__body {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .about__body .section__subheader { text-align: left; margin-bottom: 0.2rem; }
  .about__heading { text-align: left; font-size: 1.15rem; line-height: 1.2; margin-bottom: 0.4rem; }
  .about__rule { margin: 0 0 0.5rem; width: 32px; }
  .about__para { font-size: 0.74rem; line-height: 1.6; margin-bottom: 0.3rem; }

  /* Services: visually span full width below both columns.
     Since .about__services lives inside .about__body (flex),
     we use a negative left margin to extend it across the left column. */
  .about__services {
    margin-top: 0.6rem;
    margin-left: calc(-100% - 1.2rem);
    width: calc(200% + 1.2rem);
    gap: 0.65rem;
    border-top: 1px solid var(--cream-deep);
    padding-top: 0.9rem;
  }

  .about__svc {
    padding: 0.7rem 0.9rem;
    gap: 0.7rem;
  }

  .about__svc__icon {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
    flex-shrink: 0;
  }

  .about__svc h4 { font-size: 0.88rem; margin-bottom: 0.1rem; }
  .about__svc p  { font-size: 0.74rem; line-height: 1.5; }

  /* gallery preview grid */
  .gp__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .hero__copy h1 { font-size: 2.4rem; }

  /* ── Social follow buttons: compact side-by-side pills ── */
  .social__follow__row {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1rem;
    margin-top: 1.5rem;
  }

  .social__follow__btn {
    padding: 0.55rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    gap: 0.3rem;
    flex: 1;
    justify-content: center;
    max-width: 170px;
  }

  /* ── Embed cards: smaller on mobile ── */
  .embed__card { width: 220px; }
  .embed__badge { padding: 0.4rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.08em; }
  .embed__card__body { min-height: 260px; }
}

/* ═══════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════ */

/* ── Tab bar ── */
.gal__tabs {
  background: var(--white);
  border-bottom: 1px solid var(--cream-deep);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(30,61,52,0.07);
}
@media (min-width: 769px) {
  .gal__tabs { top: 72px; }
}

.gal__tabs__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.gal__tab {
  flex: 1;
  padding: 1.1rem 1rem;
  background: none;
  border: none;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.gal__tab i { font-size: 1rem; }
.gal__tab::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  transition: left 0.35s ease, right 0.35s ease;
}
.gal__tab.active { color: var(--green); }
.gal__tab.active::after { left: 0; right: 0; }
.gal__tab:hover:not(.active) { color: var(--text-mid); }

/* ── Panel ── */
.gal__panel { display: none; }
.gal__panel.active {
  display: block;
  animation: galFadeIn 0.4s ease;
}
@keyframes galFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Panel header ── */
.gal__panel__header {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.gal__panel__header .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.gal__panel__header h2 {
  font-family: var(--header-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.gal__panel__header p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}
.gal__hdivider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  margin: 0.8rem 0 1.5rem;
}
.gal__hdivider::before,
.gal__hdivider::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
}
.gal__hdivider::before { background: linear-gradient(to right, transparent, var(--gold)); }
.gal__hdivider::after  { background: linear-gradient(to left,  transparent, var(--gold)); }

/* ── Grid ── */
.gal__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;   /* tiny base rows — items span multiples */
  gap: 0 1rem;           /* vertical gap handled by row-span, horizontal 1rem */
}

/* ── Item ── */
.gal__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--cream-deep);
  margin-bottom: 1rem;   /* gap between items vertically */
}

/* row-span variants — JS sets these via data-span attr */
.gal__item[data-span="short"]  { grid-row: span 25; }
.gal__item[data-span="medium"] { grid-row: span 32; }
.gal__item[data-span="tall"]   { grid-row: span 42; }

.gal__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}
.gal__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.82);
}
.gal__item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(30,61,52,0.18);
  z-index: 1;
}
.gal__item__overlay i { font-size: 2rem; color: #fff; }
.gal__item:hover .gal__item__overlay { opacity: 1; }

/* ── Loading / empty states ── */
.gal__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.gal__loading i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
  animation: galSpin 1s linear infinite;
}
@keyframes galSpin { to { transform: rotate(360deg); } }

.gal__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.gal__empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.3;
}

/* ── Lightbox ── */
.gal__lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
}
.gal__lightbox.open { display: flex; }
.gal__lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
  user-select: none;
}
.gal__lightbox__close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.gal__lightbox__close:hover { color: #fff; transform: scale(1.15); }
.gal__lightbox__prev,
.gal__lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.gal__lightbox__prev { left: 1.5rem; }
.gal__lightbox__next { right: 1.5rem; }
.gal__lightbox__prev:hover,
.gal__lightbox__next:hover { background: rgba(255,255,255,0.22); }
.gal__lightbox__counter {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  font-family: var(--body-font);
}

/* ── CTA strip ── */
.gal__cta {
  background: var(--green);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gal__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(196,154,60,0.15), transparent 65%);
}
.gal__cta h2 {
  position: relative;
  font-family: var(--header-font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.8rem;
}
.gal__cta p {
  position: relative;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0 auto 2rem;
  max-width: 480px;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 0.8rem;
  }
  .gal__tab span { display: none; }
}
@media (max-width: 540px) {
  .gal__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0.8rem 3rem;
    gap: 0 0.5rem;
  }
  .gal__item[data-span="short"]  { grid-row: span 18; }
  .gal__item[data-span="medium"] { grid-row: span 24; }
  .gal__item[data-span="tall"]   { grid-row: span 30; }
  .gal__lightbox__prev { left: 0.4rem; }
  .gal__lightbox__next { right: 0.4rem; }
}
