@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f3eee4;
  --bg-soft: #ebe4d7;
  --paper: #f8f2e8;
  --ink: #272925;
  --muted: #65695f;
  --brand: #b15e33;
  --brand-2: #cb7f4a;
  --accent: #3f5e4d;
  --line: rgba(47, 67, 58, 0.18);
  --chip: #f1eadf;
  --footer-1: #1f2523;
  --footer-2: #161b19;
  --shadow: 0 16px 38px rgba(24, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.68;
  background:
    radial-gradient(circle at 85% -10%, rgba(221, 201, 164, 0.28), transparent 34%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  overflow-x: hidden;
}

main {
  flex: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
  background-image: linear-gradient(to right, rgba(41, 61, 52, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

img.img-fallback {
  object-fit: contain;
  padding: 1rem;
  background: #ebe3d5;
  border: 1px solid var(--line);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(43, 64, 54, 0.22);
  background: rgba(250, 250, 246, 0.86);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.72rem;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 0.34rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(56, 82, 70, 0.36);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #2a4037;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

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

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

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

.nav-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.nav-links a {
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.93rem;
  color: #4a5752;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #2f3935;
  background: rgba(47, 93, 76, 0.08);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #2a2f2d;
}

h1 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 0.52rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.24rem, 1.7vw, 1.55rem);
}

p {
  color: #56605b;
}

.kicker {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.14rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 28px rgba(198, 92, 55, 0.3);
}

.btn.secondary {
  color: #4c5551;
  border: 1px solid rgba(55, 82, 70, 0.3);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 239, 0.82));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.section {
  padding: 2.3rem 0;
}

.intro-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 820px);
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.intro-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 16, 0.35), rgba(15, 17, 16, 0.58)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.intro-hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  text-align: center;
  color: #f7f2e8;
  padding: 0 0.6rem;
}

.intro-kicker {
  margin: 0;
  color: #f6d3a8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.intro-hero-content h1 {
  margin: 0.55rem 0 1rem;
  color: #fff7ea;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.intro-hero-content .cta-row {
  justify-content: center;
}

.intro-hero-content .btn.secondary {
  color: #fff7ea;
  border-color: rgba(255, 244, 224, 0.55);
  background: rgba(20, 22, 20, 0.24);
  backdrop-filter: blur(2px);
}

.hero {
  padding: 1.6rem 0 1.8rem;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.9rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.hero-copy {
  max-width: 65ch;
  padding: 0.1rem 0;
  align-self: start;
}

.hero-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.hero-media video,
.hero-media img,
.gallery img,
.split > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hero-media video,
.hero-media img {
  min-height: 0;
}

.split > img {
  min-height: 260px;
  max-height: 340px;
  object-position: center;
}

.hero-media video,
.hero-media img {
  border: 1px solid rgba(57, 83, 71, 0.26);
  box-shadow: 0 12px 26px rgba(37, 44, 40, 0.15);
}

.hero-media img {
  display: none;
}

.hero-media.is-fallback video {
  display: none;
}

.hero-media.is-fallback img {
  display: block;
}

.hero-media::after {
  content: "Video disponibile a breve";
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  font-size: 0.74rem;
  color: #fff;
  background: rgba(17, 20, 19, 0.62);
}

.hero-media.no-video::after {
  display: none;
}

.hero-media.no-video {
  max-width: 520px;
  justify-self: end;
}

.hero-media.no-video img {
  object-position: center 42%;
}

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

.card {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards .card {
  padding: 0.65rem 0 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.badges li {
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.84rem;
  border: 1px solid rgba(79, 88, 74, 0.2);
  background: rgba(252, 248, 241, 0.85);
}

.notice {
  margin-top: 1rem;
  padding: 0.66rem 0.1rem 0.72rem;
  border-left: 0;
  border-top: 1px dashed rgba(77, 86, 74, 0.35);
  border-bottom: 1px dashed rgba(77, 86, 74, 0.35);
  border-radius: 0;
  background: transparent;
}

.experience-strip p {
  margin: 0;
  padding: 0.88rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  color: #66716b;
}

.experience-strip span {
  color: #98815f;
}

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

.gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(57, 83, 71, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.gallery-link {
  display: block;
}

.gallery img {
  aspect-ratio: 5 / 6;
  min-height: 170px;
  max-height: 220px;
  object-position: center 45%;
  transition: transform 0.28s ease;
}

.gallery-link:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-main {
  min-height: 100%;
}

.contact-rows {
  display: grid;
  gap: 0.44rem;
  margin-top: 0.85rem;
}

.contact-side .btn {
  margin-top: 0.5rem;
}

.contact-form-section {
  grid-column: 1 / -1;
}

.contact-form-section .notice {
  margin-top: 1.2rem;
}

.contact-form {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.72rem;
}

.contact-form label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.9rem;
  color: #49504b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(65, 82, 72, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.68rem;
  font: inherit;
  color: #2a302d;
  background: rgba(255, 255, 255, 0.86);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(198, 112, 66, 0.18);
  border-color: rgba(177, 94, 51, 0.7);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0.6rem 0 0;
  padding: 0.6rem 0.74rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.form-status.ok {
  color: #214b33;
  border-color: rgba(45, 132, 78, 0.28);
  background: rgba(224, 246, 233, 0.72);
}

.form-status.err {
  color: #6b2b24;
  border-color: rgba(189, 72, 54, 0.26);
  background: rgba(254, 232, 228, 0.7);
}

.contact-photo {
  margin: 0.9rem 0 0.8rem;
  border: 1px solid rgba(57, 83, 71, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
}

.contact-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.contact-photo figcaption {
  margin: 0;
  padding: 0.4rem 0.62rem 0.52rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.map {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(27, 37, 33, 0.13);
}

.menu-layout {
  display: grid;
  gap: 1.1rem;
}

.menu-intro {
  max-width: 100%;
  border-top: 1px solid rgba(64, 89, 75, 0.25);
  background:
    radial-gradient(circle at 8% -10%, rgba(208, 152, 112, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(249, 243, 235, 0.72));
}

.menu-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.menu-meta span {
  border: 1px solid rgba(78, 101, 89, 0.22);
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  background: rgba(255, 253, 249, 0.84);
  font-size: 0.82rem;
  color: #4f5d57;
  font-weight: 600;
}

.menu-tools {
  border-top: 1px solid rgba(64, 89, 75, 0.22);
  display: grid;
  gap: 0.4rem;
  background: rgba(255, 250, 243, 0.68);
}

.menu-loading {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  color: #616b66;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.menu-tab {
  border: 1px solid rgba(74, 90, 81, 0.27);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.85);
  color: #4f5d57;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(177, 94, 51, 0.46);
}

.menu-tab.active {
  color: #fff;
  border-color: rgba(176, 90, 47, 0.75);
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
}

.menu-content {
  display: grid;
  gap: 0.95rem;
}

.menu-block {
  border-top: 1px solid rgba(64, 89, 75, 0.2);
  padding-top: 0.72rem;
}

.menu-block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.7rem;
}

.menu-block-head h2 {
  margin-bottom: 0.1rem;
}

.menu-block-head p {
  margin: 0;
  font-size: 0.88rem;
  color: #63706a;
}

.menu-category {
  border: 1px solid rgba(62, 84, 73, 0.16);
  border-radius: 14px;
  padding: 0.78rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(222, 206, 175, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 24px rgba(39, 52, 46, 0.07);
  opacity: 0;
  transform: translateY(8px);
  animation: menu-rise 0.36s ease forwards;
}

.menu-category + .menu-category {
  margin-top: 0.85rem;
}

.menu-category h3 {
  margin-bottom: 0.58rem;
}

.menu-category-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  padding: 0.1rem 0 0.35rem;
  cursor: pointer;
  text-align: left;
}

.menu-category-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  line-height: 1.1;
  color: #2a2f2d;
}

.menu-category-count {
  min-width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #42534d;
  border: 1px solid rgba(69, 89, 79, 0.25);
  background: rgba(255, 252, 247, 0.86);
}

.menu-category-toggle[aria-expanded="true"] .menu-category-count {
  color: #fff;
  border-color: rgba(176, 90, 47, 0.75);
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
}

.menu-category-panel {
  border-top: 1px dashed rgba(71, 94, 82, 0.28);
  padding-top: 0.58rem;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
}

.menu-item {
  border-radius: 11px;
  padding: 0.48rem 0.54rem 0.52rem;
  border: 1px solid rgba(69, 89, 79, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-item-name {
  font-weight: 700;
  color: #2d3431;
}

.menu-item-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.01em;
}

.menu-item-desc {
  margin: 0.18rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #606a65;
  white-space: pre-line;
}

.menu-empty {
  margin: 0.2rem 0 0;
  color: #67716b;
  font-size: 0.93rem;
}

@keyframes menu-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  margin-top: 1.2rem;
  padding: 1.6rem 0 1.25rem;
  color: #f1ede7;
  border-top: 1px solid rgba(176, 140, 103, 0.26);
  background:
    radial-gradient(circle at 12% 130%, rgba(196, 112, 71, 0.25), transparent 36%),
    linear-gradient(160deg, var(--footer-1), var(--footer-2));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.footer a {
  color: #f7f4ef;
}

.footer p {
  margin: 0.24rem 0;
  color: rgba(241, 237, 231, 0.9);
}

.footer-bottom {
  margin-top: 0.95rem;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(211, 181, 145, 0.28);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 18, 17, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  width: min(1280px, 95vw);
  max-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(237, 222, 192, 0.26);
  background: rgba(22, 25, 24, 0.94);
}

.lightbox-image {
  width: 100%;
  height: min(80vh, 860px);
  object-fit: contain;
  border-radius: 0;
}

.lightbox-caption {
  margin: 0;
  padding: 0.55rem 0.95rem 0.7rem;
  color: #f4eee2;
  font-size: 0.92rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(23, 28, 26, 0.66);
  cursor: pointer;
}

.lightbox-close {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.lightbox-nav.prev {
  left: 12px;
}

.lightbox-nav.next {
  right: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Home-specific */
.home-page main {
  background: transparent;
}

.home-overview {
  margin-top: 0.15rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.home-split article {
  padding: 0.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-split article:first-child {
  border-right: 1px solid var(--line);
}

.home-overview .btn {
  align-self: flex-start;
}

.home-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.home-meta span {
  padding: 0;
  font-size: 0.78rem;
  color: #5b6661;
}

.home-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 0.4rem;
  color: rgba(108, 101, 90, 0.82);
}

.home-values {
  background: transparent;
  border-top: 1px solid rgba(64, 88, 76, 0.18);
  border-bottom: 1px solid rgba(64, 88, 76, 0.18);
}

.home-values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-values .values-grid p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.74rem;
}

@media (max-width: 980px) {
  .hero-card,
  .split,
  .cards,
  .gallery,
  .footer-grid,
  .home-values .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    min-height: 300px;
  }

  .home-split article:first-child {
    border-right: 0;
  }

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

  .contact-form-section {
    grid-column: auto;
  }
}

@media (max-width: 740px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .brand {
    font-size: 1.45rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: 0.72rem;
    padding: 0.55rem;
    border-radius: 12px;
    border: 1px solid rgba(63, 88, 75, 0.24);
    background: rgba(251, 248, 241, 0.98);
    box-shadow: 0 12px 28px rgba(24, 35, 31, 0.13);
    flex-direction: column;
    gap: 0.12rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.72rem 0.8rem;
    border-radius: 10px;
  }

  .hero-card,
  .split,
  .cards,
  .gallery,
  .footer-grid,
  .home-values .values-grid {
    grid-template-columns: 1fr;
  }

  .intro-hero {
    min-height: 50vh;
  }

  .intro-hero-content {
    width: min(520px, 92vw);
    text-align: left;
  }

  .intro-hero-content .cta-row {
    justify-content: flex-start;
  }

  .intro-hero-content .btn {
    width: auto;
    padding: 0.5rem 0.82rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 0.55rem;
  }

  .hero-copy {
    padding: 0;
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-media,
  .hero-media video,
  .hero-media img,
  .split > img {
    min-height: 220px;
    height: 220px;
  }

  .hero-media.no-video {
    max-width: 100%;
    justify-self: stretch;
  }

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

  .gallery img {
    min-height: 170px;
    height: 180px;
    max-height: 180px;
  }

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

  .contact-photo img {
    height: 220px;
  }

  .lightbox-stage {
    width: 96vw;
  }

  .lightbox-image {
    height: min(74vh, 620px);
  }

  .experience-strip p {
    justify-content: flex-start;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .cta-row .btn,
  .home-overview .btn {
    width: 100%;
  }

  .card::before {
    display: none;
  }

  .map {
    height: 260px;
  }

  .home-meta {
    gap: 0.4rem;
  }

  .menu-item-head {
    flex-wrap: wrap;
  }
  .menu-block-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .gallery img {
    max-height: 210px;
  }

  .lightbox {
    padding: 0.4rem;
  }

  .lightbox-close {
    top: 6px;
    right: 6px;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
  }
}
