:root {
  --navy: #07111c;
  --navy-2: #0d1c2e;
  --blue: #1a3d63;
  --gold: #c9a44a;
  --gold-2: #e2c57a;
  --silver: #c5ced8;
  --muted: #9aa6b4;
  --line: rgba(201, 164, 74, 0.28);
  --card: rgba(13, 28, 46, 0.78);
  --text: #eef3f8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --header: 76px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
}

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

a {
  color: var(--gold-2);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lead {
  color: var(--silver);
  font-size: 1.05rem;
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1408;
  box-shadow: 0 8px 20px rgba(201, 164, 74, 0.18);
}

.btn-gold:hover {
  box-shadow: 0 14px 28px rgba(201, 164, 74, 0.32);
  filter: brightness(1.06);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(201, 164, 74, 0.08);
}

.btn-lg {
  padding: 0.9rem 1.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header);
  background: rgba(7, 17, 28, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 17, 28, 0.92);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  justify-self: start;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

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

.site-nav a {
  color: var(--silver);
  font-size: 0.92rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  color: var(--gold-2);
  padding: 8px;
}

.nav-toggle .hi {
  width: 24px;
  height: 24px;
}

.hi {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}

.brand-wa {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  background: #07111c;
}

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

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-media img.is-on {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 28, 0.94) 0%, rgba(7, 17, 28, 0.78) 38%, rgba(7, 17, 28, 0.42) 68%, rgba(7, 17, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 17, 28, 0.4) 0%, transparent 28%, rgba(7, 17, 28, 0.55) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(201, 164, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 74, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 28% 40%, black 12%, transparent 58%);
  pointer-events: none;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 72px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: #f7f3ea;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.5rem 0 1.8rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-facts strong {
  color: var(--gold-2);
  display: block;
  font-size: 1.05rem;
}

.hero-mark {
  display: grid;
  place-items: center;
}

.hero .lead {
  color: #d5dde6;
}

.logo-ring {
  width: min(380px, 100%);
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 50%;
  background:
    conic-gradient(from 140deg, var(--gold), #8d8d8d, var(--gold-2), #9aa3ad, var(--gold));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 80px rgba(201, 164, 74, 0.18);
}

.logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.section-head p:last-child {
  color: var(--muted);
  max-width: 58ch;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal--left {
  transform: translateX(-36px);
}

.scroll-reveal--right {
  transform: translateX(36px);
}

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

.services,
.projects,
.trust,
.contact {
  padding: 88px 0;
}

.services {
  background: linear-gradient(180deg, #091420, var(--navy-2));
  overflow: visible;
  padding-bottom: 64px;
}

.service-journey {
  position: relative;
  padding: 36px 0 28px;
}

.journey-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.journey-path-dim {
  stroke: rgba(201, 164, 74, 0.28);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 12;
  animation: dash-flow 22s linear infinite;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -380;
  }
}

.journey-path-draw {
  stroke: url(#gold-line);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 7 12;
  filter: url(#gold-glow);
}

.journey-traveler {
  opacity: 0;
}

.journey-traveler.is-on {
  opacity: 1;
}

.journey-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.journey-stop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  column-gap: 28px;
  align-items: center;
  width: 100%;
}

.journey-stop .journey-marker {
  grid-column: 2;
  grid-row: 1;
}

.journey-stop.is-left .service-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.journey-stop.is-right .service-card {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.journey-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: 3px solid #07111c;
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.45), 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: scale(0.72);
  opacity: 0.4;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}

.journey-stop.is-in .journey-marker {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 0 0 6px rgba(201, 164, 74, 0.22), 0 0 28px rgba(226, 197, 122, 0.45);
  animation: marker-pulse 2.6s ease-in-out infinite;
}

@keyframes marker-pulse {
  50% {
    box-shadow: 0 0 0 11px rgba(201, 164, 74, 0.08), 0 0 32px rgba(226, 197, 122, 0.6);
  }
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-card {
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.journey-stop.is-left .service-card {
  transform: translateX(-28px);
}

.journey-stop.is-right .service-card {
  transform: translateX(28px);
}

.journey-stop.is-in .service-card {
  opacity: 1;
  transform: none;
}

.service-card:hover {
  border-color: rgba(226, 197, 122, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 164, 74, 0.2);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.service-card .icon .hi {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.55rem;
  color: #f3ead2;
}

.service-card p {
  color: var(--muted);
}

.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: #f3ead2;
  gap: 10px;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.projects {
  position: relative;
  background: #07111c;
  overflow: visible;
}

.projects-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.projects > .container {
  position: relative;
  z-index: 1;
}

.float-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  color: var(--silver);
  opacity: 0.16;
  will-change: transform;
  user-select: none;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0);
}

.float-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.projects-icons.is-static .float-icon {
  opacity: 0.14;
}

.project-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  padding-bottom: 12px;
}

.project-track {
  position: relative;
}

.project-track.is-home {
  grid-column: 1 / 10;
  grid-row: 1;
  z-index: 1;
}

.project-track.is-kitchen {
  grid-column: 7 / 13;
  grid-row: 2;
  margin-top: -18%;
  z-index: 2;
}

.project-track.is-bath {
  grid-column: 1 / 6;
  grid-row: 3;
  margin-top: -24%;
  z-index: 3;
}

.project-track.is-office {
  grid-column: 5 / 13;
  grid-row: 4;
  margin-top: -30%;
  z-index: 4;
}

.project-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.project-track:hover .project-stage,
.project-track:focus-within .project-stage {
  transform: translateY(-10px);
  border-color: rgba(226, 197, 122, 0.72);
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 164, 74, 0.32),
    0 0 48px rgba(201, 164, 74, 0.1);
}

.project-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 164, 74, 0.14), transparent 58%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.project-track:hover .project-stage::before,
.project-track:focus-within .project-stage::before {
  opacity: 1;
}

.project-track.is-home .project-stage {
  aspect-ratio: 16 / 9;
}

.project-track.is-kitchen .project-stage {
  aspect-ratio: 4 / 3;
}

.project-track.is-bath .project-stage {
  aspect-ratio: 4 / 5;
}

.project-track.is-office .project-stage {
  aspect-ratio: 16 / 10;
}

.project-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 20, 0.82));
  pointer-events: none;
  z-index: 2;
}

.project-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 12px;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.project-track:hover .project-caption,
.project-track:focus-within .project-caption {
  transform: translateY(-4px);
}

.project-caption span {
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.project-caption h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  color: #f3ead2;
  transition: color 0.3s ease;
}

.project-track:hover .project-caption h3,
.project-track:focus-within .project-caption h3 {
  color: var(--gold-2);
}

.project-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #111;
  cursor: zoom-in;
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.project-slide.is-on {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-track:hover .project-slide.is-on img,
.project-track:focus-within .project-slide.is-on img {
  transform: scale(1.05);
}

.empty-projects {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 36px 22px;
  text-align: center;
  color: var(--muted);
  background: rgba(26, 61, 99, 0.18);
}

.empty-projects.is-hidden {
  display: none;
}

.trust {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 164, 74, 0.12), transparent 36%),
    var(--navy-2);
}

.zone-head {
  max-width: 42rem;
}

.zone-places {
  margin-top: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.zone-kicker {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.zone-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}

.zone-chips li {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  color: #f3ead2;
  font-weight: 600;
}

.zone-chips li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 14px 0 16px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.zone-chips li:nth-child(even) {
  color: var(--gold-2);
  font-style: italic;
}

.zone-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 48px;
  margin: 28px 0 0;
  padding: 0;
}

.zone-facts div {
  min-width: 220px;
}

.zone-facts dt {
  margin: 0 0 4px;
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.zone-facts dd {
  margin: 0;
  color: var(--silver);
  font-size: 1.05rem;
}

.contact {
  background: linear-gradient(180deg, #0b1a2b, #07111c);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-form,
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.form-full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 17, 28, 0.75);
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7d8896;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(226, 197, 122, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.18);
  background: rgba(7, 17, 28, 0.95);
}

.contact-form select {
  cursor: pointer;
}

.contact-form option {
  background: #0d1c2e;
  color: var(--text);
}

.contact-form .btn {
  width: 100%;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 12px 0 0;
}

.form-status {
  color: var(--gold-2);
}

.contact-aside {
  display: grid;
  gap: 12px;
}

.info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.info-card small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  color: #f3ead2;
  font-size: 0.98rem;
  word-break: break-word;
}

.info-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.84rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 74, 0.12);
  color: var(--gold-2);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-card-wa .info-icon {
  background: #25d366;
  color: #fff;
}

.info-card-ig .info-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

.info-card-mail .info-icon {
  background: #fff;
}

.info-card-mail .info-icon svg {
  width: 26px;
  height: 20px;
}

a.info-card:hover,
a.info-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(226, 197, 122, 0.55);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  background: rgba(18, 36, 56, 0.95);
}

a.info-card:hover .info-icon,
a.info-card:focus-visible .info-icon {
  transform: scale(1.08);
}

.info-card-wa:hover,
.info-card-wa:focus-visible {
  border-color: rgba(37, 211, 102, 0.55);
}

.info-card-ig:hover,
.info-card-ig:focus-visible {
  border-color: rgba(214, 36, 159, 0.5);
}

.info-card.is-static {
  align-items: start;
}

.site-footer {
  border-top: 1px solid rgba(201, 164, 74, 0.22);
  padding: 56px 0 110px;
  background:
    linear-gradient(180deg, rgba(201, 164, 74, 0.06), transparent 48px),
    #050c14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.15fr;
  gap: 36px 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3ead2;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 164, 74, 0.35);
}

.footer-brand p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 38ch;
  line-height: 1.55;
}

.footer-tagline {
  color: var(--gold-2) !important;
  font-weight: 600;
}

.footer-cta {
  display: inline-flex;
  margin: 8px 0 4px;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #102033;
  font-weight: 700;
  font-size: 0.88rem;
}

.footer-cta:hover {
  filter: brightness(1.06);
}

.site-footer h3 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 6px 0 16px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--silver);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-2);
}

.footer-contact li span {
  display: block;
  margin-bottom: 2px;
  color: #8ea0b3;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 0;
  color: var(--silver);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(201, 164, 74, 0.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-2);
  font-weight: 700;
}

.footer-credit a:hover {
  color: #f3ead2;
}

.footer-credit svg {
  width: 14px;
  height: 14px;
}

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 12;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
  filter: brightness(1.05);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  z-index: 30;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-close .hi {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .hero-inner,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .project-collage {
    display: flex;
    flex-direction: column;
  }

  .project-track.is-home,
  .project-track.is-kitchen,
  .project-track.is-bath,
  .project-track.is-office {
    grid-column: auto;
    grid-row: auto;
  }

  .project-track.is-home {
    width: 100%;
  }

  .project-track.is-kitchen {
    width: 88%;
    align-self: flex-end;
    margin-top: -42px;
  }

  .project-track.is-bath {
    width: 84%;
    align-self: flex-start;
    margin-top: -52px;
  }

  .project-track.is-office {
    width: 90%;
    align-self: flex-end;
    margin-top: -56px;
  }

  .project-track.is-home .project-stage,
  .project-track.is-kitchen .project-stage,
  .project-track.is-bath .project-stage,
  .project-track.is-office .project-stage {
    aspect-ratio: 4 / 3;
  }

  .journey-stops {
    gap: 22px;
  }

  .journey-stop {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
  }

  .journey-stop .journey-marker,
  .journey-stop.is-left .service-card,
  .journey-stop.is-right .service-card {
    justify-self: stretch;
  }

  .journey-stop .journey-marker {
    grid-column: 1;
    grid-row: 1;
  }

  .journey-stop.is-left .service-card,
  .journey-stop.is-right .service-card {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
  }

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

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-row: 1;
    grid-column: 1;
  }

  .header-end {
    grid-row: 1;
    grid-column: 2;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 20px;
    background: #07111c;
    border-bottom: 1px solid var(--line);
    justify-self: stretch;
    grid-column: 1 / -1;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
    width: 100%;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-inner {
    padding-top: 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 28, 0.78) 0%, rgba(7, 17, 28, 0.62) 40%, rgba(7, 17, 28, 0.88) 100%);
  }

  .hero-media img {
    object-position: center 40%;
  }

  .logo-ring {
    width: min(280px, 70vw);
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    padding: 0.65rem 0.85rem;
    font-size: 0;
    gap: 0;
  }

  .header-cta .brand-wa {
    width: 1.25rem;
    height: 1.25rem;
  }
}

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

  .service-card,
  .journey-marker {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .project-slide,
  .hero-media img {
    transition: none;
  }

  .float-icon {
    opacity: 0.14;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .project-track:hover .project-stage,
  .project-track:focus-within .project-stage {
    transform: none;
  }

  .project-track:hover .project-slide.is-on img,
  .project-track:focus-within .project-slide.is-on img {
    transform: none;
  }

  .journey-traveler {
    display: none;
  }

  .journey-path-dim {
    animation: none;
  }

  .journey-stop.is-in .journey-marker {
    animation: none;
  }
}
