:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-soft: #1c1712;
  --text: #f5f0e8;
  --text-muted: #b7a99a;
  --accent: #c9a66b;
  --accent-soft: #a8854f;
  --line: rgba(201, 166, 107, 0.28);
  --danger: #e08a7a;
  --success: #8fbf9f;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
  --max: 72rem;
  --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(201, 166, 107, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(80, 50, 30, 0.35), transparent 50%),
    linear-gradient(180deg, #0c0a09 0%, #120e0b 40%, #0c0a09 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: var(--text);
}

h1, h2, h3, h4 {
  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.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

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

.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.5rem; top: 0.5rem; }

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

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  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.1rem;
  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-radius: 2px;
}

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

.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;
}

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

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

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

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

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

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

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

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

.hero {
  position: relative;
  min-height: min(92vh, 54rem);
  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.55) contrast(1.05);
  animation: heroken 18s var(--ease) infinite alternate;
}

@keyframes heroken {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0.72) 55%, rgba(12, 10, 9, 0.96) 100%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.75) 0%, transparent 55%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 8rem) var(--space) clamp(3rem, 7vw, 5rem);
  animation: rise 0.9s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  max-width: 14ch;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-content .lede {
  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;
}

.page-hero {
  padding: clamp(4rem, 10vw, 7rem) var(--space) 2rem;
  max-width: var(--max);
  margin: 0 auto;
  animation: rise 0.7s var(--ease) both;
}

.page-hero.with-media {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .page-hero.with-media {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: brightness(0.85);
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .split.two { grid-template-columns: 1fr 1fr; }
  .split.asymmetric { grid-template-columns: 1.2fr 0.8fr; }
}

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

@media (min-width: 700px) {
  .offer-list { grid-template-columns: repeat(2, 1fr); }
}

.offer-item {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  transition: border-color 0.3s var(--ease);
}

.offer-item:hover { border-color: var(--accent); }

.offer-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: brightness(0.8);
}

.offer-item h3 {
  margin-bottom: 0.4rem;
}

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

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

.quote-block {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.story-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.rate-row {
  display: grid;
  gap: 0.5rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
  .rate-row {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    align-items: baseline;
  }
}

.rate-row strong { color: var(--text); font-weight: 500; }
.rate-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.prose {
  max-width: 42rem;
}

.prose h2 { margin-top: 2.5rem; }
.prose ul, .prose ol { color: var(--text-muted); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.45rem; }

.detail-hero img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--line);
  filter: brightness(0.82);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
}

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

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-size: 0.9rem;
  color: var(--text);
}

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

.form textarea { min-height: 9rem; resize: vertical; }

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

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  min-height: 1.1em;
}

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

.form-status.is-visible { display: block; }
.form-status.is-success {
  border-color: var(--success);
  color: var(--success);
}
.form-status.is-error {
  border-color: var(--danger);
  color: var(--danger);
}

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

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

@media (min-width: 800px) {
  .blog-list { grid-template-columns: repeat(2, 1fr); }
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: brightness(0.8);
}

.blog-card h2 {
  font-size: 1.6rem;
}

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

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

.area-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.area-item h3 {
  font-size: 1.25rem;
  color: var(--text);
}

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

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem;
}

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

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

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

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

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

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

.footer-links a:hover { color: var(--accent); }
.footer-links li { margin-bottom: 0.35rem; }

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem;
  background: rgba(12, 10, 9, 0.96);
  border-top: 1px solid var(--line);
  animation: rise 0.45s 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 18rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
