:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-soft: #1c1712;
  --text: #f5efe6;
  --text-muted: #b7a994;
  --accent: #d4af77;
  --accent-soft: #c9a46a;
  --line: rgba(212, 175, 119, 0.22);
  --danger: #e8a090;
  --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;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::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(1200px 600px at 10% -10%, rgba(212, 175, 119, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(80, 50, 30, 0.35), transparent 50%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--text);
}

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

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

p { margin: 0 0 1rem; }

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

.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(12, 10, 9, 0.86);
  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;
  min-height: var(--header-h);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.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(--accent);
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 0.4rem 0.85rem;
}

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

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--text);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg-elevated);
    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;
  }
}

.hero-cinematic {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
}

.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,10,9,0.2) 0%, rgba(12,10,9,0.55) 45%, rgba(12,10,9,0.96) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) var(--space) clamp(3rem, 8vh, 5rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-soft);
  margin-bottom: 0.85rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-action { margin-top: 1.5rem; }

.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-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

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

.section-split img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (max-width: 800px) {
  .section-split { grid-template-columns: 1fr; }
}

.section-cta {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(212,175,119,0.05), transparent);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #1a140e;
}

.btn-primary:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(212, 175, 119, 0.12);
  color: var(--text);
}

.text-link {
  font-weight: 500;
}

.meta {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.flagship {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 1rem;
}

.flagship img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

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

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offer-list li { background: var(--bg-elevated); }

.offer-list a {
  display: block;
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease);
}

.offer-list a:hover { background: var(--bg-soft); }

.offer-list h3 { color: var(--accent); }

.pull-quote {
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  max-width: 40rem;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  line-height: 1.35;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--space) 1rem;
}

.page-hero-media {
  padding-top: 0;
}

.page-hero-media > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  filter: brightness(0.7);
  border-bottom: 1px solid var(--line);
}

.page-hero-media .page-hero-copy {
  padding: 2rem var(--space) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.service-grid,
.post-grid,
.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .service-grid,
  .post-grid,
  .team-grid { grid-template-columns: 1fr; }
}

.service-card,
.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  height: 100%;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.service-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}

.service-card img,
.post-card img,
.team-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body,
.post-card > div {
  padding: 1.25rem 1.35rem 1.5rem;
}

.team-grid li {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding-bottom: 1.25rem;
}

.team-grid h3,
.team-grid p {
  padding: 0 1.1rem;
}

.team-grid img { aspect-ratio: 4 / 5; margin-bottom: 1rem; }

.plain-list,
.process-list {
  padding-left: 1.2rem;
}

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

.detail-dl {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.detail-dl > div {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.detail-dl dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.25rem;
}

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

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

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

.fee-table th {
  color: var(--accent);
  font-weight: 500;
}

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

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

.review-item blockquote {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
}

.reservation {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.method-steps li {
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}

.contact-form,
.contact-aside {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 1.5rem;
}

.form-field {
  margin-bottom: 1.1rem;
}

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

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

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

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

.form-status {
  margin-top: 1rem;
  min-height: 1.4em;
}

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

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

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

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

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

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

.footer-tag,
.footer-contact p,
.footer-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(22, 18, 16, 0.96);
  border-top: 1px solid var(--line);
  padding: 1rem var(--space);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  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.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card:hover,
  .post-card:hover { transform: none; }
}
