:root {
  --ink: #1d1b16;
  --muted: #6e665b;
  --line: #e6ded2;
  --cream: #f7f1e8;
  --paper: #fffdf8;
  --olive: #4b5b35;
  --terracotta: #9f4d31;
  --wine: #5a1f2b;
  --shadow: 0 24px 80px rgba(57, 43, 25, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fbf6ef 0%, #fffdf8 48%, #f5eadb 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  padding: 18px max(18px, calc((100vw - 1360px) / 2 + 24px));
  background: rgba(255, 253, 248, 0.72);
  border-bottom: 1px solid rgba(230, 222, 210, 0.6);
  backdrop-filter: blur(20px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 50px rgba(42, 35, 25, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 1 240px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fffdf8;
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand small,
.eyebrow,
.reputation span,
.hours span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  flex: 0 1 auto;
  color: #494136;
  font-size: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
}

.language-switcher button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: #fffdf8;
  background: var(--ink);
}

.nav a,
.header-cta,
.mobile-menu-cta,
.button,
.floating-whatsapp {
  text-decoration: none;
}

.header-cta,
.mobile-menu-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.header-cta,
.button.primary,
.floating-whatsapp {
  color: #fffdf8;
  background: var(--olive);
}

.header-cta {
  flex: 0 0 auto;
}

.mobile-menu-cta {
  display: none;
  color: #fffdf8;
  background: var(--wine);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--line);
}

.button.ghost {
  color: var(--olive);
  background: transparent;
  border: 1px solid rgba(75, 91, 53, 0.28);
}

.button.menu-button {
  color: #fffdf8;
  background: var(--wine);
}

main {
  overflow: hidden;
}

.hero {
  width: min(100%, 1240px);
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  margin: 0 auto;
  padding: 104px 24px 34px;
}

.hero-copy {
  max-width: 660px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-weight: 800;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(54px, 5.6vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.lead {
  max-width: 540px;
  color: #4f473d;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.48;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-actions .button {
  min-height: 42px;
  padding-inline: 18px;
}

.hero-media {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  object-position: center 48%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0) 62%, rgba(28, 25, 20, 0.18));
  pointer-events: none;
}

.menu-shortcut,
.intro,
.menu-section,
.territory,
.proof,
.reputation,
.experience,
.gallery,
.hours,
.contact {
  padding-inline: clamp(18px, 5vw, 76px);
}

.menu-shortcut {
  display: none;
  max-width: 1180px;
  margin: 0 auto 22px;
}

.menu-shortcut a {
  min-width: 0;
  padding: 16px;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
}

.menu-shortcut span,
.menu-shortcut strong {
  display: block;
}

.menu-shortcut span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-shortcut strong {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.18;
}

.menu-list p,
.reputation p,
.experience p,
.contact p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.menu-section,
.territory,
.gallery,
.hours {
  max-width: 1360px;
  margin: 0 auto;
  padding-block: 48px;
}

.menu-section {
  padding-top: 28px;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.menu-feature,
.menu-list,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 70px rgba(67, 49, 27, 0.08);
}

.menu-feature {
  overflow: hidden;
}

.menu-feature img {
  height: 420px;
}

.menu-feature div {
  padding: clamp(22px, 3vw, 34px);
}

.menu-feature span,
.menu-list span {
  color: var(--terracotta);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  align-content: stretch;
  overflow: hidden;
}

.menu-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.menu-list article:last-child {
  border-bottom: 0;
}

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

.territory-grid article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.territory-grid img,
.gallery-grid img {
  transition: transform 400ms ease;
}

.territory-grid article:hover img,
.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.territory-grid article::after,
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 27, 22, 0) 48%, rgba(29, 27, 22, 0.68));
  pointer-events: none;
}

.territory-grid article div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: #fffdf8;
}

.territory-grid span {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 50px);
}

.territory-grid p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
}

.experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  max-width: 1360px;
  margin: 0 auto;
  padding-block: 80px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 74px);
  max-width: 1360px;
  margin: 0 auto;
  padding-block: 54px 72px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.82);
}

.proof-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.proof-grid p {
  color: var(--muted);
}

.reputation {
  max-width: 1360px;
  margin: 0 auto;
  padding-block: 10px 54px;
}

.reputation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.reputation-grid article {
  padding: 22px 24px;
  background: rgba(255, 253, 248, 0.76);
}

.reputation-grid strong {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.experience figure {
  margin: 0;
  height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.gallery-grid .wide {
  grid-column: span 2;
  grid-row: span 2;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  color: #453d34;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 1px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hours-grid div {
  min-height: 140px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.84);
}

.hours-grid strong {
  display: block;
  margin-top: 20px;
  font-size: 18px;
}

.hours-grid .closed {
  background: #f3ebe0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding-block: 78px 92px;
}

.contact-panel {
  padding: clamp(26px, 4vw, 48px);
}

.contact dl {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.contact dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact dd {
  margin: 6px 0 0;
  color: #40382f;
}

.contact iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.82) contrast(0.98);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 11;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(29, 27, 22, 0.18);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1220px) {
  .site-header {
    padding-inline: 22px;
  }

  .brand {
    flex-basis: 220px;
  }

  .nav {
    gap: 18px;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    padding-inline: 22px;
  }

  h1 {
    font-size: clamp(52px, 5.8vw, 72px);
  }

  .intro h2 {
    font-size: clamp(34px, 4vw, 44px);
  }

  .hero-actions {
    display: flex;
    justify-content: start;
  }

  .hero-actions .button {
    width: auto;
  }
}

@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .menu-grid,
  .territory-grid,
  .proof,
  .experience,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .experience figure {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

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

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

  body {
    overflow-wrap: anywhere;
  }

  .site-header {
    gap: 10px;
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 9px;
    overflow: hidden;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 13px;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    position: fixed;
    z-index: 12;
    right: 14px;
    bottom: 74px;
    width: auto;
    justify-content: center;
    padding: 3px;
    box-shadow: 0 14px 34px rgba(29, 27, 22, 0.14);
  }

  .language-switcher button {
    flex: 0 0 auto;
    min-width: 32px;
    height: 30px;
    font-size: 11px;
  }

  .mobile-menu-cta {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 40px;
    padding-inline: 16px;
  }

  .floating-whatsapp {
    display: inline-flex;
    right: 14px;
    bottom: 14px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(50px, 16vw, 70px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.06;
  }

  h3 {
    font-size: 20px;
    line-height: 1.15;
  }

  .lead {
    font-size: 18px;
    line-height: 1.42;
  }

  .hero {
    padding-inline: 16px;
    padding-top: 92px;
    padding-bottom: 28px;
    gap: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .primary,
  .contact-actions .primary {
    grid-column: 1 / -1;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.18;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .menu-shortcut {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 16px;
  }

  .menu-shortcut a:first-child {
    border-radius: 8px 0 0 8px;
  }

  .menu-shortcut a:last-child {
    border-radius: 0 8px 8px 0;
  }

  .menu-shortcut strong {
    font-size: 14px;
  }

  .intro {
    display: none;
  }

  .menu-section,
  .territory,
  .proof,
  .experience,
  .gallery,
  .hours,
  .contact {
    padding-block: 34px;
  }

  .menu-section {
    padding-top: 18px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .menu-feature img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .menu-feature div {
    padding: 20px;
  }

  .menu-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 20px;
  }

  .territory-grid article {
    min-height: 430px;
  }

  .proof-grid article {
    min-height: 0;
    padding: 22px 20px;
  }

  .proof-grid strong {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .reputation {
    padding-block: 0 40px;
  }

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

  .reputation-grid strong {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid figure,
  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .hours-grid div {
    min-height: 0;
    padding: 18px 20px;
  }

  .hours-grid strong {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.3;
  }

  .contact-panel {
    padding: 24px 20px;
  }

  .contact dd {
    overflow-wrap: anywhere;
  }

  .contact iframe {
    min-height: 420px;
  }

  .site-footer {
    padding-bottom: 84px;
  }
}
