:root {
  --gold: #b8860b;
  --gold-light: #d4af37;
  --gold-dark: #8b6914;
  --brass: #c9a227;
  --tobacco: #5c4033;
  --tobacco-dark: #3d2b1f;
  --oxidized: #4a5d4a;
  --oxidized-light: #6b7f6b;
  --charcoal: #2a2318;
  --charcoal-mid: #3a3228;
  --steel: #8a8a8a;
  --steel-light: #b0b0b0;
  --ivory: #f5f0e6;
  --ivory-dark: #e8e0d0;
  --walnut: #4a3728;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(42, 35, 24, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 93, 74, 0.05) 0%, transparent 50%);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--tobacco-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p + p { margin-top: 1rem; }

.container { width: min(1120px, 92vw); margin-inline: auto; }
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-alt { background: var(--ivory-dark); border-block: 1px solid rgba(184, 134, 11, 0.15); }

.engraved-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxidized);
  display: block;
  margin-bottom: 0.75rem;
}

.engraved-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel);
  letter-spacing: 0.1em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.header-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ivory);
}

.logo-mark { color: var(--gold-light); font-size: 1.4rem; }
.logo-text { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--gold);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  list-style: none;
}

.site-nav a {
  color: var(--ivory-dark);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid var(--gold-light);
}

.nav-cta:hover { background: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border-color: var(--gold-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 8px rgba(42,35,24,0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--tobacco);
  border-color: var(--tobacco);
}

.btn-secondary:hover { background: var(--tobacco); color: var(--ivory); }

.gear-btn::before {
  content: "⚙";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition);
}

.gear-btn:active::before,
.gear-btn.clicked::before {
  animation: gearSpin 0.6s ease;
}

@keyframes gearSpin {
  0% { left: -20px; opacity: 0; transform: rotate(0deg); }
  30% { opacity: 1; }
  100% { left: calc(100% + 20px); opacity: 0; transform: rotate(360deg); }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 10vw, 6rem) 0;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--oxidized);
  border: 1px solid var(--oxidized-light);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
  background: rgba(74, 93, 74, 0.08);
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-lead {
  font-size: 1.2rem;
  color: var(--tobacco);
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  position: relative;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
  z-index: 1;
}

.hero-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.hero-dial {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--charcoal);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dial::after {
  content: "";
  width: 2px;
  height: 18px;
  background: var(--gold-light);
  transform-origin: bottom center;
  transform: rotate(-30deg) translateY(-4px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: linear-gradient(145deg, var(--ivory) 0%, var(--ivory-dark) 100%);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(42, 35, 24, 0.22);
}

.card-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.card-body { padding: 1.5rem; }

.card-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--gold-dark); }

.card-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--oxidized);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(184, 134, 11, 0.3);
}

.page-header {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--walnut) 100%);
  color: var(--ivory);
  border-bottom: 3px solid var(--gold);
}

.page-header h1 { color: var(--ivory); margin-bottom: 0.75rem; }
.page-header p { color: var(--ivory-dark); max-width: 640px; }

.page-header-image {
  margin-top: 2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
}

.page-header-image img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

.prose { max-width: 720px; }
.prose-wide { max-width: 860px; }

.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose li + li { margin-top: 0.5rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial-text { font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-family: var(--font-mono); font-size: 0.82rem; color: var(--tobacco); }
.testimonial-reservation { font-size: 0.9rem; color: var(--steel); margin-top: 0.75rem; font-style: normal; }

.story-block {
  background: var(--ivory);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}

.story-block h3 { color: var(--gold-dark); }

.process-steps { counter-reset: step; }

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.process-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--gold-light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.pricing-table th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--ivory);
}

.pricing-table tr:nth-child(even) td { background: rgba(232, 224, 208, 0.4); }

.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--oxidized);
  padding: 1.25rem;
  border: 1px dashed var(--oxidized-light);
  border-radius: var(--radius);
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info address { font-style: normal; }
.contact-info p + p { margin-top: 0.75rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--tobacco);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  border: 1px solid rgba(92, 64, 51, 0.35);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-error {
  color: #8b2500;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.invalid .form-error { display: block; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #8b2500; }

.form-status {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(74, 93, 74, 0.12);
  border: 1px solid var(--oxidized);
  color: var(--oxidized);
}

.form-status.error {
  display: block;
  background: rgba(139, 37, 0, 0.08);
  border: 1px solid #8b2500;
  color: #8b2500;
}

.legal-content h2 { margin-top: 2rem; font-size: 1.4rem; }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.15rem; }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
  padding: 0.75rem;
  border: 1px solid rgba(184, 134, 11, 0.2);
  text-align: left;
}

.cookies-table th { background: var(--charcoal-mid); color: var(--ivory); font-family: var(--font-mono); font-size: 0.75rem; }

.error-page {
  text-align: center;
  padding: 6rem 0;
}

.error-code {
  font-family: var(--font-mono);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.site-footer {
  background: var(--charcoal);
  color: var(--ivory-dark);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.footer-brand { font-size: 1.2rem; font-weight: 600; color: var(--ivory); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.95rem; }
.footer-heading { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 0.4rem; }
.footer-links a, .site-footer address a { color: var(--ivory-dark); text-decoration: none; }
.footer-links a:hover, .site-footer address a:hover { color: var(--gold-light); }

.footer-bottom {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--steel);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(180deg, var(--charcoal-mid) 0%, var(--charcoal) 100%);
  border-top: 2px solid var(--gold);
  padding: 1.25rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p { color: var(--ivory-dark); font-size: 0.95rem; max-width: 640px; }
.cookie-banner a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.portrait-frame {
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.service-sidebar {
  background: var(--ivory-dark);
  border: 1px solid rgba(184, 134, 11, 0.25);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: sticky;
  top: 5rem;
}

.service-sidebar dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxidized);
  margin-top: 1rem;
}

.service-sidebar dt:first-child { margin-top: 0; }
.service-sidebar dd { margin-top: 0.25rem; color: var(--tobacco); }

.service-hero-img {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-hero-img img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-bottom: 2px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .site-nav.open { max-height: 400px; }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem;
    align-items: stretch;
  }

  .site-nav a { display: block; padding: 0.5rem 0; }
}
