/* =========================================
   Looks Lab by Edith's - Editorial System
   ========================================= */

:root {
  --primary: #577f6c;
  --primary-deep: #466857;
  --secondary: #93a286;
  --accent: #6d5337;
  --dark: #27231e;
  --dark-soft: #322c25;
  --light: #fdf2d3;
  --cream: #f7edd0;
  --white: #ffffff;
  --muted: rgba(39, 35, 30, 0.64);
  --muted-light: rgba(253, 242, 211, 0.68);
  --border: rgba(39, 35, 30, 0.12);
  --border-light: rgba(253, 242, 211, 0.14);

  --font-display: "Manrope", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --gold: #c4a574;
  --forest: #1a221c;

  --container: 1440px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 50px rgba(39, 35, 30, 0.14);
  --shadow-soft: 0 12px 30px rgba(39, 35, 30, 0.08);

  --announce-h: 48px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

h1, .hero-title { font-size: clamp(2.5rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow--light { color: var(--secondary); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background:
    radial-gradient(circle at top right, rgba(87, 127, 108, 0.18), transparent 42%),
    var(--dark);
  color: var(--light);
}

.section--dark .section-lead,
.section-lead--light { color: var(--muted-light); }

.section-header {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header--row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.social-follow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.32), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active::after { opacity: 1; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(87, 127, 108, 0.32);
}

.btn-primary:hover { background: var(--primary-deep); }

.btn-secondary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(109, 83, 55, 0.22);
}

.btn-rect {
  border-radius: 8px;
  gap: 0.55rem;
}

.btn-ghost {
  background: transparent;
  color: var(--light);
  border-color: rgba(253, 242, 211, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(253, 242, 211, 0.7);
}

.play-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-grid;
  place-items: center;
  position: relative;
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 2px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.icon-btn:hover {
  background: var(--light);
  transform: translateY(-1px);
}

/* Announcement */
.announce {
  position: relative;
  z-index: 1100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-light);
  color: var(--light);
}

.announce-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  padding: 0.65rem 0;
  text-align: center;
}

.announce-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(87, 127, 108, 0.22);
  border: 1px solid rgba(147, 162, 134, 0.35);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announce p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(253, 242, 211, 0.78);
}

.announce-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--light);
  border-bottom: 1px solid rgba(253, 242, 211, 0.45);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.announce-cta:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(39, 35, 30, 0.55);
  backdrop-filter: blur(10px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-solid {
  background: rgba(39, 35, 30, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  border-radius: 8px;
}

.brand--footer .brand-logo {
  height: 56px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.is-active { color: var(--white); }

.nav-cta { min-height: 46px; padding-inline: 1.25rem; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero slider */
.hero {
  position: relative;
  min-height: calc(100svh - var(--announce-h) - var(--header-h));
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.hero-track { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
}

.hero-slide.is-active .hero-media img {
  transform: scale(1.12);
}

.hero-veil {
  background:
    linear-gradient(180deg, rgba(39, 35, 30, 0.28) 0%, rgba(39, 35, 30, 0.2) 40%, rgba(39, 35, 30, 0.82) 100%),
    linear-gradient(90deg, rgba(39, 35, 30, 0.55), transparent 58%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 clamp(5rem, 10vw, 7rem);
  max-width: 52rem;
  margin-inline: auto;
  width: min(100% - 2.5rem, var(--container));
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease) 0.15s, transform 0.7s var(--ease) 0.15s;
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--light);
}

.hero-title {
  margin-bottom: 1rem;
  max-width: 13ch;
}

.hero-text {
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.6rem;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(39, 35, 30, 0.35);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease);
}

.hero-arrow:hover { background: rgba(87, 127, 108, 0.7); }

.hero-dots {
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.hero-dots button.is-active {
  width: 26px;
  background: var(--light);
}

/* Stats */
.stats {
  background: var(--dark-soft);
  color: var(--light);
  padding: 2.75rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--light);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* Services - editorial rows */
.services-header {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2.5rem;
}

.services-header .section-lead {
  margin: 0;
  max-width: 22rem;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease);
}

.service-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark);
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-row:hover .service-row-media img {
  transform: scale(1.04);
}

.service-row-body {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding-bottom: 0.25rem;
}

.service-index {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.service-row-body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.service-row-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34rem;
}

.service-row-body .text-link {
  margin-top: 0.55rem;
  width: fit-content;
}

/* About */
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img,
.about-media-img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  /* Prefer the salon-chair / green-panel side of the render */
  object-position: 78% 45%;
}

.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--light);
  color: var(--dark);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  min-width: 88px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about-badge span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.about-copy p { color: var(--muted-light); max-width: 36rem; }

.about-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 1.75rem;
}

.about-points li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(253, 242, 211, 0.88);
  font-weight: 500;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* Gallery rail */
.gallery-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem max(1.25rem, calc((100vw - var(--container)) / 2)) 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 min(78vw, 360px);
  scroll-snap-align: start;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--dark);
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-nav { display: flex; gap: 0.55rem; }

/* Team removed - styles cleaned */

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 740px;
}

.testimonial-track { position: relative; min-height: 220px; }

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(147, 162, 134, 0.45);
}

.testimonial-top h3 { margin: 0; color: var(--light); }

.stars {
  color: var(--light);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.testimonial-card > p {
  margin: 0;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
  font-size: 1.4rem;
  cursor: pointer;
}

.slider-dots { display: flex; gap: 0.45rem; }

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(253, 242, 211, 0.28);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--secondary);
  width: 22px;
  border-radius: 999px;
}

/* Instagram */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.ig-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--dark);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.ig-item:hover img { transform: scale(1.07); }

/* CTA */
.cta {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-media,
.cta-veil { position: absolute; inset: 0; }

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-veil {
  background: linear-gradient(180deg, rgba(39, 35, 30, 0.55), rgba(39, 35, 30, 0.82));
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.6rem;
  font-size: 1.1rem;
}

/* Contact / booking - minimal */
.contact {
  border-top: 1px solid var(--border);
}

.contact-shell {
  max-width: 720px;
  width: 100%;
  min-width: 0;
}

.contact-intro {
  margin-bottom: 2.5rem;
}

.contact-intro .section-lead {
  margin-bottom: 0;
}

.booking-form {
  display: grid;
  gap: 2rem;
}

.booking-fields {
  display: grid;
  gap: 1.5rem;
}

.booking-form .field {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--border);
}

.booking-form .field label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.booking-form .field input,
.booking-form .field select {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.35rem 0 0.9rem;
  color: var(--dark);
  font-size: 1.05rem;
  appearance: none;
}

.booking-form .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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236D5337' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
}

.booking-form .field input::placeholder {
  color: rgba(39, 35, 30, 0.35);
}

.booking-form .field input:focus,
.booking-form .field select:focus {
  outline: none;
}

.booking-form .field:focus-within {
  border-bottom-color: var(--primary);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.booking-actions .btn {
  min-width: 220px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-meta a:hover {
  color: var(--primary);
}

.form-note {
  margin: 0;
  min-height: 1.25rem;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.76);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand .brand { margin-bottom: 1rem; }

.site-footer h3 {
  color: var(--light);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.footer-list a:hover { color: var(--white); }

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: var(--light);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.socials a:hover {
  background: rgba(87, 127, 108, 0.35);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 17, 14, 0.94);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: var(--shadow-soft);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-media img,
  .hero-slide,
  .hero-content,
  .service-row,
  .gallery-item img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}
