:root {
  --ink: #0c0b0a;
  --ink-soft: #161412;
  --panel: #1c1916;
  --ivory: #f4efe6;
  --ivory-dim: #d8cfc0;
  --gold: #c9a96e;
  --gold-bright: #e0c48a;
  --gold-dim: #8a7349;
  --line: rgba(201, 169, 110, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 1em;
}

.visually-hidden {
  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: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 3.5rem;
}

.section-lead {
  color: var(--ivory-dim);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ivory);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.15rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 41;
}

.logo-mark {
  width: 18px;
  height: 22px;
  border: 1px solid var(--gold);
  border-radius: 9px 9px 4px 4px;
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px 4px auto;
  height: 1px;
  background: var(--gold);
}

.logo-word {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
}

.nav-cta {
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.7rem 1.15rem;
}

.nav-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  height: auto;
  padding: 0.7rem 1.05rem;
  white-space: nowrap;
}

.nav-cta-call svg {
  display: block;
  flex-shrink: 0;
}

.nav-cta-call span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--ink) !important;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.btn-call svg {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 41;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ivory);
  margin: 7px 0;
  transition: transform 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  color: var(--ivory);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.35) 0%, rgba(12, 11, 10, 0.15) 35%, rgba(12, 11, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto 7.5rem;
  max-width: 42rem;
  justify-self: center;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-lead {
  color: var(--ivory-dim);
  font-size: 1.08rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.scroll-hint {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.2rem;
  background: var(--gold);
  margin: 0.7rem auto 0;
}

/* Intro */
.intro {
  padding: 8rem 0 5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.intro-copy p {
  color: var(--ivory-dim);
}

.intro-points {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.intro-points li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  color: var(--ivory);
  font-size: 0.95rem;
}

.intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 1px;
  background: var(--gold);
}

.intro-figure img {
  width: 100%;
  height: 38rem;
  object-fit: cover;
}

.intro-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.statement {
  padding: 0 0 7rem;
}

.statement-inner {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  padding: 3.5rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.statement-attr {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

/* Benefits */
.benefits {
  padding: 2rem 0 8rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  padding: 2rem 1.6rem 1.8rem;
  background: var(--ink-soft);
  border: 1px solid rgba(201, 169, 110, 0.12);
  min-height: 16rem;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.benefit-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 2.2rem;
}

.benefit-card p {
  color: var(--ivory-dim);
  font-size: 0.95rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-block {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
}

.feature-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.feature-block:hover img {
  transform: scale(1.04);
}

.feature-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 4.5rem 2.4rem 2.4rem;
  background: linear-gradient(transparent, rgba(12, 11, 10, 0.92));
  max-width: 28rem;
}

.feature-caption p:last-child {
  color: var(--ivory-dim);
  margin: 0;
}

/* Specs */
.specs {
  padding: 8rem 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

.specs-copy p {
  color: var(--ivory-dim);
}

.specs-still {
  margin: 2.2rem 0 0;
}

.specs-still img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.specs-table-wrap {
  border: 1px solid var(--line);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  text-align: left;
  padding: 1.05rem 1.4rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
  font-size: 0.92rem;
  font-weight: 300;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: 0;
}

.specs-table th {
  width: 38%;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 500;
}

.specs-table td {
  color: var(--ivory);
}

/* Gallery */
.atelier {
  padding: 1rem 0 8rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery-wide {
  grid-column: 1 / -1;
  min-height: 26rem;
}

.gallery-tall {
  min-height: 28rem;
}

.gallery-item:not(.gallery-wide) {
  min-height: 24rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
  transition: transform 1s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}

.process {
  padding: 0 0 8rem;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.process-list span {
  display: block;
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  margin-bottom: 1.4rem;
}

.process-list p {
  color: var(--ivory-dim);
}

/* Enquire */
.enquire {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.enquire-bg {
  position: absolute;
  inset: 0;
}

.enquire-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.7);
}

.enquire-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.enquire-copy p {
  color: var(--ivory-dim);
}

.enquire-meta {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
}

.enquire-meta li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ivory);
}

.enquire-meta li span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.enquire-meta a:hover {
  color: var(--gold);
}

.enquire-form {
  background: rgba(12, 11, 10, 0.72);
  border: 1px solid var(--line);
  padding: 2.2rem;
  backdrop-filter: blur(12px);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.enquire-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.enquire-form input,
.enquire-form select,
.enquire-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.55rem 0 0.7rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}

.enquire-form input:focus,
.enquire-form select:focus,
.enquire-form textarea:focus {
  border-bottom-color: var(--gold);
}

.enquire-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.enquire-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.form-error {
  color: #e8b4a2;
  font-size: 0.88rem;
  margin: 0 0 1rem;
}

.form-aside {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--gold-dim);
}

/* Call band (replaces visible enquire CTA) */
.call-band {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06), transparent);
}

.call-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-band h2 {
  margin-bottom: 0.6rem;
}

.call-band p:not(.eyebrow) {
  color: var(--ivory-dim);
  max-width: 36rem;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--ivory-dim);
  display: block;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-label {
  color: var(--gold) !important;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--ivory-dim);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.footer-call {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.footer-call svg {
  flex-shrink: 0;
}

.copyright {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  font-size: 0.78rem;
  color: var(--gold-dim);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 11, 10, 0.72);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  width: min(32rem, 100%);
  background: var(--ink-soft);
  border: 1px solid var(--gold);
  padding: 3rem 2.4rem;
  text-align: center;
}

.modal-card p {
  color: var(--ivory-dim);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
  }

  .call-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-grid,
  .specs-grid,
  .enquire-grid,
  .feature-split,
  .benefit-grid,
  .process-list,
  .footer-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-figure img,
  .feature-block {
    height: 22rem;
    min-height: 22rem;
  }

  .hero-content {
    margin-bottom: 5rem;
  }

  .form-duo {
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .header-inner,
  .hero-content,
  .copyright {
    width: calc(100% - 2rem);
  }

  .intro,
  .benefits,
  .specs,
  .enquire,
  .atelier,
  .process {
    padding-left: 0;
    padding-right: 0;
  }

  .intro {
    padding-top: 5rem;
  }

  .enquire-form {
    padding: 1.4rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
