/* =====================================================
   Alltek Plastering & Rendering Ltd — stylesheet
   Mobile-first. Breakpoints: 768px (tablet), 1200px (desktop).
   ===================================================== */

:root {
  /* Brand palette */
  --charcoal: #1E1E1E;
  --deep-black: #111111;
  --black: #0A0A0A;
  --dark-2: #1A1A1A;
  --gold: #D4A843;
  --gold-soft: #E5BC5C;
  --mid-grey: #5C5C5C;
  --off-white: #F5F5F3;
  --white: #FFFFFF;

  /* Fonts */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 2px;
  --nav-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--off-white);
  background: var(--deep-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.gold { color: var(--gold); }

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin: 0 0 48px;
}
.section-title--light { color: var(--off-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn--gold {
  background: var(--gold);
  color: var(--deep-black);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}
.btn--ghost:hover { background: var(--off-white); color: var(--deep-black); }
.btn--ghost-light { color: var(--off-white); border-color: rgba(245,245,243,.4); }
.btn--block { width: 100%; }

/* ---------- 1. Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(17, 17, 17, .96);
  box-shadow: 0 1px 0 rgba(212, 168, 67, .15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
  height: var(--nav-h);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--off-white);
}
.nav__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__logo-text { display: none; }

.nav__links { display: none; }
.nav__links ul {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 8px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: none; }

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--off-white);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav__mobile {
  background: var(--deep-black);
  border-top: 1px solid rgba(245,245,243,.08);
  padding: 16px var(--gutter) 24px;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid rgba(245,245,243,.06);
}
.nav__mobile a.btn { border-bottom: 0; margin-top: 8px; color: var(--deep-black); }

@media (min-width: 768px) {
  .nav__logo-text { display: inline-block; }
  .nav__links { display: block; }
  .nav__cta { display: inline-flex; padding: 10px 20px; font-size: 13px; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ---------- 2. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--deep-black);
  padding: calc(var(--nav-h) + 32px) 0 80px;
  overflow: hidden;
}
.hero__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
  z-index: 2;
}
/* CSS plaster grain — SVG turbulence inlined as data URI */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6;
  mix-blend-mode: overlay;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-left: clamp(28px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero__main { min-width: 0; }
.hero__logo {
  width: clamp(120px, 36vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,168,67,.3), 0 20px 50px rgba(0,0,0,.45);
  justify-self: start;
  order: -1;
  margin-bottom: 8px;
  opacity: 0;
  animation: hero-fade .9s var(--ease) .15s forwards;
}
.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .hero__content {
    grid-template-columns: 1.4fr auto;
    gap: 64px;
  }
  .hero__logo {
    width: clamp(220px, 28vw, 320px);
    justify-self: end;
    order: 0;
    margin-bottom: 0;
    animation-delay: 1.1s;
  }
}
.hero__eyebrow {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-fade .8s var(--ease) .3s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 11vw, 120px);
  line-height: .95;
  letter-spacing: 2px;
  color: var(--off-white);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-slide .8s var(--ease) .6s forwards;
}
.hero__title-line:nth-child(2) { animation-delay: .75s; }
.hero__title-line:nth-child(3) { animation-delay: .9s; }
.hero__sub {
  max-width: 520px;
  margin: 0 0 32px;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(245,245,243,.65);
  opacity: 0;
  animation: hero-fade .8s var(--ease) 1.05s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-slide .8s var(--ease) 1.2s forwards;
}
.hero__scroll {
  position: absolute;
  inset: auto 0 24px 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: hero-fade .8s var(--ease) 1.5s forwards;
}
.hero__scroll svg { animation: bounce 1.8s ease-in-out infinite; color: var(--gold); }

@keyframes hero-fade  { to { opacity: 1; } }
@keyframes hero-slide { to { opacity: 1; transform: translateY(0); } }
@keyframes bounce     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Award strip (between hero and trust bar) ---------- */
.award-strip {
  background: var(--deep-black);
  padding: 16px var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(212, 168, 67, .25);
  border-bottom: 1px solid rgba(212, 168, 67, .25);
}
.award-strip__inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.award-strip__icon { flex-shrink: 0; }
@media (max-width: 600px) {
  .award-strip__inner {
    font-size: 11px;
    letter-spacing: 1.5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- 3. Trust bar ---------- */
.trust {
  background: var(--dark-2);
  padding: 56px 0;
  border-top: 1px solid rgba(212,168,67,.08);
  border-bottom: 1px solid rgba(212,168,67,.08);
}
.trust__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 56px);
  color: var(--gold);
  line-height: 1;
}
.trust__label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--off-white);
}
.trust__divider { display: none; }

@media (min-width: 768px) {
  .trust__row {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
  }
  .trust__divider {
    display: block;
    width: 1px;
    height: 64px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }
}

/* ---------- 4. Services ---------- */
.services {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 96px 0;
}
.services .eyebrow { color: var(--gold); }
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.service-card { flex: 0 0 100%; }
@media (min-width: 768px)  { .service-card { flex: 0 0 calc(50% - 10px); } }
@media (min-width: 1200px) { .service-card { flex: 0 0 calc(33.333% - 14px); } }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  padding: 28px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
  overflow: hidden;
}
@media (min-width: 768px) { .service-card { padding: 32px 28px; } }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.service-card p {
  margin: 0;
  color: var(--mid-grey);
  font-size: 15px;
}

/* ---------- 5. About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr;
}
.about__image {
  background: var(--deep-black);
  padding: 64px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__photo-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, rgba(212,168,67,.04) 0 20px, transparent 20px 40px),
    #2a2a2a;
  border: 1px solid rgba(212,168,67,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,243,.5);
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
}
.about__photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(212,168,67,.2);
  display: block;
}
.about__copy {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 64px var(--gutter);
}
.about__copy .section-title { color: var(--charcoal); }
.about__copy p {
  color: var(--mid-grey);
  margin: 0 0 16px;
  max-width: 56ch;
}
.award-mention {
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 168, 67, .08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 56ch;
}
.award-mention__star {
  color: var(--gold);
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}
.award-mention strong { color: var(--charcoal); }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}
.credentials li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.credentials svg { color: var(--gold); }

@media (min-width: 1024px) {
  .about { grid-template-columns: 1fr 1fr; min-height: 80vh; }
  .about__image, .about__copy { padding: 96px clamp(40px, 6vw, 96px); }
}

/* ---------- 6. Gallery ---------- */
.gallery {
  background: var(--deep-black);
  color: var(--off-white);
  padding: 96px 0;
}
.gallery__grid {
  column-count: 1;
  column-gap: 12px;
}
@media (min-width: 600px)  { .gallery__grid { column-gap: 16px; } }
@media (min-width: 768px)  { .gallery__grid { column-count: 2; } }
@media (min-width: 1200px) { .gallery__grid { column-count: 3; } }

.gallery__tile {
  position: relative;
  margin: 0 0 12px;
  break-inside: avoid;
  background: #1f1f1f;
  border: 1px solid rgba(212,168,67,.12);
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 600px) { .gallery__tile { margin: 0 0 16px; } }
.gallery__tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.gallery__tile:hover img { transform: scale(1.04); }
.gallery__cta { text-align: center; margin-top: 32px; }

/* ---------- 7. Testimonials (review screenshot masonry) ---------- */
.testimonials {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 96px 0;
}
.testimonials .section-title { color: var(--charcoal); }

.testimonials__masonry {
  column-count: 1;
  column-gap: 20px;
}
@media (min-width: 768px)  { .testimonials__masonry { column-count: 2; } }
@media (min-width: 1200px) { .testimonials__masonry { column-count: 3; } }

.review-card {
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 28px 20px 22px;
  break-inside: avoid;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
@media (min-width: 768px) { .review-card { padding: 32px 28px 24px; } }
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}
.review-card__mark {
  position: absolute;
  top: 14px;
  left: 20px;
  width: 36px;
  height: 36px;
  color: var(--gold);
  pointer-events: none;
}
.review-card blockquote {
  margin: 30px 0 20px;
}
@media (max-width: 600px) {
  .review-card__mark { width: 28px; height: 28px; top: 12px; left: 16px; }
  .review-card blockquote { margin-top: 24px; }
}
.review-card blockquote p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.review-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}
.review-card__name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.review-card__date {
  font-size: 12px;
  color: var(--mid-grey);
}

.testimonials__cta { text-align: center; margin-top: 40px; }
.btn--ghost-dark { color: var(--charcoal); border-color: rgba(0,0,0,.2); }
.btn--ghost-dark:hover { background: var(--charcoal); color: var(--off-white); border-color: var(--charcoal); }

/* ---------- 8. Coverage ---------- */
.coverage {
  background: var(--dark-2);
  padding: 96px 0;
  text-align: center;
}
.coverage__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
}
.coverage__pills li {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 20px;
  border: 1px solid rgba(212,168,67,.4);
  border-radius: 999px;
  background: rgba(212,168,67,.06);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.coverage__pills li:hover { background: var(--gold); color: var(--deep-black); }
.coverage__body {
  max-width: 56ch;
  margin: 0 auto 32px;
  color: rgba(245,245,243,.7);
}

/* ---------- 9. Contact ---------- */
.contact {
  background: var(--deep-black);
  color: var(--off-white);
  padding: 96px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 1fr 1.2fr; } }
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--off-white);
  font-size: 16px;
}
.contact__list svg { color: var(--gold); flex-shrink: 0; }
.contact__list a:hover { color: var(--gold); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,245,243,.7);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--off-white);
  background: rgba(245,245,243,.04);
  border: 1px solid rgba(245,245,243,.12);
  padding: 12px 14px;
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,168,67,.06);
}
/* Dropdown options render on the OS panel (white background by default),
   so force readable dark-on-white inside the menu */
.field select option {
  background-color: var(--white);
  color: var(--charcoal);
}
.field select option[value=""] {
  color: var(--mid-grey);
}
.field__hint {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(245,245,243,.45);
  margin-left: 6px;
}
.contact__form .btn { grid-column: 1 / -1; margin-top: 8px; }
.form__status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.4em;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
}
.form__photos-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 0;
  padding: 14px 16px;
  background: rgba(212, 168, 67, .06);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 245, 243, .8);
}
.form__photos-note svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.form__photos-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.form__photos-note a:hover { color: var(--gold-soft); }

@media (max-width: 600px) { .contact__form { grid-template-columns: 1fr; } }

/* Honeypot — visually hidden but still in the DOM for bots to fill */
.field--hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Contact social buttons ---------- */
.contact__or {
  margin: 32px 0 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,245,243,.5);
}
.contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: transform .25s var(--ease), filter .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.social-btn--whatsapp { background: #25D366; color: #fff; }
.social-btn--facebook { background: #1877F2; color: #fff; }

/* ---------- Footer socials ---------- */
.footer__socials {
  display: inline-flex;
  gap: 14px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(245,245,243,.7);
  border: 1px solid rgba(212,168,67,.3);
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.footer__socials a:hover {
  color: var(--deep-black);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- 10. Footer ---------- */
.footer {
  background: var(--black);
  color: var(--off-white);
  border-top: 1px solid rgba(212,168,67,.4);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-size: 18px;
}
.footer__logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer__nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,245,243,.7);
}
.footer__nav a:hover { color: var(--gold); }
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(245,245,243,.5);
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- Floating mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--deep-black);
  text-align: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-top: 2px solid var(--gold-soft);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (max-width: 767px) { .mobile-cta { display: block; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
