:root {
  --ink: #1d1714;
  --ink-soft: #342722;
  --muted: #655954;
  --paper: #fbf7ef;
  --porcelain: #fffdf8;
  --line: #e6ded2;
  --wood: #7e2f22;
  --wood-dark: #321512;
  --gold: #b88a4a;
  --gold-soft: #efe2cc;
  --shadow: 0 22px 65px rgba(29, 23, 20, 0.14);
  --radius: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--porcelain);
  --card-foreground: var(--ink);
  --primary: var(--ink);
  --primary-foreground: var(--porcelain);
  --secondary: #f6efe4;
  --secondary-foreground: var(--wood-dark);
  --muted-surface: #f7f0e6;
  --muted-foreground: var(--muted);
  --accent: #f3e4cc;
  --accent-foreground: var(--wood-dark);
  --border: rgba(52, 39, 34, 0.14);
  --input: rgba(52, 39, 34, 0.16);
  --ring: rgba(126, 47, 34, 0.42);
  --shadow-sm: 0 1px 2px rgba(29, 23, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(29, 23, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photo-settle {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body {
  margin: 0;
  color: var(--foreground);
  background:
    linear-gradient(90deg, rgba(126, 47, 34, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--background), #f5efe6 58%, #fffaf0);
  background-size: 80px 80px, auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.68;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4.7rem, 12vw, 10.5rem);
  font-weight: 400;
  line-height: 0.84;
  text-shadow: 0 2px 0 #fff, 0 22px 40px rgba(29, 23, 20, 0.2);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.62rem, 2.8vw, 2.18rem);
  line-height: 1.18;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--porcelain);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-170%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 10px clamp(18px, 4.4vw, 64px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.35rem;
  line-height: 1;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.9;
}

.brand-subtitle {
  margin-left: 34%;
  color: var(--wood);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.site-nav,
.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.site-nav {
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  justify-content: flex-end;
}

.site-nav a,
.language-link,
.header-phone,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out), box-shadow 150ms var(--ease-out), transform 150ms var(--ease-out);
}

.site-nav a {
  padding: 9px 12px;
  color: var(--muted-foreground);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--muted-surface);
  color: var(--ink);
}

.language-link,
.header-phone,
.language-callout {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-link {
  padding: 9px 14px;
  border: 1px solid var(--input);
  background: rgba(255, 253, 248, 0.72);
  color: var(--secondary-foreground);
}

.language-link:hover {
  background: var(--secondary);
  border-color: rgba(126, 47, 34, 0.28);
}

.header-phone {
  padding: 9px 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: stretch;
  gap: clamp(24px, 5.6vw, 76px);
  padding: clamp(32px, 7vw, 88px) clamp(18px, 4.4vw, 64px);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.language-callout {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  color: var(--secondary-foreground);
  text-decoration: none;
}

.language-callout:hover {
  background: var(--secondary);
}

.hero-copy {
  animation: soft-rise 680ms var(--ease-out) both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 4px 0 22px;
  color: var(--wood-dark);
  font-size: clamp(2rem, 5.2vw, 4.3rem);
  font-style: italic;
  line-height: 0.96;
}

.hero-copy > p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proofs li {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted-surface);
  color: var(--secondary-foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.button {
  border: 1px solid transparent;
  padding: 11px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button:hover,
.phone-link:hover,
.header-phone:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}

.button.primary:hover {
  background: var(--wood-dark);
}

.button.secondary {
  border-color: var(--input);
  background: rgba(255, 253, 248, 0.72);
  color: var(--foreground);
}

.button.secondary:hover {
  background: var(--secondary);
  border-color: rgba(126, 47, 34, 0.28);
}

.hero-media {
  position: relative;
  align-self: center;
  width: min(100%, 420px);
  justify-self: center;
  margin: 0;
  border: 9px solid #15110f;
  border-bottom-color: var(--wood-dark);
  border-radius: var(--radius);
  background: #15110f;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: photo-settle 760ms var(--ease-out) 120ms both;
}

.hero-media::after {
  content: attr(data-badge);
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  color: var(--wood-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 42%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 700ms var(--ease-out);
}

.hero-media:hover img {
  transform: scale(1.025);
}

.hero-media figcaption {
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  background: #15110f;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.05rem;
  line-height: 1.55;
}

.quick-info {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto clamp(32px, 6vw, 72px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: soft-rise 680ms var(--ease-out) 220ms both;
}

.quick-info div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  background: var(--card);
}

.quick-label,
.address-label {
  color: var(--wood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: clamp(1.12rem, 1.9vw, 1.34rem);
  line-height: 1.32;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) 0;
}

.split-layout,
.appointment-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
}

.section-heading {
  max-width: 560px;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.rich-text {
  max-width: 720px;
}

.rich-text p {
  color: var(--muted);
}

.rich-text strong {
  color: var(--ink);
}

blockquote {
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

blockquote p {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3.1vw, 2.95rem);
  font-style: italic;
  line-height: 1.12;
}

cite {
  color: var(--muted);
  font-size: 1.05rem;
  font-style: normal;
}

.appointment-section {
  background: var(--ink);
  color: var(--porcelain);
}

.appointment-section .eyebrow,
.appointment-section .text-link {
  color: #e2b56e;
}

.appointment-section p {
  color: rgba(255, 253, 248, 0.8);
}

.appointment-copy {
  align-self: center;
}

.appointment-photo {
  max-width: 560px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background: #15110f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.appointment-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.appointment-photo figcaption {
  margin: 0;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
}

.text-link {
  font-weight: 800;
  text-underline-offset: 0.18em;
}

.phone-link {
  display: inline-grid;
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  color: var(--porcelain);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 150ms var(--ease-out), border-color 150ms var(--ease-out), background 150ms var(--ease-out);
}

.phone-link:hover {
  border-color: rgba(226, 181, 110, 0.44);
  background: rgba(255, 253, 248, 0.12);
}

.phone-link span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.62rem, 3.1vw, 2.45rem);
  font-weight: 800;
}

.phone-link small {
  color: rgba(255, 253, 248, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-panel,
.address-panel {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
}

.hours-panel {
  border: 1px solid rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.panel-heading {
  margin-bottom: 22px;
}

.hours-summary {
  display: inline-flex;
  margin: 16px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(226, 181, 110, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  color: var(--porcelain);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.8);
}

.hours-list .closed dd {
  color: #e2b56e;
}

.note {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.visit-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.6), rgba(239, 226, 204, 0.35));
}

.faq-section {
  background: var(--porcelain);
}

.guides-preview {
  background: linear-gradient(180deg, rgba(239, 226, 204, 0.32), rgba(255, 253, 248, 0.72));
}

.faq-section .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.faq-list h3 {
  padding: 18px 20px 0;
  color: var(--card-foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.guide-links {
  display: grid;
  gap: 12px;
  align-self: start;
}

.guide-links a,
.guide-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.guide-links a {
  display: block;
  padding: 18px 20px;
  color: var(--card-foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.guide-links a:hover,
.guide-card:hover {
  border-color: rgba(126, 47, 34, 0.28);
  background: rgba(255, 253, 248, 0.92);
  transform: translateY(-1px);
}

.guide-links a,
.guide-card {
  transition: transform 150ms var(--ease-out), border-color 150ms var(--ease-out), background 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}

.address-panel {
  align-self: start;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

@supports (animation-timeline: view()) {
  .story-section .section-inner,
  .appointment-section .section-inner,
  .visit-section .section-inner {
    animation: soft-rise both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }
}

.address-label {
  display: block;
  margin-bottom: 8px;
}

address {
  margin-bottom: 26px;
  font-size: clamp(1.6rem, 3vw, 2.28rem);
  font-style: normal;
  line-height: 1.16;
}

.parking-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 4.4vw, 64px);
  background: #15110f;
  color: rgba(255, 253, 248, 0.8);
  font-size: 1.05rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-size: inherit;
  line-height: 1.55;
}

.site-footer a {
  color: #e2b56e;
  font-weight: 800;
}

.footer-legal {
  display: inline-block;
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
}

.footer-privacy {
  margin: 6px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #e2b56e;
  cursor: pointer;
  font: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
}

.consent-banner {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  z-index: 50;
  width: min(560px, calc(100vw - 28px));
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  animation: soft-rise 220ms var(--ease-out);
}

.consent-banner[data-state="leaving"] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.consent-content {
  padding: clamp(14px, 2vw, 20px);
  background: var(--porcelain);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(140%);
}

.consent-copy {
  display: grid;
  gap: 6px;
}

.consent-copy h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.consent-copy p,
.consent-status {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  line-height: 1.42;
}

.consent-policy {
  width: fit-content;
  color: var(--wood);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.consent-panel {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.consent-panel[hidden],
.consent-actions [hidden] {
  display: none;
}

.consent-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.consent-choice strong,
.consent-choice small {
  display: block;
}

.consent-choice strong {
  font-size: 0.92rem;
}

.consent-choice small {
  margin-top: 2px;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.4;
}

.consent-choice input {
  width: 22px;
  height: 22px;
  accent-color: var(--wood);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.consent-actions .button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.72);
  color: var(--foreground);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.consent-actions .button.primary {
  border-color: var(--input);
}

.consent-actions .button:hover {
  background: var(--secondary);
  border-color: rgba(126, 47, 34, 0.28);
}

.consent-status {
  min-height: 1.3em;
  margin-top: 8px;
}

.privacy-button {
  border: 1px solid var(--primary);
  cursor: pointer;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero,
.guides-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(239, 226, 204, 0.42), rgba(255, 253, 248, 0.68));
}

.legal-hero .section-inner,
.guides-hero .section-inner {
  padding-block: clamp(54px, 8vw, 92px);
}

.legal-hero h1,
.guides-hero h1,
.article-content h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: none;
}

.legal-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.46rem);
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--wood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0 clamp(64px, 9vw, 112px);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.08;
}

.legal-section p,
.legal-section dd {
  color: var(--muted);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section address {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.legal-details {
  margin: 0;
}

.legal-details div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.legal-details div:first-child {
  padding-top: 0;
}

.legal-details dt {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-details dd {
  margin: 0;
}

.guide-index {
  background: var(--card);
}

.guide-start {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 56px);
  padding-bottom: clamp(24px, 4vw, 44px);
}

.guide-start-heading {
  max-width: 520px;
}

.guide-start-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.guide-start-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.guide-start-grid {
  display: grid;
  gap: 12px;
  align-self: start;
}

.guide-start-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--card-foreground);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 150ms var(--ease-out), border-color 150ms var(--ease-out), background 150ms var(--ease-out);
}

.guide-start-card:hover {
  border-color: rgba(126, 47, 34, 0.28);
  background: rgba(255, 253, 248, 0.92);
  transform: translateY(-1px);
}

.guide-start-card strong {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
}

.guide-start-card span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: clamp(24px, 4vw, 44px);
}

.guide-card {
  padding: 24px;
}

.guide-card.featured {
  grid-column: span 2;
  padding: clamp(24px, 4vw, 38px);
  background: var(--secondary);
}

.guide-card h2 {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.22;
}

.guide-card h2 a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.guide-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: var(--secondary-foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-card-meta span {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.guide-language,
.guide-meta {
  color: var(--wood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-language {
  margin-bottom: 10px;
}

.article-main {
  background: linear-gradient(180deg, rgba(239, 226, 204, 0.36), var(--porcelain) 260px);
}

.article-content {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(70px, 9vw, 118px);
}

.article-content h1 {
  line-height: 1.02;
}

.article-content h2 {
  margin: 52px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content > p,
.article-content > ul,
.article-content > ol,
.article-section > p,
.article-section > ul,
.article-section > ol {
  max-width: 760px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 26px;
  padding-left: 1.25em;
}

.article-content li + li {
  margin-top: 8px;
}

.article-section {
  margin-top: 44px;
}

.article-byline {
  margin: -10px 0 24px;
  color: var(--wood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(1.28rem, 2.2vw, 1.58rem);
}

.article-hero-image {
  margin: 34px 0 32px;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.article-hero-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 10px;
}

.guide-meta span {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted-surface);
  color: var(--secondary-foreground);
}

.article-summary,
.article-note,
.article-toc,
.article-related,
.article-practical {
  max-width: 820px;
  margin: 34px 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.article-summary h2,
.article-note h2,
.article-toc h2,
.article-related h2,
.article-practical h2 {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

.article-summary ul,
.article-toc ol {
  margin-bottom: 0;
}

.article-note {
  border-left: 4px solid var(--wood);
  background: var(--secondary);
}

.article-note p:last-child,
.article-summary p:last-child,
.article-related p:last-child,
.article-practical p:last-child {
  margin-bottom: 0;
}

.article-practical {
  background: var(--secondary);
}

.article-practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  overflow: hidden;
}

.article-practical-grid p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 15px;
  background: rgba(255, 253, 248, 0.82);
}

.article-practical-grid strong {
  color: var(--wood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-practical-grid span {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.42;
}

.article-toc a,
.article-related a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.article-related-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
  text-decoration: none;
  transition: border-color 150ms var(--ease-out), background 150ms var(--ease-out), transform 150ms var(--ease-out);
}

.article-related-card:hover {
  border-color: rgba(126, 47, 34, 0.28);
  background: var(--porcelain);
  transform: translateY(-1px);
}

.article-related-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.article-related-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.article-sources {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--ring);
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .hero,
  .split-layout,
  .appointment-grid,
  .visit-grid,
  .faq-section .section-inner,
  .legal-section,
  .guide-start,
  .guide-cards,
  .article-practical-grid,
  .article-related-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .guide-card.featured {
    grid-column: span 1;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 430px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .site-header {
    gap: 8px;
    padding: 10px 14px 12px;
  }

  .brand {
    width: 100%;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }

  .brand-name {
    font-size: 2.05rem;
  }

  .brand-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .site-nav,
  .header-actions {
    width: 100%;
    display: grid;
  }

  .site-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .header-actions {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .site-nav a,
  .language-link,
  .header-phone {
    min-height: 42px;
    width: 100%;
    padding: 8px 10px;
    letter-spacing: 0.02em;
  }

  .language-callout {
    display: none;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-subtitle {
    font-size: clamp(1.95rem, 12vw, 3.15rem);
  }

  .hero-actions,
  .map-actions {
    display: grid;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .hours-list div {
    display: grid;
    gap: 2px;
  }

  .legal-details div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .consent-content {
    padding: 14px;
  }

  .consent-copy h2 {
    font-size: 1rem;
  }

  .consent-copy p {
    font-size: 0.84rem;
  }

  .consent-policy {
    font-size: 0.78rem;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .consent-actions .button {
    width: 100%;
    min-height: 38px;
    padding-inline: 6px;
    font-size: 0.72rem;
  }
}

@media (max-width: 430px) {
  .site-nav a,
  .language-link,
  .header-phone {
    min-height: 40px;
    padding-inline: 4px;
    font-size: 0.72rem;
    letter-spacing: 0;
  }
}
