:root {
  --ink: #1d1a17;
  --ink-soft: #4a423b;
  --cream: #f7f2e9;
  --cream-deep: #efe6d7;
  --paper: #fffdf9;
  --terracotta: #b5502c;
  --terracotta-dark: #963f1f;
  --olive: #6d7a4f;
  --gold: #d99a2b;
  --line: rgba(29, 26, 23, 0.12);
  --shadow-sm: 0 2px 8px rgba(29, 26, 23, 0.07);
  --shadow-md: 0 10px 30px rgba(29, 26, 23, 0.1);
  --shadow-lg: 0 24px 60px rgba(29, 26, 23, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.15rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}

.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }
.star-half {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(217, 154, 43, 0.28) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; }
.brand-text small { font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.02em; }

.nav { display: flex; gap: 1.5rem; }
.nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transition: right 0.25s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--terracotta); }

.btn-phone {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
.btn-phone:hover { background: var(--terracotta); color: #fff; }
.btn-phone svg { width: 16px; height: 16px; fill: currentColor; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(540px, 82vh, 780px);
  padding: 6rem 0 4.5rem;
  overflow: hidden;
  background: var(--ink);
}

.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 17, 14, 0.94) 0%, rgba(20, 17, 14, 0.66) 42%, rgba(20, 17, 14, 0.3) 72%, rgba(20, 17, 14, 0.45) 100%),
    linear-gradient(105deg, rgba(20, 17, 14, 0.7) 0%, rgba(20, 17, 14, 0) 65%);
}

.hero-inner { position: relative; z-index: 2; color: #fff; }
.hero-inner .eyebrow { color: var(--gold); }
.hero-inner h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }

.hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-rating strong { color: #fff; font-size: 1.05rem; }
.hero-rating a { color: rgba(255, 255, 255, 0.82); }
.hero-rating a:hover { color: #fff; }

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to top, var(--paper), rgba(255, 253, 249, 0));
  z-index: 1;
}

.strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 0;
}
.strip-item {
  padding: 1.85rem clamp(0.5rem, 2vw, 1.5rem);
  position: relative;
}
.strip-item + .strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--line);
}
.strip-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.strip-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.strip-item small { font-size: 0.8rem; color: var(--ink-soft); }

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-lead { font-size: 1.06rem; color: var(--ink-soft); }

.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, 0.86); }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark a { color: var(--gold); }

.offer {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 2.5rem;
  background: linear-gradient(120deg, var(--cream-deep), var(--cream));
  border: 1px solid rgba(181, 80, 44, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.offer-body { flex: 1 1 auto; }
.offer-body h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin-bottom: 0.35rem; }
.offer-body p:last-child { color: var(--ink-soft); font-size: 0.95rem; }
.offer-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--olive);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.offer-price {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--terracotta);
  line-height: 1;
  margin: 0;
}
.offer-price span { font-size: clamp(3rem, 8vw, 4.6rem); }

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.card {
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(181, 80, 44, 0.35);
}
.card h3 {
  padding-bottom: 0.6rem;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid rgba(181, 80, 44, 0.22);
}
.card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

.carta-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.tick-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.tick-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.note {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.carta-figure { margin: 0; }
.carta-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
}
.gallery button {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
}
.gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(29, 26, 23, 0.08);
  border-radius: inherit;
  transition: background 0.25s ease;
}
.gallery button:hover::after { background: rgba(29, 26, 23, 0.12); }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery button:hover img { transform: scale(1.05); }
.gallery-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.reviews {
  columns: 3;
  column-gap: 1.35rem;
}
.review {
  break-inside: avoid;
  margin: 0 0 1.35rem;
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.review p {
  margin: 0.7rem 0 1rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.review cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.info-list {
  margin: 2rem 0;
  display: grid;
  gap: 1.35rem;
}
.info-list dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.info-list dd {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}
.info-list a { color: var(--ink); font-weight: 600; }

.hours { width: 100%; max-width: 320px; border-collapse: collapse; }
.hours th, .hours td {
  padding: 0.45rem 0;
  text-align: left;
  font-weight: 400;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}
.hours th { color: var(--ink-soft); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.closed { color: var(--terracotta); font-weight: 600; }

.map-card {
  background: var(--paper);
  padding: 0.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
}
.map-caption {
  margin: 0.75rem 0.4rem 0.25rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-grid h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer-grid p { margin: 0 0 0.5rem; font-size: 0.93rem; line-height: 1.7; }
.footer-grid a { color: rgba(255, 255, 255, 0.86); text-decoration: none; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.brand-footer { color: #fff; margin-bottom: 1rem; }
.brand-footer .brand-text strong { color: #fff; }
.footer-note { max-width: 34ch; color: rgba(255, 255, 255, 0.6); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p { margin: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(16, 14, 12, 0.94);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lb-img {
  grid-column: 2;
  max-width: 100%;
  max-height: 86vh;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, 0.24); }
.lb-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 2;
}
.lb-prev { grid-column: 1; }
.lb-next { grid-column: 3; }
.lb-counter {
  position: absolute;
  bottom: clamp(0.75rem, 2.5vw, 1.75rem);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1000px) {
  .reviews { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .carta-layout, .info-layout { grid-template-columns: 1fr; }
  .carta-figure { order: -1; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .map-card iframe { height: 320px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 5vw, 2rem) 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav a:last-child { border-bottom: 0; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 0.7rem 0.85rem; }
}

@media (max-width: 640px) {
  .reviews { columns: 1; }
  .strip-grid { grid-template-columns: 1fr; }
  .offer { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .lightbox { grid-template-columns: 1fr; }
  .lb-img { grid-column: 1; max-height: 70vh; }
  .lb-nav {
    position: absolute;
    bottom: 3.5rem;
  }
  .lb-prev { left: 1.25rem; }
  .lb-next { right: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .gallery button:hover img { transform: none; }
}
