/* ════════════════════════════════════════════
   PLAPS — MAIN STYLESHEET
   Aesthetic: Luxury Editorial — Warm Ivory & Gold
════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --ivory:    #faf7f2;
  --cream:    #f2ede4;
  --warm-white: #fffcf7;
  --gold:     #c8a96e;
  --gold-light: #e4cfa0;
  --gold-dark: #9a7a45;
  --charcoal: #1a1714;
  --dark:     #2a2520;
  --mid:      #6b5f52;
  --muted:    #9b8f82;
  --border:   #e2d9cc;
  --border-dark: #c8bdb0;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --fs-xs:  0.72rem;
  --fs-sm:  0.875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;
  --fs-5xl: 5.5rem;

  --radius-sm: 3px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(26,23,20,0.08);
  --shadow-md: 0 8px 32px rgba(26,23,20,0.12);
  --shadow-lg: 0 24px 64px rgba(26,23,20,0.18);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-sub {
  font-size: var(--fs-lg);
  color: var(--mid);
  margin-top: 16px;
  max-width: 520px;
}
.section-header {
  margin-bottom: 56px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn--sm { padding: 10px 22px; font-size: var(--fs-xs); }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: var(--charcoal);
  color: rgba(250,247,242,0.8);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  padding: 9px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__inner a { color: var(--gold-light); transition: color 0.2s; }
.topbar__inner a:hover { color: var(--gold); }
.topbar__sep { color: var(--mid); }
.topbar__social {
  margin-left: auto;
  display: flex;
  gap: 14px;
}
.topbar__social a {
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.topbar__social a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   SITE HEADER
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  /* flex-shrink: 0; */
}
.logo--light { color: var(--ivory); }
.logo__plaps { font-weight: 600; }
.logo__divider { color: var(--gold); font-weight: 300; margin: 0 4px; }
.logo__decor { color: var(--gold); font-style: italic; font-weight: 300; }
.plaps-logo{ width: 40%; }
/* Nav */
.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__list > li { position: relative; }
.site-nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.site-nav__list > li > a:hover,
.site-nav__list > li > a.active {
  color: var(--gold-dark);
  background: rgba(200,169,110,0.08);
}
.chevron { font-size: 0.65rem; transition: transform 0.2s; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 600px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px;
}
.dropdown__grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: var(--fs-sm);
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.dropdown__grid a:hover {
  background: var(--cream);
  color: var(--gold-dark);
}
.dropdown__grid a span { font-size: 1.1rem; }

/* Right side */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 90vw);
  background: var(--warm-white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__inner {
  flex: 1;
  overflow-y: auto;
  padding: 80px 28px 32px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer__inner nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-drawer__inner nav > a,
.mobile-drawer__inner nav > details > summary {
  display: block;
  padding: 14px 0;
  font-size: var(--fs-lg);
  font-family: var(--ff-display);
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
}
.mobile-sub { padding: 8px 0 8px 16px; display: flex; flex-direction: column; gap: 4px; }
.mobile-sub a { padding: 8px 0; font-size: var(--fs-sm); color: var(--mid); }
.mobile-drawer__footer { padding-top: 28px; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.visible { opacity: 1; pointer-events: auto; }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__marquee {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 100%;
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  color: rgba(200,169,110,0.07);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  display: flex;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 580px; }
.hero__eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero__heading em {
  font-style: italic;
  color: var(--gold-dark);
  display: block;
}
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  display: inline;
}
.stat > span { font-family: var(--ff-display); font-size: 1.8rem; color: var(--gold); }
.stat p { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stat__divider { width: 1px; height: 48px; background: var(--border-dark); }

/* Hero Visual */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
}
.hero__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero__img-frame img { width: 100%; height: 560px; object-fit: cover; }
.hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 16px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.hero__img-badge span {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero__img-badge small { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hero__float-card {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero__float-card strong { display: block; font-size: var(--fs-sm); font-weight: 500; }
.hero__float-card small { font-size: var(--fs-xs); color: var(--muted); }

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ══════════════════════════════════════
   QUICK QUOTE BAR
══════════════════════════════════════ */
.quote-bar {
  background: var(--charcoal);
  padding: 56px 0;
}
.quote-bar__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.quote-bar__label .quote-bar__tag {
  color: var(--gold);
}
.quote-bar__label h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.25;
  margin-top: 8px;
}
.quote-bar__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 16px;
  align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group select {
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--ivory); }

/* ══════════════════════════════════════
   USP CARDS
══════════════════════════════════════ */
.usps {
  padding: 96px 0;
  background: var(--warm-white);
}
.usps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.usp-card {
  background: var(--warm-white);
  padding: 40px 36px;
  transition: background 0.3s;
}
.usp-card:hover { background: var(--cream); }
.usp-card__icon { font-size: 2rem; margin-bottom: 16px; }
.usp-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.usp-card p { font-size: var(--fs-sm); color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.services {
  padding: 96px 0;
  background: var(--cream);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: saturate(0.85);
}
.service-card:hover .service-card__img img {
  transform: scale(1.06);
  filter: saturate(1);
}
.service-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.service-card__tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.service-card__body h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}
.service-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════
   ABOUT STRIP
══════════════════════════════════════ */
.about-strip {
  padding: 96px 0;
  background: var(--warm-white);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip__text p {
  color: var(--mid);
  font-size: var(--fs-lg);
  margin: 20px 0 36px;
  line-height: 1.8;
}
.team-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.team-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.team-card strong { display: block; font-size: var(--fs-sm); font-weight: 500; }
.team-card small { font-size: var(--fs-xs); color: var(--muted); }

/* About gallery */
.about-strip__gallery {
  position: relative;
  min-height: 520px;
}
.about-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  position: absolute;
}
.about-img--main {
  width: 78%;
  height: 480px;
  top: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}
.about-img--accent {
  width: 50%;
  height: 280px;
  bottom: -40px;
  left: 0;
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 40px;
  left: 20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--ff-display);
}
.about-badge strong { display: block; font-size: 2.2rem; font-weight: 600; line-height: 1; }
.about-badge span { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; }

/* ══════════════════════════════════════
   GALLERY MASONRY
══════════════════════════════════════ */
.gallery-section { padding: 96px 0; background: var(--cream); }
.gallery-masonry {
  column-count: 3;
  column-gap: 16px;
  /* padding: 0 var(--gutter); */
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s, filter 0.5s;
  filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.1); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.8), transparent);
  color: #fff;
  padding: 48px 20px 20px;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--charcoal);
}
.testimonials .section-tag { color: var(--gold); }
.testimonials .section-title { color: var(--ivory); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: background 0.3s, border-color 0.3s;
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,169,110,0.3);
}
.review-card__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card__text { font-size: var(--fs-lg); color: rgba(250,247,242,0.8); line-height: 1.75; font-style: italic; font-family: var(--ff-display); font-weight: 300; margin-bottom: 24px; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}
.review-card__author strong { display: block; color: var(--ivory); font-size: var(--fs-sm); }
.review-card__author small { color: var(--muted); font-size: var(--fs-xs); }

/* ══════════════════════════════════════
   PARTNERS
══════════════════════════════════════ */
.partners {
  padding: 96px 0;
  background: var(--warm-white);
  overflow: hidden;
}
.partners .section-tag,
.partners .section-title { color: var(--charcoal); }
.partners .section-title em { color: var(--gold-dark); }
.partners__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollTrack 20s linear infinite;
}
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  min-width: 200px;
  padding: 20px 40px;
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--border-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-right: 16px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
  cursor: default;
}
.partner-logo:hover { color: var(--gold-dark); border-color: var(--gold); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--charcoal) 0%, #2d261e 100%);
}
.cta-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,169,110,0.12) 0%, transparent 70%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-banner__inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin: 12px 0 20px;
}
.cta-banner__inner h2 em { font-style: italic; color: var(--gold); }
.cta-banner__inner p { font-size: var(--fs-lg); color: rgba(250,247,242,0.65); margin-bottom: 40px; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--charcoal); }
.site-footer__top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 64px;
}
.footer-col h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col--brand p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 24px;
  max-width: 300px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li,
.footer-col ul a {
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item > span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: var(--fs-sm); color: var(--muted); }
.footer-contact-item a { color: var(--gold-light); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.site-footer__bottom {
  padding: 24px 0;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p { font-size: var(--fs-xs); color: rgba(155,143,130,0.6); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}
/* ════ BREADCRUMB ════ */
.breadcrumb {
  background:var(--cream);
  border-bottom:1px solid var(--border);
  padding:13px 0;
}
.breadcrumb__inner {
  display:flex; align-items:center; gap:8px;
  font-size:0.78rem; letter-spacing:.08em; color:var(--muted);
}
.breadcrumb__inner a { color:var(--gold-dark); transition:color .2s; }
.breadcrumb__inner a:hover { color:var(--gold); }
.breadcrumb__sep { color:var(--border-dark); }
.breadcrumb__current { color:var(--mid); }

/* ════════════════════════════════════════════
   PAGE HERO — matches lusso site's cream hero
   with left content + right stacked image
════════════════════════════════════════════ */
.page-hero {
  background:var(--cream);
  padding:80px 0 72px;
  position:relative;
  overflow:hidden;
}
/* Subtle grid pattern same as homepage */
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(200,169,110,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.05) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.page-hero__inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
  position:relative; z-index:1;
}
.page-hero__eyebrow {
  font-size:.72rem; letter-spacing:.25em; text-transform:uppercase;
  color:var(--gold-dark); margin-bottom:16px; font-weight:500;
}
.page-hero__title {
  font-family:var(--ff-display);
  font-size:clamp(3rem,5.5vw,5.5rem);
  font-weight:300; line-height:1.05;
  color:var(--charcoal); margin-bottom:12px;
}
.page-hero__title em { font-style:italic; color:var(--gold-dark); display:block; }
.page-hero__tagline {
  font-family:var(--ff-display);
  font-size:clamp(1rem,1.6vw,1.25rem);
  font-style:italic; font-weight:300;
  color:var(--gold-dark);
  border-left:2px solid var(--gold);
  padding-left:16px;
  margin-bottom:24px;
  line-height:1.5;
}
.page-hero__desc {
  font-size:1rem; color:var(--mid); line-height:1.85;
  margin-bottom:36px; max-width:480px;
}
.page-hero__actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }
.page-hero__meta {
  display:flex; align-items:center; gap:32px;
  padding-top:36px; border-top:1px solid var(--border-dark);
}
.hmeta strong {
  display:block; font-family:var(--ff-display);
  font-size:2.2rem; font-weight:300; color:var(--charcoal); line-height:1;
}
.hmeta span { color:var(--gold); font-family:var(--ff-display); font-size:1.6rem; }
.hmeta p { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:4px; }
.hmeta-div { width:1px; height:44px; background:var(--border-dark); }

/* Hero image side */
.page-hero__visual { position:relative; }
.page-hero__img-main {
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.page-hero__img-main img {
  width:100%; height:500px; object-fit:cover;
  filter:brightness(.92) saturate(.88);
  transition:transform .6s var(--ease);
}
.page-hero__img-main:hover img { transform:scale(1.03); }

.page-hero__badge {
  position:absolute; bottom:24px; left:24px;
  background:var(--charcoal); color:var(--ivory);
  padding:16px 22px; border-radius:var(--radius);
  border-left:3px solid var(--gold);
}
.page-hero__badge strong {
  display:block; font-family:var(--ff-display);
  font-size:1.8rem; font-weight:300; color:var(--gold); line-height:1;
}
.page-hero__badge small { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }

.page-hero__float {
  position:absolute; top:32px; right:-16px;
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius); padding:14px 18px;
  display:flex; align-items:center; gap:10px;
  box-shadow:var(--shadow-md);
}
.page-hero__float strong { display:block; font-size:.875rem; font-weight:500; }
.page-hero__float small { font-size:.72rem; color:var(--muted); }

/* ════ INTRO BLOCK — dark charcoal strip ════ */
.intro-strip {
  background:var(--charcoal);
  padding:72px 0;
}
.intro-strip__inner {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:72px; align-items:center;
}
.intro-strip__label {
  font-family:var(--ff-display);
  font-size:clamp(2.5rem,4.5vw,4rem);
  font-weight:300; color:var(--ivory); line-height:1.05;
}
.intro-strip__label em { font-style:italic; color:var(--gold); display:block; }
.intro-strip__text p {
  font-size:clamp(.95rem,1.3vw,1.1rem);
  color:rgba(250,247,242,.55); line-height:1.9;
  margin-bottom:16px;
}
.intro-strip__text p:first-child { color:rgba(250,247,242,.85); font-size:clamp(1rem,1.5vw,1.2rem); }

/* ════ SYSTEM A — UPVC ════ */
.system-section { padding:96px 0; }
.system-section--alt { background:var(--cream); }

.system-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.system-inner--rev .system-content { order:2; }
.system-inner--rev .system-visual  { order:1; }

/* System label pill */
.system-pill {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--gold); color:var(--charcoal);
  padding:6px 18px 6px 10px;
  border-radius:99px;
  margin-bottom:20px;
}
.system-pill__letter {
  font-family:var(--ff-display);
  font-size:1.5rem; font-weight:600; line-height:1;
  width:34px; height:34px;
  background:var(--charcoal); color:var(--gold);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.system-pill__name {
  font-size:.7rem; font-weight:500;
  letter-spacing:.18em; text-transform:uppercase;
}

.system-title {
  font-family:var(--ff-display);
  font-size:clamp(2rem,3.5vw,3.2rem);
  font-weight:300; line-height:1.1;
  color:var(--charcoal); margin-bottom:16px;
}
.system-title em { font-style:italic; color:var(--gold-dark); }

.system-desc { color:var(--mid); font-size:1rem; line-height:1.85; margin-bottom:32px; }

/* Feature items — matching lusso USP card style */
.feat-list { display:flex; flex-direction:column; margin-bottom:36px; }
.feat-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.feat-item:last-child { border-bottom:none; }
.feat-item__dot {
  width:8px; height:8px;
  background:var(--gold); border-radius:50%;
  flex-shrink:0; margin-top:8px;
}
.feat-item__body strong {
  display:block; font-size:.9rem; font-weight:500;
  color:var(--charcoal); margin-bottom:3px; letter-spacing:.02em;
}
.feat-item__body p { font-size:.82rem; color:var(--muted); line-height:1.6; }

/* System visual */
.system-visual { position:relative; }
.system-img {
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.system-img img {
  width:100%; aspect-ratio:4/3; object-fit:cover;
  filter:saturate(.85); transition:transform .6s var(--ease), filter .5s;
}
.system-img:hover img { transform:scale(1.03); filter:saturate(1); }

.sys-tag {
  position:absolute; bottom:28px; right:28px;
  background:var(--gold); color:var(--charcoal);
  font-family:var(--ff-display);
  padding:14px 20px; border-radius:var(--radius);
  text-align:center;
}
.sys-tag strong { display:block; font-size:1.8rem; font-weight:600; line-height:1; }
.sys-tag span { font-size:.65rem; letter-spacing:.15em; text-transform:uppercase; }

.sys-badge-dark {
  position:absolute; top:24px; left:-20px;
  background:var(--charcoal); color:var(--ivory);
  padding:14px 18px; border-radius:var(--radius);
  border-left:3px solid var(--gold);
  display:flex; align-items:center; gap:12px;
  box-shadow:var(--shadow-md);
}
.sys-badge-dark strong { display:block; font-size:.875rem; font-weight:500; }
.sys-badge-dark small { font-size:.68rem; color:var(--gold-light); }

/* ════ PROMISE / USP GRID — same as homepage usps ════ */
.promise-section { padding:80px 0; background:var(--warm-white); }
.promise-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px; background:var(--border);
  border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
}
.promise-card {
  background:var(--warm-white);
  padding:36px 30px;
  transition:background .3s;
}
.promise-card:hover { background:var(--cream); }
.promise-card__icon { font-size:1.8rem; margin-bottom:14px; }
.promise-card h3 {
  font-family:var(--ff-display);
  font-size:1.2rem; font-weight:400;
  color:var(--charcoal); margin-bottom:10px;
}
.promise-card p { font-size:.82rem; color:var(--mid); line-height:1.7; }

/* ════ PULL QUOTE — dark band ════ */
.pullquote {
  background:var(--dark);
  padding:88px 0; text-align:center;
  position:relative; overflow:hidden;
}
.pullquote::before {
  content:'"';
  position:absolute; top:-40px; left:40px;
  font-family:var(--ff-display);
  font-size:30vw; color:rgba(255,255,255,.025);
  line-height:1; pointer-events:none;
}
.pullquote__text {
  font-family:var(--ff-display);
  font-size:clamp(1.8rem,3.5vw,3rem);
  font-weight:300; font-style:italic;
  color:var(--ivory); line-height:1.4;
  max-width:780px; margin:0 auto 20px;
  position:relative; z-index:1;
}
.pullquote__text em { color:var(--gold); font-style:normal; }
.pullquote__attr {
  font-size:.72rem; letter-spacing:.25em;
  text-transform:uppercase; color:var(--muted);
  position:relative; z-index:1;
}

/* ════ B2B SECTION ════ */
.b2b-section { padding:96px 0; background:var(--cream); }
.b2b-inner {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:80px; align-items:center;
}
.b2b-text h2 { margin:12px 0 16px; }
.b2b-text > p { color:var(--mid); font-size:1rem; line-height:1.85; margin-bottom:36px; }

.partner-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px; margin-bottom:36px;
}
.partner-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 20px;
  display:flex; align-items:center; gap:14px;
  transition:border-color .25s, box-shadow .25s, transform .25s;
}
.partner-card:hover {
  border-color:var(--gold);
  box-shadow:0 4px 16px rgba(200,169,110,.15);
  transform:translateY(-2px);
}
.partner-card__icon {
  width:42px; height:42px; border-radius:var(--radius-sm);
  background:var(--cream); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; flex-shrink:0;
}
.partner-card strong { display:block; font-size:.875rem; font-weight:500; color:var(--charcoal); }
.partner-card small { font-size:.75rem; color:var(--muted); }

/* B2B stacked images */
.b2b-visual { position:relative; min-height:480px; }
.b2b-img-a {
  position:absolute; top:0; right:0;
  width:82%; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-lg);
}
.b2b-img-a img { width:100%; height:380px; object-fit:cover; filter:saturate(.85); }
.b2b-img-b {
  position:absolute; bottom:0; left:0;
  width:52%; border-radius:var(--radius-lg);
  overflow:hidden;
  border:4px solid var(--warm-white);
  box-shadow:var(--shadow-md);
}
.b2b-img-b img { width:100%; height:240px; object-fit:cover; filter:saturate(.8); }
.b2b-badge {
  position:absolute; top:32px; left:20px;
  background:var(--gold); color:var(--charcoal);
  padding:16px 20px; border-radius:var(--radius);
  font-family:var(--ff-display); text-align:center;
  z-index:2;
}
.b2b-badge strong { display:block; font-size:1.8rem; font-weight:600; line-height:1; }
.b2b-badge span { font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; }

/* ════ DESIGN STYLES GALLERY ════ */
.styles-section { padding:96px 0; background:var(--warm-white); }
.styles-section .section-header { margin-bottom:48px; }
.styles-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.style-card {
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  aspect-ratio:3/4;
  cursor:pointer;
  border:1px solid var(--border);
}
.style-card img {
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.8) brightness(.9);
  transition:transform .55s var(--ease), filter .4s;
}
.style-card:hover img { transform:scale(1.06); filter:saturate(1.05) brightness(.95); }
.style-card__caption {
  position:absolute; bottom:0; left:0; right:0;
  padding:48px 18px 18px;
  background:linear-gradient(to top, rgba(26,23,20,.75), transparent);
  opacity:0; transition:opacity .35s;
}
.style-card:hover .style-card__caption { opacity:1; }
.style-card__caption strong {
  display:block; font-family:var(--ff-display);
  font-size:1.1rem; font-weight:400; color:#fff; margin-bottom:3px;
}
.style-card__caption span {
  font-size:.7rem; letter-spacing:.12em;
  text-transform:uppercase; color:rgba(255,255,255,.6);
}
.style-card__pill {
  position:absolute; top:14px; right:14px;
  background:var(--gold); color:var(--charcoal);
  font-size:.65rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase;
  padding:4px 10px; border-radius:99px;
}
.styles-note {
  text-align:center; margin-top:36px;
  font-family:var(--ff-display);
  font-size:1rem; font-style:italic;
  color:var(--muted);
}
/* ── Scroll reveal ── */
[data-reveal] {
  opacity:0; transform:translateY(24px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].visible { opacity:1; transform:none; }
[data-reveal][data-delay="1"] { transition-delay:.1s; }
[data-reveal][data-delay="2"] { transition-delay:.2s; }
[data-reveal][data-delay="3"] { transition-delay:.3s; }
[data-reveal][data-delay="4"] { transition-delay:.4s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero__float-card { right: 0; }
}

@media (max-width: 900px) {
  .site-nav, .site-header__right .btn--sm { display: none; }
  .site-header__inner {
    justify-content: space-between;
  }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  /* .hero__visual { display: none; } */
  .hero__heading { font-size: clamp(3rem, 8vw, 5rem); }
  .quote-bar__inner { grid-template-columns: 1fr; gap: 32px; }
  .quote-bar__form { grid-template-columns: 1fr 1fr; }
  .usps__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__gallery { min-height: 320px; margin-top: 32px; }
  .about-img--main { width: 85%; height: 320px; }
  .about-img--accent { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }
}

@media (max-width: 600px) {
  /*.plaps-logo{ width: 50%; }*/
  .topbar__inner { justify-content: center; }
  .topbar__social { display: none; }
  .hero { min-height: auto; }
  .quote-bar__form { grid-template-columns: 1fr; }
  .usps__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-masonry { column-count: 1; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__stats { gap: 20px; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { text-align: center; justify-content: center; }
}
@media (max-width:1100px) {
  .page-hero__float { right:0; }
  .styles-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .page-hero__inner { grid-template-columns:1fr; }
  .page-hero__visual { display:none; }
  .intro-strip__inner { grid-template-columns:1fr; gap:32px; }
  .system-inner { grid-template-columns:1fr; gap:40px; }
  .system-inner--rev .system-content,
  .system-inner--rev .system-visual { order:unset; }
  .sys-badge-dark { left:0; }
  .promise-grid { grid-template-columns:repeat(2,1fr); }
  .b2b-inner { grid-template-columns:1fr; }
  .b2b-visual { min-height:320px; margin-top:32px; }
  .b2b-img-a { width:90%; height:260px; }
  .b2b-img-b { display:none; }
}
@media (max-width:600px) {
  .partner-grid { grid-template-columns:1fr; }
  .styles-grid { grid-template-columns:1fr 1fr; }
  .page-hero__meta { flex-wrap:wrap; gap:20px; }
}