/* ── Shared section helpers ── */
.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--gold);
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Services ── */
#services {
  padding: 120px 48px;
  background: #f4f2ee;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-photo-wrap {
  position: relative;
  width: calc(100% + 72px);
  margin: -40px -36px 32px -36px;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: object-position 0.45s ease;
}

.svc-photo-wrap.expanded img {
  object-fit: contain;
  object-position: center center;
  background: #0a0a0a;
}

/* Arrow pointing from photo into card content */
.svc-photo-arrow {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid rgba(255, 255, 255, 0.55);
  z-index: 2;
}

.svc-photo-label {
  position: absolute;
  top: 12px;
  left: 14px;
  background: rgba(10, 10, 10, 0.7);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.svc-photo-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.svc-photo-wrap.expanded .svc-photo-hint {
  opacity: 0;
}

.svc-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  padding: 32px 29px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-card:has(.svc-photo-wrap) {
  padding-top: 0;
}

.svc-photo-wrap.expanded {
  background: #0a0a0a;
}

.svc-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.svc-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px) !important;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(201, 168, 76, 0.22);
}

.svc-icon-wrap svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1;
}

.svc-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.svc-includes {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
}

.svc-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
  margin-top: auto;
  width: fit-content;
}

.svc-link:hover {
  color: var(--black);
  border-color: var(--black);
  gap: 10px;
}

.svc-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card.bundle {
  grid-column: 1 / -1;
  background: var(--black);
  flex-direction: row;
  gap: 80px;
  align-items: center;
  padding: 56px 64px;
}

.svc-card.bundle::after {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(1);
}

.svc-card.bundle:hover {
  transform: translateY(-4px) !important;
}

.bundle-left {
  flex: 1;
}

.bundle-right {
  flex: 1;
}

.bundle-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.svc-card.bundle .svc-name {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.svc-card.bundle .svc-desc {
  color: rgba(249, 248, 246, 0.55);
  font-size: 15px;
  margin-bottom: 0;
}

.svc-card.bundle .svc-includes {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.svc-card.bundle .svc-includes li {
  color: rgba(249, 248, 246, 0.8);
}

.bundle-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.bundle-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.bundle-savings {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(249, 248, 246, 0.35);
  letter-spacing: 0.5px;
}

.bundle-savings strong {
  color: var(--gold);
}

/* ── Bundle teaser card ── */
.svc-card.bundle.bundle-teaser {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 56px;
  text-decoration: none;
  cursor: pointer;
}

.svc-card.bundle.bundle-teaser .svc-name {
  font-size: 28px;
  margin-bottom: 0;
}

.svc-card.bundle.bundle-teaser .svc-desc {
  max-width: 520px;
}

.bundle-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.bundle-teaser-arrow {
  animation: bundleArrow 1.2s ease-in-out infinite;
}

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

.services-strip {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.services-strip.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.strip-item {
  padding: 24px 28px;
  border: 2px solid #000;
  border-radius: 6px;
  margin: 0 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.strip-item:first-child {
  margin-left: 0;
}

.strip-item:last-child {
  margin-right: 0;
}

.strip-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(201,168,76,0.25);
}

.strip-label {
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.strip-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Service Areas ── */
#areas {
  padding: 100px 48px;
  background: linear-gradient(to bottom, #f4f2ee 0%, #e8e5df 40%, #d0cdc6 75%, #b0ada6 100%);
}

#areas .section-label {
  color: var(--gold);
}

#areas .section-title {
  color: var(--black);
}

#areas .section-title span {
  color: var(--gold);
}

#areas .section-sub {
  color: #3a3836;
}

.areas-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.area-pill {
  border: 2px solid #000;
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.55);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.area-pill:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.areas-note {
  margin-top: 32px;
  font-size: 14px;
  color: #3a3836;
  text-align: center;
}

/* ── Contact ── */
#contact .section-title {
  color: #fff;
}

#contact .section-title span {
  color: var(--gold);
}

#contact .section-sub {
  color: rgba(255,255,255,0.70);
}

.contact-field select option {
  background: #fff;
  color: #000;
}
.contact-field select optgroup {
  background: #fff;
  color: #8a6d1e;
  font-weight: 700;
}

#contact {
  padding: 120px 48px;
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
}

/* hex dot mask — same as hero */
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 1.5px, #0D0D0D 0 5.5px, transparent 5.5px),
    radial-gradient(circle at 50% 50%, transparent 1.5px, #0D0D0D 0 5.5px, transparent 5.5px);
  background-size: 10px 17.32px, 10px 17.32px;
  background-position: 0px 0px, 5px 8.66px;
  pointer-events: none;
  z-index: 1;
}

#contact::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
  z-index: 2;
}

.contact-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.contact-blob-gold {
  width: 550px; height: 550px;
  background: rgba(201,168,76,0.65);
  top: -10%; left: -8%;
  animation: blob-gold 14s ease-in-out infinite;
}
.contact-blob-black {
  width: 480px; height: 480px;
  background: rgba(10,10,10,0.80);
  bottom: -10%; right: -8%;
  animation: blob-black 12s ease-in-out infinite;
}
.contact-blob-gold2 {
  width: 360px; height: 360px;
  background: rgba(232,201,122,0.45);
  bottom: 20%; left: 40%;
  animation: blob-gold2 10s ease-in-out infinite;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-form {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-field label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.1);
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-top: -4px;
}

.contact-submit {
  align-self: flex-start;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 16px 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: inherit;
  margin-top: 8px;
}

.contact-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.contact-submit:active {
  transform: translateY(0);
}

/* ── About ── */
#about {
  padding: 120px 48px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.about-wave svg {
  display: block;
  width: 100%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-left {
  will-change: opacity, transform;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: opacity, transform;
}

.about-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.about-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.95;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 520px;
}

.about-badges {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.name-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: rgba(249,248,246,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 999px;
}

.name-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--gray);
  letter-spacing: 0.3px;
}

/* about photo */
.about-photo-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  z-index: 3;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-wrap:hover img {
  transform: scale(1.03);
}

.about-photo-names {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.80) 0%, transparent 100%);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  z-index: 2;
}

.about-photo-tag {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* stat cards */
.stat-card-main {
  background: var(--black);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.stat-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.stat-card-main .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.stat-card-main .big-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card-main .big-sub {
  font-size: 13px;
  color: rgba(249,248,246,0.45);
  letter-spacing: 1px;
}

.stat-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.stat-card-small {
  background: var(--light-bg);
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.stat-card-small::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card-small:hover::after {
  transform: scaleX(1);
}

.stat-card-small .sc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card-small .sc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
#gallery {
  background: #111;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.gallery-wave-top,
.gallery-wave-bottom {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}
.gallery-wave-top svg,
.gallery-wave-bottom svg {
  width: 100%;
  height: 60px;
  display: block;
}
.gallery-inner {
  padding: 80px 48px 96px;
}
.gallery-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.gallery-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.gallery-label.g-in { opacity: 1; transform: translateY(0); }
.gallery-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out 0.12s, transform 0.55s ease-out 0.12s;
}
.gallery-headline.g-in { opacity: 1; transform: translateY(0); }
.gallery-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out 0.24s, transform 0.55s ease-out 0.24s;
}
.gallery-sub.g-in { opacity: 1; transform: translateY(0); }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.gallery-tab-btn {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.gallery-tab-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: transparent;
}

.gallery-panel { display: none; opacity: 0; }
.gallery-panel.active { display: block; transition: opacity 0.25s ease; }

.carousel-wrap { position: relative; }
.carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a1a;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.carousel-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 0 0 12px 12px;
}
.carousel-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}
.carousel-placeholder svg {
  width: 48px; height: 48px;
  opacity: 0.2;
  fill: var(--gold);
}

/* Before/After single-image showcase slide */
.ba-single-slide { aspect-ratio: 16/9; }

/* Before/After pair slide */
.ba-pair-slide { aspect-ratio: 16/9; }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
}
.ba-half {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.ba-half img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.5px;
}
.ba-label-before { background: rgba(10,10,10,0.75); }
.ba-label-after  { background: var(--gold); }

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.carousel-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.carousel-arrow:disabled { opacity: 0.28; cursor: default; }
.carousel-arrow:not(:disabled):hover { background: var(--gold-light); }
.carousel-arrow svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 220px;
}
.carousel-dot {
  height: 8px;
  border-radius: 999px;
  background: rgba(201,168,76,0.25);
  width: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot.active { background: var(--gold); width: 20px; }

/* ── Video slides ── */
.video-slide-inner {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-slide-inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.video-play-overlay .play-btn {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  border-radius: 999px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  pointer-events: none;
  line-height: 1;
}

/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
#testimonials {
  background: #f0ede8;
  position: relative;
  padding: 0;
}

.testi-wave-top,
.testi-wave-bottom {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}
.testi-wave-top svg,
.testi-wave-bottom svg {
  width: 100%;
  height: 60px;
  display: block;
}

.testi-inner {
  padding: 0 0 96px;
}

.testi-header {
  text-align: center;
  padding: 80px 48px 56px;
  max-width: 680px;
  margin: 0 auto;
}

.testi-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.testi-label.testi-in { opacity: 1; transform: translateY(0); }

.testi-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  color: var(--black);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out 0.12s, transform 0.55s ease-out 0.12s;
}
.testi-headline.testi-in { opacity: 1; transform: translateY(0); }

.testi-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out 0.24s, transform 0.55s ease-out 0.24s;
}
.testi-sub.testi-in { opacity: 1; transform: translateY(0); }

.testi-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: 999px;
  padding: 8px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out 0.36s, transform 0.55s ease-out 0.36s;
}
.testi-rating-badge.testi-in { opacity: 1; transform: translateY(0); }

.testi-badge-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

.testi-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}

/* Marquee wrapper */
.testi-marquee-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.55s ease-out 0.66s;
}
.testi-marquee-wrap.testi-in { opacity: 1; }

/* Edge fade masks */
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f0ede8, transparent);
}
.testi-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f0ede8, transparent);
}

.testi-row {
  overflow: hidden;
  width: 100%;
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.testi-row-1 .testi-track { animation: testiLeft 45s linear infinite; }
.testi-row-2 .testi-track { animation: testiRight 45s linear infinite; }

/* Pause both rows when hovering either row */
.testi-marquee-wrap:hover .testi-track,
.testi-marquee-wrap.testi-paused .testi-track {
  animation-play-state: paused;
}

/* Review card */
.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.testi-card-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.testi-card-quote-bg {
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.testi-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.testi-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.testi-card-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.10);
  border-radius: 999px;
  padding: 3px 10px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   ADDITIONAL SERVICES SUBSECTION
══════════════════════════════════════ */
.subsection-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 72px 0 64px;
}
.subsection-header {
  text-align: center;
  margin-bottom: 48px;
}
.subsection-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.subsection-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: var(--black);
  letter-spacing: 2px;
}
.add-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.add-svc-card {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.add-svc-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out, box-shadow 0.3s ease;
}
.add-svc-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px) !important;
}
.add-svc-card .svc-icon-wrap { flex-shrink: 0; }
.add-svc-card .svc-desc { flex: 1; }
.add-svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  margin-top: auto;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.add-svc-cta:hover { color: var(--black); border-color: var(--black); }

/* ══════════════════════════════════════
   SERVICES INTERNAL WAVE DIVIDER
══════════════════════════════════════ */
.services-wave-divider {
  width: calc(100% + 96px);
  margin: 72px -48px 0;
  line-height: 0;
  overflow: hidden;
}
.services-wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ══════════════════════════════════════
   BUNDLES SUBSECTION
══════════════════════════════════════ */
.bundles-wrap {
  background: #fff;
  padding: 72px 48px 80px;
  margin: 0 -48px;
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.bundle-card {
  border-radius: 14px;
  padding: 32px;
  border: 0.5px solid rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bundle-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out, box-shadow 0.3s ease;
}
.bundle-card:hover { transform: translateY(-4px) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.bundle-card--popular {
  background: rgba(201,168,76,0.10);
  border: 1.5px solid rgba(201,168,76,0.60);
}
.bundle-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.bundle-recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #3a3a3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid rgba(0,0,0,0.15);
}
.bundle-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.bundle-includes {
  list-style: none;
  margin-bottom: 0;
  flex: 1;
}
.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--black);
}
.bundle-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201,168,76,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.bundle-tagline {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}
.bundle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.bundle-btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.bundle-btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}
.bundle-btn--solid {
  background: var(--gold);
  color: var(--black);
  border: none;
}
.bundle-btn--solid:hover {
  background: #b8942a;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.bundles-subheader {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 52px;
}
.bundles-sub {
  font-size: 16px;
  color: var(--gray);
  margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.bundle { flex-direction: column; gap: 40px; padding: 40px 32px; }
  .svc-photo-wrap { width: calc(100% + 48px); margin-left: -24px; margin-right: -24px; margin-top: 0; }
  .services-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .strip-item { margin: 0; padding: 20px 20px; }
  .strip-item:nth-child(3), .strip-item:last-child { }
  #about { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .add-services-grid { grid-template-columns: 1fr; }
  .bundles-wrap { padding: 56px 24px; margin: 0 -24px; }
  .bundles-grid { grid-template-columns: 1fr; }
  .services-wave-divider { width: calc(100% + 48px); margin: 56px -24px 0; }
  .subsection-title { font-size: 28px; }
}

@media (max-width: 768px) {
  #areas { padding: 80px 24px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-inner { padding: 56px 24px 96px; }
  .ba-pair { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .testi-header { padding: 60px 0 40px; }
  .testi-headline { font-size: 28px; }
  .testi-card { width: 260px; }
  .testi-card-text { font-size: 13px; }
  .testi-card-name, .testi-card-tag { font-size: 12px; }
}

@media (max-width: 480px) {
  #contact { padding: 80px 24px; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .carousel-track { transition: none !important; }
  .gallery-label, .gallery-headline, .gallery-sub {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .testi-row { overflow: visible; }
  .testi-marquee-wrap { overflow: visible; }
  .testi-marquee-wrap::before,
  .testi-marquee-wrap::after { display: none; }
  .testi-track {
    flex-wrap: wrap;
    width: auto;
    animation: none !important;
    padding: 0 48px;
    justify-content: center;
  }
  .testi-row-2 { display: none; }
}

/* ── Commercial Cleaning Card ── */
.commercial-card {
  display: grid;
  grid-template-columns: 40% 35% 25%;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 40px 48px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.10);
  border: 1.5px solid rgba(201, 168, 76, 0.50);
  transition: transform 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(30px);
}
.commercial-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out, border-color 0.25s ease;
}
.commercial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.80);
}
.commercial-left {
  padding-right: 40px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}
.commercial-middle {
  padding: 0 36px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}
.commercial-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-left: 36px;
}
.commercial-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.commercial-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 14px;
}
.commercial-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.70);
}
.commercial-clients {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  font-size: 13px;
  line-height: 2;
  color: rgba(10, 10, 10, 0.80);
}
.commercial-clients li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.commercial-clients li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.commercial-cta {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 32px;
  min-width: 160px;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.commercial-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.commercial-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 999px;
}
.commercial-cta:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: none;
}
.commercial-note {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.55);
  text-align: center;
}
@media (max-width: 900px) {
  .commercial-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    border-radius: 16px;
    gap: 28px;
  }
  .commercial-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding-bottom: 24px;
  }
  .commercial-middle {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding-bottom: 24px;
  }
  .commercial-right {
    padding-left: 0;
  }
}
