:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --bg-soft: #181614;
  --text: #f4efe6;
  --text-muted: #b7aea0;
  --gold: #c9a962;
  --gold-soft: #a88b4a;
  --line: rgba(201, 169, 98, 0.22);
  --danger: #e8a090;
  --success: #9fc5a0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 1120px;
  --narrow: 720px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 169, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #0c0b0a 0%, var(--bg) 40%, #0e0d0c 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #e0c888;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
}

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

.site-nav a.nav-cta {
  border: 1px solid var(--gold-soft);
  padding: 0.4rem 0.85rem;
}

.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.94) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.15) 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) var(--space) 4.5rem;
  animation: rise 1.1s ease both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
  margin: 0 0 0.35rem;
  letter-spacing: 0.06em;
}

.lede {
  font-size: 1.1rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: #14110c;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #d8ba74;
  color: #14110c;
}

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

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) var(--space);
}

.section-narrow {
  max-width: calc(var(--narrow) + 2 * var(--space));
}

.section-dark {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
  max-width: none;
  padding-inline: max(var(--space), calc((100% - var(--max)) / 2 + var(--space)));
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--space) 1.5rem;
  animation: rise 0.9s ease both;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-media img,
.detail-hero-media img,
.service-row-media img,
.post-teaser-media img,
.person img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.feature-media img,
.detail-hero-media img {
  aspect-ratio: 16 / 10;
}

.plain-list,
.process-list {
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.plain-list li,
.process-list li {
  margin-bottom: 0.55rem;
}

.price-hint,
.meta,
.cta-line {
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.text-link {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.offer-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.offer-item a {
  color: var(--text);
  text-decoration: none;
}

.offer-item a:hover {
  color: var(--gold);
}

.pull-quote {
  margin: 0;
  max-width: 40rem;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--text);
  line-height: 1.35;
}

.pull-quote footer {
  color: var(--text-muted);
  margin-top: 1rem;
}

.service-list {
  display: grid;
  gap: 2.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.service-row.is-flagship {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.06), transparent);
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.service-row-media img {
  aspect-ratio: 4 / 3;
}

.detail-hero-media {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.meta-dl {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}

.meta-dl div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.meta-dl dt {
  color: var(--gold);
  font-size: 0.85rem;
}

.meta-dl dd {
  margin: 0;
  color: var(--text-muted);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rates-table th,
.rates-table td {
  text-align: left;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.rates-table th {
  color: var(--gold);
  font-weight: 500;
}

.review-list {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.review-card p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.4;
}

.review-card footer {
  display: grid;
  gap: 0.15rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.post-list {
  display: grid;
  gap: 2.5rem;
}

.post-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}

.post-teaser-media img {
  aspect-ratio: 16 / 10;
}

.post-body p {
  font-size: 1.05rem;
}

.people-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.person img {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  filter: grayscale(0.15) contrast(1.05);
}

.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flow;
  display: grid;
  gap: 1.75rem;
}

.flow-steps li {
  counter-increment: flow;
  padding: 1.25rem 0 1.25rem 4rem;
  border-top: 1px solid var(--line);
  position: relative;
}

.flow-steps li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.25rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-aside {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

.contact-aside h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin-top: 1rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.legal-copy h2 {
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 3rem var(--space) 2rem;
  background: #080807;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr 0.8fr;
  gap: 1.75rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.footer-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-legal a,
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-contact p,
.footer-brand p {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

.footer-copy {
  max-width: var(--max);
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  background: #141210;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  animation: rise 0.5s ease both;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 18rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--space) 1.25rem;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-split,
  .service-row,
  .post-teaser,
  .detail-grid,
  .people-row,
  .contact-layout,
  .offer-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .meta-dl div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hero-cinematic {
    min-height: 92vh;
  }
}

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

  .hero-media img,
  .reveal,
  .hero-copy,
  .page-hero,
  .cookie-banner {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
