:root {
  color-scheme: light;
  /* Brand palette derived from the Mesón Los Monteros logo + Instagram (@losmonteros.meson):
     warm parchment/kraft backgrounds, deep wine-burgundy "oxblood" lettering,
     cherry-blossom rose accent, and espresso dark tones. */
  --color-cream: #f4ead6;
  --color-paper: #fbf5ea;
  --color-paper-soft: #f3e8d4;
  --color-kraft: #e8d9bd;
  --color-ink: #241410;
  --color-muted: #6a584a;
  --color-brick: #7c2230;
  --color-brick-dark: #581620;
  --color-oxblood: #4a141b;
  --color-cherry: #d97f9a;
  --color-blossom: #ecbccb;
  --color-olive: #33451f;
  --color-olive-light: #556832;
  --color-gold: #c79a55;
  --color-border: #dabf94;
  /* Tipografía: serif de alto contraste (Playfair Display) para titulares,
     imitando el estilo de las publicaciones de Instagram; Inter para el cuerpo. */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 16px 38px rgba(58, 34, 19, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header-height: 70px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #d29942;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(calc(-100% - 2rem));
  opacity: 0;
  pointer-events: none;
  background: var(--color-ink);
  color: var(--color-paper);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(251, 245, 234, 0.92);
  border-bottom: 1px solid rgba(92, 45, 32, 0.18);
  box-shadow: 0 8px 28px rgba(36, 20, 16, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 245, 234, 0.98);
  border-color: rgba(92, 45, 32, 0.24);
  box-shadow: 0 14px 34px rgba(36, 20, 16, 0.14);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-brick-dark);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 3px 8px rgba(69, 20, 20, 0.16));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-pre {
  color: var(--color-brick);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

.brand-name {
  color: var(--color-oxblood);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-place {
  margin-top: 0.16rem;
  color: #4f3b2e;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 90;
  display: grid;
  gap: 0;
  padding: 0.55rem 1rem 0.85rem;
  background: rgba(251, 245, 234, 0.98);
  border-bottom: 1px solid rgba(92, 45, 32, 0.2);
  box-shadow: 0 18px 34px rgba(36, 20, 16, 0.14);
  backdrop-filter: blur(14px);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
}

.nav-open .primary-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.primary-nav a {
  border-radius: 0;
  border-bottom: 1px solid rgba(122, 75, 39, 0.12);
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.8rem 0.2rem;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-brick);
  background: #f2e3cd;
}

.primary-nav a:last-child {
  border-bottom: 0;
}

.primary-nav .nav-reserve {
  color: var(--color-brick);
  font-weight: 800;
}

.nav-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  transition: background 160ms ease;
}

.nav-toggle:hover {
  background: rgba(159, 47, 36, 0.09);
}

.nav-toggle span {
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background: var(--color-brick-dark);
  transition: transform 240ms cubic-bezier(0.2, 0.7, 0.3, 1), opacity 160ms ease;
}

.nav-toggle span:nth-child(2) {
  width: 1.1rem;
  align-self: center;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  width: 1.5rem;
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  display: inline-flex;
}

.header-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid var(--color-brick);
  border-radius: 5px;
  background: var(--color-brick);
  color: #fffdf7;
  font-weight: 800;
  line-height: 1.1;
  padding: 0.84rem 1.18rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--color-brick-dark);
  border-color: var(--color-brick-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
}

.button-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button-ghost {
  background: rgba(33, 20, 15, 0.26);
  color: var(--color-paper);
  border-color: rgba(255, 250, 241, 0.82);
}

.button-ghost:hover {
  background: var(--color-paper);
  border-color: var(--color-paper);
  color: var(--color-brick-dark);
}

.button-ghost.light {
  background: transparent;
  border-color: #bd9f75;
  color: var(--color-ink);
}

.button-ghost.light:hover {
  background: #f1dfc3;
  color: var(--color-ink);
}

.whatsapp {
  background: #2e7d47;
  border-color: #2e7d47;
}

.whatsapp .button-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  stroke: none;
}

.whatsapp:hover {
  background: #246437;
  border-color: #246437;
}

.hero {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 2.3rem) 0 4.8rem;
  background: var(--color-paper);
  color: var(--color-ink);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 118px;
  background: linear-gradient(to bottom, rgba(251, 245, 234, 0), var(--color-paper) 88%);
  pointer-events: none;
  content: "";
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 245, 234, 0.6), rgba(251, 245, 234, 0.28) 46%, rgba(251, 245, 234, 0.08) 76%, rgba(251, 245, 234, 0)),
    linear-gradient(0deg, rgba(251, 245, 234, 0.24), rgba(251, 245, 234, 0) 56%);
}

@media (max-width: 759px) {
  .hero-image {
    object-position: right center;
  }

  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
}

.hero-copy {
  position: relative;
  max-width: min(100%, 760px);
}

.hero h1,
.section h2,
.contact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
}

.hero h1 {
  max-width: 780px;
  color: var(--color-oxblood);
  font-size: clamp(2.65rem, 7vw, 5.25rem);
  text-shadow: 0 2px 0 rgba(255, 253, 247, 0.9), 0 12px 24px rgba(88, 22, 32, 0.12);
}

.hero h1 span {
  display: block;
}

@media (min-width: 760px) {
  .hero h1 span {
    display: inline;
  }
}

.hero-tagline {
  max-width: 50rem;
  margin: 0.68rem 0 0;
  color: var(--color-brick);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255, 253, 247, 0.78);
}

.hero p {
  max-width: 42rem;
  margin: 1.05rem 0 0;
  color: rgba(36, 20, 16, 0.86);
  font-size: 1.04rem;
  font-weight: 650;
  text-shadow: 0 1px 0 rgba(255, 253, 247, 0.72);
}

.hero-summary {
  max-width: 39rem !important;
  color: rgba(36, 20, 16, 0.82) !important;
  font-size: clamp(1rem, 1.45vw, 1.1rem) !important;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.95rem;
}

.hero .button-ghost {
  background: rgba(251, 245, 234, 0.62);
  color: var(--color-brick-dark);
  border-color: rgba(88, 22, 32, 0.55);
  box-shadow: 0 10px 24px rgba(88, 22, 32, 0.08);
}

.hero .button-ghost:hover {
  background: var(--color-paper);
  border-color: var(--color-brick);
  color: var(--color-brick);
}

.section {
  padding: 4.3rem 0;
}

.specialties {
  padding-top: 2.5rem;
  background: var(--color-paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 1.4rem;
}

.section-kicker {
  margin: 0 0 0.32rem;
  color: var(--color-brick);
  font-weight: 800;
}

.section h2 {
  color: var(--color-ink);
  font-size: clamp(2rem, 5vw, 2.85rem);
}

.section-heading p,
.about-copy p,
.events-panel p {
  color: var(--color-muted);
}

.ornament {
  position: relative;
  display: block;
  width: min(280px, 68vw);
  height: 18px;
  margin: 0.65rem auto 0;
}

.ornament::before,
.ornament::after {
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  height: 2px;
  background: var(--color-brick);
  content: "";
}

.ornament::before {
  left: 0;
}

.ornament::after {
  right: 0;
}

.ornament {
  background:
    radial-gradient(circle at center, var(--color-brick) 0 4px, transparent 4.5px),
    radial-gradient(ellipse at calc(50% - 13px) 50%, var(--color-cherry) 0 4px, transparent 4.5px),
    radial-gradient(ellipse at calc(50% + 13px) 50%, var(--color-cherry) 0 4px, transparent 4.5px);
}

.specialty-grid {
  display: grid;
  gap: 1.05rem;
}

.specialty-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 0 10px 26px rgba(58, 34, 19, 0.09);
}

.specialty-card img {
  width: 100%;
  aspect-ratio: 4 / 2.72;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.specialty-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.specialty-body {
  display: grid;
  gap: 0.58rem;
  padding: 1.1rem 1.2rem 1.35rem;
}

.icon-circle {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--color-brick);
}

.icon-circle svg {
  width: 2.45rem;
  height: 2.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.specialty-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

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

.about {
  background: linear-gradient(90deg, var(--color-paper-soft), #fffaf1);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

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

.about-copy h2 {
  margin-bottom: 1rem;
}

.about-claim {
  color: var(--color-brick) !important;
  font-weight: 800;
}

.signature {
  margin: 0.5rem 0 0;
  color: var(--color-brick) !important;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
}

.about-media {
  margin: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-media figcaption {
  margin-top: 0.6rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

@media (max-width: 759px) {
  .about-copy h2,
  .about-claim,
  .signature {
    text-align: center;
  }

  .signature {
    margin-top: 0.75rem;
    font-size: 1.7rem;
  }

  .about-media img {
    max-height: 58vh;
    object-position: center 62%;
  }

  .about-media figcaption {
    text-align: center;
  }
}

.gallery {
  background: var(--color-paper);
}

.gallery-grid {
  display: grid;
  gap: 0.55rem;
}

.gallery-grid figure {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #ead5b8;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 2.4;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-more {
  width: fit-content;
  margin: 1rem auto 0;
  background: transparent;
  color: var(--color-brick);
}

.gallery-more:hover {
  color: var(--color-paper);
}

.events {
  background: #f4ead8;
  color: var(--color-ink);
}

.events-panel {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.events-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.events-icon {
  display: none;
  color: var(--color-brick);
}

.events-icon svg {
  width: 5.8rem;
  height: 5.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.events-panel h2 {
  max-width: 620px;
  font-size: clamp(1.75rem, 4vw, 2.3rem);
}

.events-panel p {
  max-width: 560px;
}

.events-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 460px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 60%;
  box-shadow: var(--shadow-soft);
}

.contact {
  background: var(--color-paper);
  padding-top: 3.2rem;
}

.contact-stack {
  display: grid;
  gap: 1.2rem;
}

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

.contact-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 0 8px 22px rgba(58, 34, 19, 0.08);
}

.contact-card h3 {
  text-align: center;
  font-size: 1.65rem;
}

.contact-card p {
  margin: 0;
  color: var(--color-muted);
  text-align: center;
}

.reservation-form {
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.34rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 2.72rem;
  border: 1px solid #cba77b;
  border-radius: 5px;
  background: #fffaf1;
  padding: 0.64rem 0.75rem;
}

.field textarea {
  resize: vertical;
}

.field-select {
  width: 100%;
  min-height: 2.72rem;
  border: 1px solid #cba77b;
  border-radius: 5px;
  background-color: #fffaf1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239f2f24' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1.1rem;
  padding: 0.64rem 2.3rem 0.64rem 0.75rem;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
}

.field-select:focus {
  border-color: var(--color-brick);
  outline: 3px solid rgba(159, 47, 36, 0.18);
}

.field-select:invalid {
  color: var(--color-muted);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-brick);
  outline: 3px solid rgba(159, 47, 36, 0.18);
}

.two-columns {
  grid-template-columns: 1fr;
}

.datepicker {
  position: relative;
}

.datepicker-trigger {
  display: flex;
  width: 100%;
  min-height: 2.72rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #cba77b;
  border-radius: 5px;
  background: #fffaf1;
  padding: 0.64rem 0.75rem;
  color: var(--color-ink);
  text-align: left;
}

.datepicker-trigger:hover {
  border-color: var(--color-brick);
}

.datepicker.is-open .datepicker-trigger,
.datepicker-trigger:focus-visible {
  border-color: var(--color-brick);
  outline: 3px solid rgba(159, 47, 36, 0.18);
  outline-offset: 0;
}

.datepicker-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-brick);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.datepicker-text {
  overflow: hidden;
  color: var(--color-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.datepicker-trigger.has-value .datepicker-text {
  color: var(--color-ink);
  font-weight: 700;
}

.datepicker-trigger.is-invalid {
  border-color: #b3261e;
  background: #fdf3f1;
  outline: 3px solid rgba(179, 38, 30, 0.16);
}

.field-error {
  margin-top: 0.35rem;
  color: #b3261e;
  font-size: 0.84rem;
  font-weight: 700;
}

.field-error[hidden] {
  display: none;
}

.datepicker-pop {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(20rem, 86vw);
  padding: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.datepicker-pop[hidden] {
  display: none;
}

.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.dp-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
}

button.dp-title {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-ink);
  padding: 0.25rem 0.55rem;
}

button.dp-title:hover {
  background: #f1dfc3;
  color: var(--color-brick-dark);
}

.dp-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

.dp-month {
  display: grid;
  min-height: 2.6rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fffdf7;
  color: var(--color-ink);
  font-weight: 700;
  transition: background 140ms ease, color 140ms ease;
}

.dp-month:hover:not(:disabled) {
  background: #f1dfc3;
}

.dp-month.is-today {
  box-shadow: inset 0 0 0 1px var(--color-brick);
}

.dp-month.is-selected {
  background: var(--color-brick);
  border-color: var(--color-brick);
  color: #fffdf7;
  font-weight: 800;
}

.dp-month:disabled {
  color: #c4b29c;
  background: transparent;
  cursor: not-allowed;
}

.dp-nav {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fffdf7;
  color: var(--color-brick);
}

.dp-nav:hover:not(:disabled) {
  background: #f1dfc3;
}

.dp-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.dp-nav svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.18rem;
}

.dp-dow {
  padding: 0.25rem 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.dp-day {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 140ms ease, color 140ms ease;
}

.dp-day:hover:not(:disabled) {
  background: #f1dfc3;
}

.dp-day.is-today {
  box-shadow: inset 0 0 0 1px var(--color-brick);
}

.dp-day.is-selected {
  background: var(--color-brick);
  color: #fffdf7;
  font-weight: 800;
}

.dp-day:disabled {
  color: #c4b29c;
  cursor: not-allowed;
}

.dp-empty {
  background: transparent;
}

.form-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.form-note.is-success {
  color: var(--color-olive);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  font-style: normal;
}

.contact-row {
  display: grid;
  gap: 0.1rem;
}

.contact-label {
  color: var(--color-brick);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hours {
  display: grid;
  gap: 0.12rem;
}

.contact-details a {
  color: var(--color-ink);
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--color-brick);
  text-decoration: underline;
}

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

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 245px;
  border: 0;
  border-radius: 6px;
}

.map-card .button {
  width: 100%;
}

.site-footer {
  padding: 2rem 0 1.2rem;
  background: linear-gradient(135deg, #2c161a, #481922);
  color: rgba(255, 250, 241, 0.9);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  color: #f2d19a;
}

.footer-brand .brand-mark {
  background: transparent;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
}

.footer-brand .brand-name,
.footer-brand .brand-pre,
.footer-brand .brand-place {
  color: #e8c282;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.site-footer address,
.footer-links {
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.site-footer a {
  color: #f3d29d;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.section-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .section-reveal {
  opacity: 1;
  transform: translateY(10px);
}

.section-reveal.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 559px) {
  .header-inner {
    gap: 0.45rem;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.45rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .brand-copy {
    max-width: 8rem;
  }

  .brand-pre {
    font-size: 0.7rem;
  }

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

  .brand-place {
    display: none;
  }

  .header-actions {
    gap: 0.38rem;
  }

  .header-cta {
    display: none;
  }

  .button-small {
    min-height: 2.42rem;
    padding: 0.58rem 0.72rem;
    font-size: 0.88rem;
  }

  .nav-toggle {
    width: 2.42rem;
    height: 2.42rem;
  }

  .section h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.08rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-image {
    object-position: center;
  }

  .hero-copy {
    max-width: 21rem;
  }

  .hero h1 {
    font-size: clamp(2.48rem, 11vw, 3.35rem);
  }

  .hero-tagline {
    font-size: clamp(1.24rem, 6.2vw, 1.65rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    max-width: 15.5rem;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 560px) {
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-icon {
    display: block;
  }
}

@media (min-width: 980px) {
  :root {
    --header-height: 86px;
  }

  .container {
    width: min(100% - 3.2rem, var(--container));
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 3.95rem;
    height: 3.95rem;
  }

  .brand-pre {
    font-size: 0.9rem;
  }

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

  .brand-place {
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.16rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    visibility: visible;
  }

  .primary-nav a {
    position: relative;
    border-bottom: 0;
    padding: 0.45rem 0.05rem;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .primary-nav .nav-reserve {
    display: none;
  }

  .primary-nav a:first-child {
    color: var(--color-brick);
  }

  .primary-nav a:first-child::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--color-brick);
    content: "";
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: transparent;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    min-height: 600px;
    padding-bottom: 5.3rem;
  }

  .section {
    padding: 5.3rem 0;
  }

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

  .about-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 3rem;
  }

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

  .gallery-grid figure {
    min-height: 170px;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 2.2;
  }

  .events-panel {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 2.4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.95fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.45fr 0.9fr 0.65fr;
    align-items: start;
  }
}

@media (min-width: 1220px) {
  .hero h1 {
    font-size: 4.2rem;
  }
}
