/*
Theme Name: Upholstery Theme
Author: Victor Jimenez Pucheta
Version: 1.0
*/
/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F0E8;
  --warm-white:  #FDFAF4;
  --dark:        #1C1A17;
  --charcoal:    #2E2B26;
  --brown:       #7A5C3E;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --muted:       #8A8070;
  --border:      rgba(201, 169, 110, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --nav-h: 5rem;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: min(1200px, 92vw);

  --badge-size: 130px;
  font-size: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 3.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(28, 26, 23, 0.35);
  transition: background 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(28, 26, 23, 0.88);
  padding: 0.9rem 3.75rem;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Desktop links */
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { width: 100%; }

/* CTA button */
.nav__cta {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background-color: transparent;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(20, 18, 15, 0.97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav__drawer.open {
  opacity: 1;
  pointer-events: all;
}
.nav__drawer ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nav__drawer ul a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__drawer ul a:hover { color: var(--gold); }
.nav__drawer .nav__cta-mobile {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.nav__drawer .nav__cta-mobile:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.955) 0%,     /* dark at top, for header */
    rgba(0,0,0,0.25) 50%,       /* fades to clear by 30% down */
    rgba(0,0,0,0) 70%,       /* stays clear through the middle */
    rgba(0,0,0,0.858) 100%    /* dark again at bottom, for CTA */
  );
  z-index: 1;
}




/* Hero inner */
.hero__inner {
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  max-width: 68rem;
  margin: 0 auto;
}
.hero__header-group {
  position: absolute;
  top: 6.5%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  max-width: 38rem;
  margin: 0 auto 2.4rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero__actions {
  position: absolute;
  bottom: 6%;         /* distance from bottom, as % of hero height */
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero image placeholder */
.hero__image-wrap {
  position: absolute;
  inset: 0;

  width: 100%;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #2E2B26 0%, #3d3730 50%, #2a2620 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  will-change: scroll-position;
}

.hero__image-placeholder picture {
  display: block;   /* or display: contents; see note below */
  width: 100%;
  height: 100%;

}
.hero__image-placeholder picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* only if you still want the parallax oversized-crop behavior */
  object-position: center;
}
/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.container { max-width: var(--container); margin: 0 auto; }

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-strip__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.about-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.about-strip__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.about-strip__img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d9cfc2 0%, #c8bba9 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}

/* ===== OBJECTION BUSTERS ===== */
.objections {
  background: var(--dark);
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
}

.objections__grid {
  display: flex;

  align-items: center;
}
.fa-award, .fa-handshake, .fa-people-roof {
  background-image: linear-gradient(to right, var(--gold-light), var(--warm-white), var(--gold));





  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* Crucial for background boundaries */
  color: #c2bab0;
}

.objection-card {
  flex: 1;

  padding: 2.5rem 2rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  text-align: center;
}
.objection-card:hover {

  transform: translateY(-4px);
}

.objection-card__icon {
  font-size: 6rem;
  margin-bottom: 1.2rem;
}
.objection-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.objection-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.objection-card:not(:last-child) { border-right: 1px solid #e0e0e0; }

/* ===== SERVICES GRID ===== */
.services {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}

.section-header__title--dark { color: var(--charcoal); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}
.service-card__placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.15);
}
.service-card__placeholder .tint {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  opacity: 0.85;
}
.service-card__placeholder .depth {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 80%);
}

.service-card:hover .service-card__bg { background: rgba(0,0,0,0.2); }

.service-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

.service-card__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform 0.3s;
}
.service-card:hover .service-card__body { transform: translateY(-4px); }

.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px) saturate(140%);
  border-radius: 10px;
  padding: 16px;
}

.service-card__arrow {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-card__arrow { opacity: 1; }
/* ===== REVIEWS ===== */
.reviews {
  background: var(--dark);
  padding: var(--section-pad) 0;
}
/* ===== CONTACT / HOURS ===== */
.contact-bar {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.contact-block__label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.contact-block__heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.contact-block__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}
.contact-block__text a {
  color: var(--brown);
  transition: color 0.2s;
}
.contact-block__text a:hover { color: var(--gold); }

/* Social */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}
.social-links a {


  display: flex; align-items: center; justify-content: space-evenly;
  font-size: 0.75rem;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

#facebook {
  width: 64px;
  height: auto; 
}
#youtube {
  height: 100px;
  width: auto;
}
#instagram {
  height: 75px;
  width: auto; 
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 2rem 0;
  text-align: center;
}
footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
}

/* ===== DIVIDER ===== */
.gold-divider {
  width: 3rem; height: 2px;
  background: var(--gold);
  margin: 0 auto 1.2rem;
}
.gold-divider--left { margin: 0 0 1.2rem; }
/* ---- About Page-specific styles only ---- */

/* Hero banner */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: calc(var(--nav-h) + 2rem);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a2620 0%, #1c1a17 60%, #0e0d0b 100%);
}
.page-hero__bg-img {
  position: absolute;
  inset: 0;
  background: #2e2b26; /* swap for real img later */
  opacity: 0.35;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.92) 0%, rgba(28,26,23,0.3) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.page-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 16ch;
  margin-inline: auto;

}
.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

/* Origin story — two column */
.origin {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.origin__img-wrap {
  position: relative;
}
.origin__img-placeholder {
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}
/* Small accent square */
.origin__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.4;
}

.origin__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.origin__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.origin__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
}
.origin__text p {
  margin-bottom: 1rem;

}
/* Proof stats bar */
.stats {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.stats__grid {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Craft / process section */
.craft {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.craft__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.craft__text-col { order: 1; }
.craft__img-col  { order: 2; }

.craft__img-placeholder {
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}



.craft__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.craft__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.craft__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
}
.craft__text p {

  margin-bottom: 1rem;
} 
/* Team / faces section */
.team {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.team-card {
  text-align: center;
}
.team-card__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d4cdc4, #c2bab0);
  border-radius: 4px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.team-card__role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Promise / closing CTA */
.promise {
  background: var(--dark);
  padding: var(--section-pad) 0;
  text-align: center;
}
.promise__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.promise__quote::before { content: '\201C'; color: var(--gold); }
.promise__quote::after  { content: '\201D'; color: var(--gold); }
.promise__attribution {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
}
/* ---- FAQ page styles ---- */

.faq-hero {
  background: var(--dark);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.faq-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.faq-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.faq-hero__sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: rgba(255,255,255,0.45);
  max-width: 38rem;
  margin-inline: auto;
  line-height: 1.75;
}

/* FAQ body */
.faq-body {
  background: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 var(--section-pad);
}

/* Optional category label above a group of questions */
.faq-group {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq-group__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

/* Accordion item */
.faq-item {
  border-bottom: 1px solid #e8e4dd;
}
.faq-item:first-of-type {
  border-top: 1px solid #e8e4dd;
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-item__trigger:hover .faq-item__question,
.faq-item.open .faq-item__question {
  color: var(--brown);
}

/* +/- icon */
.faq-item__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #d8d2c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item__trigger:hover .faq-item__icon,
.faq-item.open .faq-item__icon {
  border-color: var(--gold);
  background: var(--gold);
}

/* Horizontal bar (always visible) */
.faq-item__icon::before {
  content: '';
  position: absolute;
  width: 0.65rem;
  height: 1.5px;
  background: var(--muted);
  border-radius: 1px;
  transition: background 0.25s;
}
/* Vertical bar (hidden when open) */
.faq-item__icon::after {
  content: '';
  position: absolute;
  width: 1.5px;
  height: 0.65rem;
  background: var(--muted);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, background 0.25s;
}
.faq-item__trigger:hover .faq-item__icon::before,
.faq-item__trigger:hover .faq-item__icon::after,
.faq-item.open .faq-item__icon::before,
.faq-item.open .faq-item__icon::after {
  background: var(--dark);
}
.faq-item.open .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer panel — animates open/close */
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-item__panel {
  grid-template-rows: 1fr;
}
.faq-item__panel-inner {
  overflow: hidden;
}
.faq-item__answer {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 58rem;
}
.faq-item__answer p + p {
  margin-top: 0.75rem;
}

/* Still have questions CTA */
.faq-cta {
  background: var(--dark);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.faq-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.faq-cta__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  line-height: 1.8;
}

/* Narrow content column for readability */
.faq-body .container {
  max-width: min(780px, 92vw);
}
/* ---- Gallery page styles ---- */

.gallery-hero {
  background: var(--dark);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
}
.gallery-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.gallery-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-btn:hover {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

/* Gallery body */
.gallery-body {
  background: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-pad);
  min-height: 60vh;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

/* Each row is a wrapper so we can observe per-row */
.gallery-row {
  display: contents; /* rows are logical, grid handles layout */
}

/* Individual item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #e8e4dd; /* skeleton base */
  cursor: pointer;
}

/* Aspect ratio controlled by category tag or default */
.gallery-item { aspect-ratio: 4/3; }
.gallery-item--tall { aspect-ratio: 3/4; }
.gallery-item--wide { aspect-ratio: 16/9; }

/* Skeleton shimmer — shown before image loads */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
}
.gallery-item.loaded::before {
  opacity: 0;
  pointer-events: none;
}



/* The actual image */
.gallery-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.loaded .gallery-item__img {
  opacity: 1;
}
.gallery-item:hover .gallery-item__img {
  transform: scale(1.03);
}

/* Hover overlay with caption */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__caption {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.4;
}
.gallery-item__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.gallery-item__caption span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Empty state */
.gallery-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--muted);
  display: none;
}
.gallery-empty.visible { display: block; }
.gallery-empty p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.gallery-empty span { font-size: 0.9rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,13,11,0.95);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  position: relative;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}
.lightbox__placeholder {
  width: min(80vw, 900px);
  aspect-ratio: 4/3;
  background: #2a2620;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__info {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.55);
}
.lightbox__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.lightbox__info span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
/* ---- Service styles only ---- */

.service-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: calc(var(--nav-h) + 2rem);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a2620 0%, #1c1a17 60%, #0e0d0b 100%);
}
.service-hero__bg-img {
  position: absolute;
  inset: 0;
  background: #2e2b26;
  opacity: 0.3;
  /* swap: style="background-image:url('images/services-hero.webp');background-size:cover;background-position:center;" */
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.92) 0%, rgba(28,26,23,0.35) 100%);
}
.service-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.service-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;

}
.service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 18ch;
  margin-inline: auto;

}
.service-hero__title em {
  font-style: italic;
  color: var(--gold);
}

/* Intro — centered, narrow, no image */
.services-intro {
  background: var(--warm-white);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  text-align: center;
}
.services-intro__text {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--muted);
  line-height: 1.85;
}

/* Individual service bands */
.service-band {
  padding: var(--section-pad) 0;
}
.service-band--light { background: var(--warm-white); }
.service-band--cream { background: var(--cream); }

.service-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* Alternate image side per band */
.service-band--flip .service-band__img  { order: 2; }
.service-band--flip .service-band__text { order: 1; }

.service-band__img-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}

.service-band__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-band__img-placeholder .tint {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  opacity: 0.85;
}
.service-band__img-placeholder .depth {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 80%);
}


.service-band__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.service-band__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.service-band__divider {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.1rem;
}
.service-band__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.service-band__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
  transition: color 0.2s, gap 0.2s;
}
.service-band__link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-band__link:hover {
  color: var(--gold);
  gap: 0.75rem;
}
.service-band__link:hover::after {
  transform: translateX(3px);
}

/* Divider rule between bands */
.band-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Gallery CTA band */
.gallery-cta {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.gallery-cta__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.gallery-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.gallery-cta__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  max-width: 34rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.gallery-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Not sure section */
.not-sure {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.not-sure__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.not-sure__text {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.6rem;
  line-height: 1.8;
}






/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .nav { padding: 1.1rem 2rem; }
  .nav.scrolled { padding: 0.8rem 2rem; }
  .nav__links { display: none; }
  .nav__cta  { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }

  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__img-placeholder { max-width: 480px; }

  .objections__grid { flex-direction: column; }
  .objection-card:not(:last-child) { border-bottom: 1px solid #e0e0e0; border-right: none; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .contact-bar__grid { grid-template-columns: 1fr 1fr; }
  .origin__grid,
  .craft__grid {
    grid-template-columns: 1fr;
  }
  .craft__text-col { order: 2; }
  .craft__img-col  { order: 1; }

  .origin__img-wrap::after { display: none; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .service-band__grid {
    grid-template-columns: 1fr;
  }
  .service-band--flip .service-band__img  { order: 1; }
  .service-band--flip .service-band__text { order: 2; }

}


/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
    justify-content: center;
  }
  .nav__logo { order: 2; }
  .nav__burger { order: 1; position: absolute; left: 1.25rem; }
  /* CTA hidden on mobile nav bar; appears in drawer */

  .hero__film { display: none; }

  .services__grid { grid-template-columns: 1fr; }

  .contact-bar__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .stats__grid { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .lightbox__nav { display: none; }
  .objection-card:not(:last-child) { border-bottom: 1px solid #e0e0e0; border-right: none; }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    place-items: unset; /* grid's place-items no longer applies once flex takes over */
  }

  .hero__header-group,
  .hero__actions,
  .hero__image-wrap {
    position: static;
    inset: auto;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;

  }

  .hero__header-group {
    order: 1;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 1.5rem;
  }

  .hero__image-wrap {
    order: 2;
    width: 100%;          /* Forces the element to have width on mobile */
  }

  .hero__image-placeholder {
    width: 100%;
    height: auto;         /* Fill the wrap container completely */
    aspect-ratio: unset;
  }

  .hero__image-placeholder picture img {
    width: 100%;
    height: auto;        /* Fill the container fully */
    display: block;
    object-fit: contain;   /* Crops the image cleanly into the 3:2 box without distorting it */
  }



  .hero__actions {
    order: 3;
    flex-direction: column;
    padding: 1.5rem 1.5rem calc(2rem + env(safe-area-inset-bottom));
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}