:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-soft: #1c1712;
  --text: #f5efe6;
  --text-muted: #b5a99a;
  --accent: #d4af77;
  --accent-soft: #a8895a;
  --line: rgba(212, 175, 119, 0.22);
  --danger: #e8a090;
  --success: #9fc5a8;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
  --max: 1120px;
  --header-h: 4.25rem;
  --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(ellipse 80% 50% at 10% -10%, rgba(212, 175, 119, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(80, 50, 30, 0.35), transparent 50%),
    linear-gradient(180deg, #0c0a09 0%, #120e0b 40%, #0a0807 100%);
  background-attachment: fixed;
  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;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: #e8d0a8;
}

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

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 0 0 0.6em;
}

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

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin: 0 0 0.45em;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #0c0a09;
  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(12, 10, 9, 0.78);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.35s var(--ease);
}

.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.55rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  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[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--accent);
}

.nav-cta:hover {
  background: #e0c090 !important;
  color: var(--bg) !important;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #e0c090;
  color: var(--bg);
  transform: translateY(-1px);
}

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

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

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
  animation: heroSettle 1.4s var(--ease) both;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 7rem) var(--space) clamp(3rem, 8vh, 5rem);
  animation: riseIn 0.9s var(--ease) 0.15s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  max-width: 14ch;
  color: var(--text);
}

.hero-lead {
  max-width: 36rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
  animation: riseIn 0.8s var(--ease) both;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

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

.split img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}

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

.offer-list li {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  transition: padding-left 0.35s var(--ease);
}

.offer-list li:hover {
  padding-left: 0.5rem;
}

.offer-list h3 {
  margin-bottom: 0.35rem;
}

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

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

.offer-meta {
  font-size: 0.88rem;
  color: var(--accent-soft);
  white-space: nowrap;
}

.evidence-block {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.evidence-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
}

.evidence-block cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) var(--space) 2rem;
  animation: riseIn 0.8s var(--ease) both;
}

.page-hero.with-image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  padding-bottom: 0;
}

.page-hero.with-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: brightness(0.75);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2.2rem;
}

.prose ul,
.prose ol {
  color: var(--text-muted);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: brightness(0.8);
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}

.service-item:hover img {
  filter: brightness(0.95);
  transform: scale(1.015);
}

.service-item h2 {
  font-size: 1.55rem;
}

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

.service-item h2 a:hover {
  color: var(--accent);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--accent-soft);
  margin: 1rem 0 1.5rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.detail-aside dl {
  margin: 0;
}

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

.detail-aside dt:first-child {
  margin-top: 0;
}

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

.rate-table {
  width: 100%;
  border-collapse: collapse;
}

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

.rate-table th {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.rate-table td {
  color: var(--text-muted);
}

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

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

.review-item blockquote {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--text);
}

.review-item .who {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.story-panel {
  margin-top: 3rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

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

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.blog-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.8);
}

.blog-row h2 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.blog-row h2 a {
  color: var(--text);
  text-decoration: none;
}

.blog-row h2 a:hover {
  color: var(--accent);
}

.blog-date {
  font-size: 0.85rem;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.visit-steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.visit-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

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

.form {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
}

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

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

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

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

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

.form-field.is-invalid .field-error {
  display: block;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
}

.form-status.is-success {
  display: block;
  color: var(--success);
  border-color: rgba(159, 197, 168, 0.4);
}

.form-status.is-error {
  display: block;
  color: var(--danger);
  border-color: rgba(232, 160, 144, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.address-block {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.address-block p {
  margin-bottom: 0.65rem;
}

.legal-body {
  max-width: 46rem;
}

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

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  color: var(--text-muted);
}

.cookies-table th {
  color: var(--text);
  background: var(--bg-elevated);
}

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

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

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

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

.footer-label {
  color: var(--accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

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

.footer-links li {
  margin-bottom: 0.4rem;
}

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

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

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

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

.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 280px;
  font-size: 0.92rem;
}

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

.error-page {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--space);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

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

@keyframes heroSettle {
  from {
    transform: scale(1.06);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .split,
  .page-hero.with-image,
  .detail-layout,
  .contact-grid,
  .footer-grid,
  .blog-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .offer-list li {
    grid-template-columns: 1fr;
  }

  .offer-meta {
    white-space: normal;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 10, 9, 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;
  }

  .header-inner {
    position: relative;
  }
}
