:root {
  --ink: #12141a;
  --ink-soft: #1c2030;
  --ink-mid: #2a3144;
  --paper: #f4f1eb;
  --stone: #e2ddd3;
  --mist: #faf8f5;
  --crimson: #b4232e;
  --crimson-deep: #8f1a23;
  --navy: #16324f;
  --copper: #b8895a;
  --muted: #6a6f7a;
  --line: rgba(18, 20, 26, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18, 20, 26, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(180, 35, 46, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(22, 50, 79, 0.08), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 40%, var(--stone) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

address {
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--crimson);
  color: var(--white);
  font-weight: 600;
  border-radius: 0.35rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.section-shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
}

.section-lead {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(18, 20, 26, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(1120px, calc(100% - 2.5rem));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  min-width: 0;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.35rem;
  background:
    linear-gradient(145deg, var(--crimson) 0%, var(--crimson-deep) 55%, var(--navy) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 28% 22% 22% 22%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-bottom: 0;
  clip-path: polygon(50% 0, 100% 45%, 100% 100%, 0 100%, 0 45%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.brand-amp {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
  font-weight: 500;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.4rem;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.header-cta:hover {
  background: var(--crimson-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(180, 35, 46, 0.35);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.28rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.28rem) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(18, 20, 26, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.88);
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.5) 0%, rgba(18, 20, 26, 0.28) 35%, rgba(18, 20, 26, 0.82) 100%),
    linear-gradient(90deg, rgba(18, 20, 26, 0.6) 0%, transparent 58%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 7rem;
}

.hero-brand {
  margin-bottom: 1.15rem;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.15s forwards;
}

.hero-brand-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 4.9rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-brand-amp {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.35s forwards;
}

.hero-lead {
  margin-top: 1.15rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--crimson-deep);
  box-shadow: 0 14px 32px rgba(180, 35, 46, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  animation: pulseLine 1.8s ease-in-out infinite;
}

/* Listing */
.listing {
  padding: 6.5rem 0 5rem;
}

.listing-intro h2,
.gallery-head h2,
.services-head h2,
.about-copy h2,
.faq-head h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 14ch;
}

.listing-stage {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.listing-visual {
  margin: 0;
  overflow: hidden;
  min-height: 100%;
  background: var(--ink);
  position: relative;
}

.listing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.listing-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.listing-visual:hover img {
  transform: scale(1.06);
}

.listing-panel {
  background: var(--ink);
  color: var(--white);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.listing-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(180, 35, 46, 0.35), transparent 70%);
  pointer-events: none;
}

.price-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.price {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.4rem);
  line-height: 1;
  margin: 0.35rem 0 0.35rem;
}

.price-currency {
  font-size: 0.55em;
  margin-right: 0.05em;
}

.price-suffix {
  font-size: 0.55em;
  margin-left: 0.1em;
}

.price-note {
  margin-bottom: 1.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.spec-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.spec-list li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.spec-value {
  font-size: 1rem;
  font-weight: 400;
}

.listing-story {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 46rem;
}

.listing-story h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 0.85rem;
}

.listing-story p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.listing-story strong {
  color: var(--ink);
  font-weight: 600;
}

/* Gallery */
.gallery {
  padding: 2rem 0 6rem;
}

.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--ink-soft);
}

.gallery-item.is-large {
  grid-row: span 2;
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 20, 26, 0.55));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-hint {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.gallery-item:hover .gallery-hint,
.gallery-item:focus-visible .gallery-hint {
  opacity: 1;
  transform: none;
}

.video-row {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.video-card {
  background: var(--ink);
  color: var(--white);
  transition: transform 0.35s var(--ease);
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.video-card p {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Services */
.services {
  padding: 5rem 0 5.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent),
    var(--paper);
}

.services-list {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  counter-reset: service;
}

.services-list li {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  counter-increment: service;
}

.services-list li::before {
  content: "0" counter(service);
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--crimson);
  letter-spacing: 0.04em;
}

.services-list h3 {
  font-size: 1.7rem;
  margin-bottom: 0.65rem;
}

.services-list p {
  color: var(--muted);
  font-weight: 300;
  max-width: 28ch;
}

/* About */
.about {
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(22, 50, 79, 0.06), transparent 40%),
    var(--ink);
  color: var(--white);
}

.about .eyebrow {
  color: var(--copper);
}

.about .section-lead,
.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-facts {
  margin: 2rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.about-facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.3rem;
}

.about-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.about-portrait {
  margin: 0;
  position: relative;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 1rem -0.85rem -0.85rem 1rem;
  border: 1px solid rgba(184, 137, 90, 0.45);
  z-index: 0;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) saturate(0.95);
}

.about-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(18, 20, 26, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-portrait strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.about-portrait span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.about-copy strong {
  color: var(--white);
  font-weight: 600;
}

.inspection-block {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 1.75rem;
}

.inspection-copy {
  max-width: 38rem;
}

.inspection-copy h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.85rem;
}

.inspection-copy p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
}

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.inspection-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  min-height: 0;
}

.inspection-shot img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s var(--ease);
}

.inspection-shot:hover img {
  transform: scale(1.03);
}

.inspection-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, transparent, rgba(10, 12, 16, 0.75));
}

/* FAQ */
.faq {
  padding: 5.5rem 0 4rem;
}

.faq-list {
  margin-top: 2.25rem;
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 0 1.25rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.faq-item[open] {
  background: var(--white);
  border-color: rgba(180, 35, 46, 0.28);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--crimson);
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.2rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 40rem;
}

/* Contact */
.contact {
  padding: 4rem 0 6rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-channels {
  display: grid;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-link span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-link strong {
  font-size: 1.15rem;
  font-weight: 500;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(180, 35, 46, 0.45);
  transform: translateX(4px);
  background: var(--white);
}

.contact-link-accent {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.contact-link-accent span {
  color: var(--copper);
}

.contact-link-accent:hover,
.contact-link-accent:focus-visible {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2.75rem;
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-tag {
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

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

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}

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

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1faa55;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 170, 85, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: floatIn 0.8s var(--ease) 1.2s both;
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(31, 170, 85, 0.5);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 2rem;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s var(--ease);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 75vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .listing-stage,
  .about-grid,
  .contact-shell,
  .footer-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .inspection-shot img {
    max-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }

  .gallery-item.is-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }

  .video-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-portrait::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .hero-content {
    padding-bottom: 6rem;
  }

  .hero-brand {
    max-width: none;
  }

  .listing,
  .contact,
  .about,
  .services,
  .faq {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item.is-large {
    grid-column: auto;
    min-height: 220px;
  }

  .video-row {
    grid-template-columns: 1fr;
  }

  .listing-visual img {
    min-height: 280px;
  }

  .inspection-grid {
    grid-template-columns: 1fr;
  }

  .inspection-shot img {
    max-height: 280px;
    aspect-ratio: 16 / 10;
    object-position: center 22%;
  }

  .float-wa {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video,
  .hero-brand,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .scroll-cue::after,
  .float-wa,
  .reveal,
  .lightbox {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
