:root {
  --gold: #b8860b;
  --gold-light: #d4af37;
  --gold-dark: #8b6914;
  --brass: #c9a227;
  --walnut: #3d2b1f;
  --walnut-light: #5c4033;
  --steel: #6b7280;
  --steel-light: #9ca3af;
  --oxidized: #4a5d4a;
  --charcoal: #1a1814;
  --ivory: #f5f0e6;
  --ivory-dark: #e8e0d0;
  --text: #2a2318;
  --text-muted: #5a5048;
  --border: rgba(184, 134, 11, 0.25);
  --shadow: 0 4px 24px rgba(26, 24, 20, 0.12);
  --radius: 4px;
  --font-display: "Cinzel", "Georgia", serif;
  --font-body: "Source Serif 4", "Georgia", serif;
  --max-width: 72rem;
  --header-h: 4.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 93, 74, 0.05) 0%, transparent 40%);
  min-height: 100vh;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.4rem; }

address { font-style: normal; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--walnut) 0%, #2a2318 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ivory);
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold-dark) 2px, transparent 2px),
    conic-gradient(from 0deg, var(--brass), var(--gold-dark), var(--brass));
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 2px;
  background: var(--ivory);
  transform: translate(-50%, -50%) rotate(-30deg);
  transform-origin: left center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--gold);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
}

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

.site-nav a {
  color: var(--ivory-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 0.4rem 0.85rem !important;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--walnut);
    border-bottom: 2px solid var(--gold);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from 0deg, transparent 0deg 30deg, rgba(184,134,11,0.08) 30deg 60deg);
  opacity: 0;
  transition: opacity 0.3s, transform 0.6s;
  transform: rotate(0deg);
}

.btn:active::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: rotate(90deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--ivory);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-dark);
}

.btn-secondary:hover {
  background: rgba(184, 134, 11, 0.1);
}

/* Layout sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.section-narrow {
  max-width: 42rem;
}

.section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oxidized);
  margin: 0 0 0.5rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.hero-content { order: 2; }

.hero-visual {
  order: 1;
  position: relative;
}

.hero-visual img {
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "§ 145";
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--ivory);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 24, 20, 0.15);
}

.card-image {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  border-bottom: 2px solid var(--gold);
}

.card-body { padding: 1.25rem 1.35rem 1.5rem; }

.card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover { color: var(--gold-dark); }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--walnut) 0%, var(--charcoal) 100%);
  color: var(--ivory);
  padding: 3rem 1.25rem;
  border-bottom: 3px solid var(--gold);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero h1 { color: var(--ivory); margin-top: 0; }

.page-hero p { color: var(--ivory-dark); }

.page-hero img {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; }
}

/* Process steps */
.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--border);
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

/* Testimonials */
.testimonial {
  background: var(--ivory-dark);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

.testimonial-reservation {
  font-size: 0.88rem;
  color: var(--oxidized);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--walnut);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

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

.field-error {
  color: #8b2942;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.form-status.success {
  background: rgba(74, 93, 74, 0.15);
  border: 1px solid var(--oxidized);
  color: var(--oxidized);
}

.form-status.error {
  background: rgba(139, 41, 66, 0.1);
  border: 1px solid #8b2942;
  color: #8b2942;
}

/* Pricing table */
.pricing-block {
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}

.pricing-block h3 {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price-tag {
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 1.1rem;
}

/* Legal prose */
.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.legal-content h2:first-child { margin-top: 0; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
}

.cookie-table th {
  background: var(--ivory-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory-dark);
  margin-top: 4rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
}

.footer-tagline { font-size: 0.92rem; margin: 0; }

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

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

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

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

.footer-base {
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer address p { margin: 0 0 0.35rem; }
.site-footer a { color: var(--gold-light); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--walnut);
  border-top: 2px solid var(--gold);
  padding: 1.25rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-banner[hidden] { display: none; }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-title {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin: 0 0 0.5rem;
}

.cookie-desc {
  color: var(--ivory-dark);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.cookie-desc a { color: var(--gold-light); }

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

.cookie-error {
  color: #e8a0a0;
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 5rem 1.25rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  margin: 0;
}

/* Detail layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.detail-sidebar {
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.detail-sidebar dl {
  margin: 0;
}

.detail-sidebar dt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oxidized);
  margin-top: 0.85rem;
}

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

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

@media (max-width: 768px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--text-muted); }

.img-placeholder {
  background: linear-gradient(135deg, var(--ivory-dark), var(--walnut-light));
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
