:root {
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-dark: #8B6914;
  --brass: #C4A35A;
  --tobacco: #5C4033;
  --tobacco-dark: #3D2B1F;
  --oxidized: #4A5D4A;
  --charcoal: #1a1612;
  --charcoal-mid: #2a2420;
  --steel: #6B7280;
  --steel-light: #9CA3AF;
  --ivory: #F5F0E6;
  --ivory-dark: #E8DFD0;
  --walnut: #4A3728;
  --error: #8B3A3A;
  --success: #3A5D4A;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(26, 22, 18, 0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::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.7;
  color: var(--ivory);
  background: var(--charcoal);
  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.08) 0%, transparent 50%);
  min-height: 100vh;
}

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

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

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

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

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 22, 18, 0.95);
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.logo-mark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 10px;
  background: var(--gold-light);
  transform: translate(-50%, -80%);
  transform-origin: bottom center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dark);
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--charcoal-mid);
    border-bottom: 1px solid rgba(196, 163, 90, 0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .site-nav.is-open { max-height: 400px; }
  .site-nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    align-items: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--charcoal);
  border: 1px solid var(--gold-light);
}

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

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--steel);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.site-footer {
  margin-top: 4rem;
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding: 3rem 1.5rem 1.5rem;
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.9rem; color: var(--steel-light); }

.site-footer h2 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.75rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.375rem; }
.site-footer a { color: var(--ivory-dark); text-decoration: none; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer address { font-style: normal; font-size: 0.9rem; color: var(--ivory-dark); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 163, 90, 0.15);
  text-align: center;
  font-size: 0.8rem;
  color: var(--steel);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal-mid);
  border-top: 2px solid var(--gold-dark);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--ivory-dark);
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-dial {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--brass);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-dial::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
}

.hero h1 { margin: 0 0 1.25rem; max-width: 18ch; }
.hero-lead { font-size: 1.125rem; color: var(--ivory-dark); max-width: 42ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual { position: relative; }

.hero-visual img {
  border-radius: var(--radius);
  border: 2px solid rgba(196, 163, 90, 0.4);
  box-shadow: var(--shadow);
}

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

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

.card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover { border-color: var(--gold-dark); transform: translateY(-2px); }

.card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--tobacco-dark); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem; }

.card-meta {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.95rem; color: var(--steel-light); margin-bottom: 1rem; }

.card-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
}

.page-header {
  padding: 3rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
}

.page-header h1 { margin: 0 0 0.75rem; }
.page-header .lead { font-size: 1.125rem; color: var(--ivory-dark); max-width: 60ch; margin: 0; }

.prose { max-width: 720px; }
.prose-wide { max-width: 900px; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.5rem; }

.testimonial {
  background: var(--charcoal-mid);
  border-left: 3px solid var(--gold-dark);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial blockquote { margin: 0 0 1rem; font-style: italic; color: var(--ivory-dark); }

.testimonial cite {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--brass);
  font-style: normal;
}

.price-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }

.price-table th, .price-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.price-table th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.price-note {
  font-size: 0.9rem;
  color: var(--steel-light);
  padding: 1rem;
  background: rgba(74, 93, 74, 0.15);
  border: 1px solid rgba(74, 93, 74, 0.3);
  border-radius: var(--radius);
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.375rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ivory);
  background: var(--charcoal-mid);
  border: 1px solid rgba(196, 163, 90, 0.3);
  border-radius: var(--radius);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-error { color: #c97070; font-size: 0.85rem; margin-top: 0.25rem; }

.form-status { padding: 1rem; border-radius: var(--radius); margin-top: 1rem; }
.form-status.success { background: rgba(58, 93, 74, 0.3); border: 1px solid var(--success); color: var(--ivory); }
.form-status.error { background: rgba(139, 58, 58, 0.3); border: 1px solid var(--error); color: var(--ivory); }

.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.service-hero img { border-radius: var(--radius); border: 2px solid rgba(196, 163, 90, 0.3); }

.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.detail-box {
  padding: 1rem;
  background: var(--charcoal-mid);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: var(--radius);
}

.detail-box dt {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.25rem;
}

.detail-box dd { margin: 0; color: var(--ivory); }

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

.blog-post-header img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.blog-meta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.error-page { text-align: center; padding: 6rem 1.5rem; }

.error-code {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.guide-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
}

.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--oxidized));
}

.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 1rem; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--charcoal);
  transform: translateX(-4px);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

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

.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }

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

.cookies-table th, .cookies-table td {
  padding: 0.75rem;
  border: 1px solid rgba(196, 163, 90, 0.2);
  text-align: left;
}

.cookies-table th {
  background: var(--charcoal-mid);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
