:root {
  --ink: #15120f;
  --ink-soft: #2a231d;
  --coffee: #4a3326;
  --copper: #a55f43;
  --gold: #c99b4d;
  --sage: #61705a;
  --cream: #f6efe5;
  --linen: #fffaf2;
  --white: #ffffff;
  --muted: #756a5e;
  --line: rgba(74, 51, 38, 0.16);
  --shadow: 0 18px 60px rgba(21, 18, 15, 0.16);
  --max-width: 1180px;
  --radius: 8px;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--linen);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--linen);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--linen);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(201, 155, 77, 0.28);
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(97, 112, 90, 0.06), rgba(255, 250, 242, 0.2)),
    var(--cream);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(74, 51, 38, 0.7), rgba(21, 18, 15, 0.94)),
    var(--ink);
  color: var(--linen);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(21, 18, 15, 0.34);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 18, 15, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 155, 77, 0.8);
  border-radius: 50%;
  background: rgba(21, 18, 15, 0.42);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  background: var(--ink);
}

.brand-text {
  max-width: 260px;
  overflow: hidden;
  color: currentColor;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: currentColor;
  opacity: 0.88;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.site-header.is-scrolled .icon-button,
.site-header.is-open .icon-button,
.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: var(--line);
  background: rgba(21, 18, 15, 0.04);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(201, 155, 77, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d8ab5d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-secondary-light {
  background: var(--linen);
  color: var(--ink);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--linen);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 18, 15, 0.84), rgba(21, 18, 15, 0.52) 48%, rgba(21, 18, 15, 0.2)),
    linear-gradient(0deg, rgba(21, 18, 15, 0.82), rgba(21, 18, 15, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 54px) 0 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  width: min(780px, 100%);
  font-size: clamp(2.85rem, 6.8vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--ink);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.section-dark h2 {
  color: var(--linen);
}

.hero-copy {
  width: min(650px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-info span,
.intro-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-info > span {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--linen);
}

.intro-strip a {
  min-height: 72px;
  justify-content: center;
  padding: 12px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--linen);
  font-weight: 800;
  text-align: center;
}

.intro-strip a:last-child {
  border-right: 0;
}

.intro-strip a:hover,
.intro-strip a:focus-visible {
  background: rgba(201, 155, 77, 0.13);
}

.two-column,
.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-copy p:not(.eyebrow) {
  margin: 24px 0 0;
}

.section-dark .booking-copy p {
  color: rgba(255, 250, 242, 0.78);
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.about-highlights div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(74, 51, 38, 0.04);
}

.about-highlights strong {
  font-size: 1rem;
}

.about-highlights span {
  color: var(--muted);
  line-height: 1.55;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 16px;
  align-items: end;
}

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

.about-gallery img:last-child {
  min-height: 310px;
  margin-bottom: -32px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 0;
}

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

.specialty-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(21, 18, 15, 0.08);
  overflow: hidden;
}

.specialty-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.specialty-card-body {
  padding: 22px;
}

.specialty-card p,
.menu-item p,
.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.specialty-card p {
  margin: 12px 0 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.menu-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.menu-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--linen);
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-item h3 {
  font-size: 1.12rem;
}

.menu-item p {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.menu-price {
  color: var(--coffee);
  font-weight: 900;
  white-space: nowrap;
}

.booking-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 155, 77, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}

.gallery-item:first-child,
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21, 18, 15, 0.72);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.review-card {
  padding: 24px;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}

.review-card p {
  margin: 0 0 18px;
}

.review-card strong {
  display: block;
  margin-bottom: 4px;
}

.review-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-card,
.map-wrap {
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--ink);
  color: var(--linen);
}

.contact-card h2 {
  color: var(--linen);
}

.contact-card dl {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
}

.contact-card dl div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card dt {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  color: rgba(255, 250, 242, 0.86);
  line-height: 1.65;
}

.contact-card dd a,
.social-links a {
  color: var(--linen);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.map-wrap {
  border: 1px solid var(--line);
  background: var(--cream);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: var(--linen);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f8f5f;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(21, 18, 15, 0.22);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.show-floating .floating-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #18784f;
}

.icon-button svg,
.menu-toggle svg,
.button svg,
.hero-info svg,
.intro-strip svg,
.social-links svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 18px clamp(18px, 4vw, 48px) 24px;
    background: rgba(255, 250, 242, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 34px rgba(21, 18, 15, 0.1);
  }

  .site-header.is-open .nav {
    display: grid;
    gap: 2px;
  }

  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-actions .button {
    display: none;
  }

  .two-column,
  .booking-layout,
  .contact-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .about-gallery img:last-child {
    margin-bottom: 0;
  }

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 66px 0;
  }

  .brand-text {
    max-width: 176px;
  }

  .brand-mark,
  .icon-button,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .hero-actions,
  .booking-contact {
    display: grid;
  }

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

  .hero-info > span {
    max-width: 100%;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip a {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .about-gallery img,
  .about-gallery img:last-child {
    min-height: 280px;
  }

  .specialty-grid,
  .menu-panel,
  .review-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-layout {
    display: grid;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }
}

@media (max-width: 430px) {
  .brand-text {
    max-width: 132px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero-info {
    display: grid;
  }

  .button {
    padding-inline: 16px;
  }
}
