:root {
  --indigo: #21166f;
  --indigo-deep: #140d4c;
  --ultramarine: #3126a7;
  --terracotta: #c8452f;
  --orange: #ee7a27;
  --gold: #f3bd35;
  --ink: #17152b;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #625f70;
  --line: rgba(23, 21, 43, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--indigo-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 10px clamp(20px, 5vw, 80px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-name {
  color: var(--indigo);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-name i {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}

.brand-mark {
  position: relative;
  display: block;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  position: absolute;
  top: -20.81%;
  left: 59.97%;
  width: 338.15%;
  max-width: none;
  transform: translateX(-50%);
}

.brand-mark--small {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(33, 22, 111, 0.12);
  box-shadow: 0 6px 20px rgba(33, 22, 111, 0.09);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:not(.nav-cta):hover {
  color: var(--terracotta);
}

.nav-cta {
  padding: 11px 20px;
  color: var(--white);
  background: var(--indigo);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: clamp(58px, 7vw, 96px) clamp(20px, 7vw, 116px) clamp(70px, 8vw, 112px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 46% 12%, rgba(89, 70, 218, 0.62), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(200, 69, 47, 0.22), transparent 24%),
    linear-gradient(122deg, #120a48 0%, var(--indigo) 58%, #3024a1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 140px);
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-pattern {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-pattern--tiles {
  top: 0;
  left: 0;
  width: 36%;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--white) 0 24px, transparent 24px 38px, var(--white) 38px 50px, transparent 50px 70px);
  opacity: 0.78;
}

.hero-pattern--weave {
  right: -50px;
  top: 0;
  width: 43%;
  height: 18px;
  background: repeating-linear-gradient(135deg, var(--terracotta) 0 18px, var(--gold) 18px 34px, var(--orange) 34px 50px, var(--ultramarine) 50px 66px);
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

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

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

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6.7vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.79);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button--primary {
  color: var(--indigo-deep);
  background: var(--gold);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  list-style: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-points li {
  position: relative;
  padding-left: 15px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.69em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.button--primary:hover {
  background: var(--white);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.button--ghost:hover {
  color: var(--indigo);
  background: var(--white);
  border-color: var(--white);
}

.hero-card {
  justify-self: end;
  width: min(100%, 510px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(4, 2, 26, 0.38);
  text-align: center;
}

.menu-card-brand {
  display: grid;
  justify-items: center;
  padding: 24px 36px 17px;
  background:
    linear-gradient(135deg, rgba(243, 189, 53, 0.12), transparent 58%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.menu-card-brand > span:last-child {
  margin-top: 10px;
  color: var(--indigo);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-card-content {
  padding: 24px clamp(28px, 4vw, 48px) 34px;
}

.brand-mark--hero {
  width: clamp(98px, 9vw, 118px);
  height: clamp(98px, 9vw, 118px);
  margin: 0;
  box-shadow: 0 0 0 8px rgba(33, 22, 111, 0.055);
}

.hero-card-kicker {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 12px;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-card p:not(.hero-card-kicker) {
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-card .menu-details {
  margin-bottom: 10px;
  white-space: pre-line;
}

.hero-card p.menu-includes {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 7px 12px;
  color: var(--indigo-deep);
  background: rgba(243, 189, 53, 0.2);
  border: 1px solid rgba(243, 189, 53, 0.55);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.menu-price {
  display: flex;
  width: max-content;
  margin: 0 auto 10px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.hero-card .menu-note {
  margin-bottom: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.menu-more {
  margin: 22px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.menu-more h3 {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-more ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-more li {
  position: relative;
  padding-left: 18px;
  color: var(--indigo-deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.menu-more li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-card a {
  color: var(--indigo);
  font-size: 0.9rem;
  font-weight: 850;
}

.menu-reserve-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  color: var(--white) !important;
  background: var(--indigo);
  border-radius: 999px;
  text-decoration: none;
}

.menu-reserve-link:hover {
  background: var(--terracotta);
}

.story {
  padding: clamp(74px, 9vw, 138px) clamp(20px, 7vw, 116px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(42px, 10vw, 160px);
  align-items: start;
}

.story h2,
.visit h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.story-copy {
  max-width: 600px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.rhythm-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(62px, 8vw, 116px);
  padding: 26px 0;
  overflow: hidden;
  color: var(--indigo);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.2em;
}

.rhythm-band i {
  display: block;
  flex: 1 0 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta) 0 33%, var(--gold) 33% 66%, var(--indigo) 66%);
}

.testimonials {
  padding: clamp(70px, 10vw, 120px) clamp(24px, 7vw, 110px);
  color: var(--indigo-deep);
  background: var(--paper);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.testimonials h2 {
  max-width: 760px;
  margin: 0;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

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

.testimonial-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(33, 22, 111, 0.07);
}

.testimonial-stars {
  margin-bottom: 24px;
  color: #a96e00;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  color: var(--indigo-deep);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.testimonial-card footer {
  margin-top: auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.88rem;
}

.testimonial-card footer strong {
  color: var(--indigo);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(64px, 8vw, 110px) clamp(20px, 7vw, 116px);
}

.action-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
}

.action-card--indigo {
  color: var(--white);
  background: var(--indigo);
  border-radius: 0 26px 0 0;
}

.action-card--terracotta {
  color: var(--white);
  background: var(--terracotta);
  border-radius: 26px 0 0 0;
}

.action-card--gold {
  color: var(--indigo-deep);
  background: var(--gold);
  border-radius: 0 0 0 26px;
}

.action-card--paper {
  color: var(--indigo-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 26px 0;
}

.action-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
  opacity: 0.78;
}

.action-card h2 {
  margin: 48px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.action-card p {
  max-width: 29ch;
  margin-bottom: 25px;
  opacity: 0.82;
}

.action-card a {
  align-self: flex-start;
  font-weight: 850;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(370px, 1.15fr);
  gap: clamp(54px, 10vw, 150px);
  padding: clamp(80px, 10vw, 150px) clamp(20px, 7vw, 116px);
  color: var(--white);
  background:
    linear-gradient(rgba(20, 13, 76, 0.94), rgba(20, 13, 76, 0.94)),
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(255, 255, 255, 0.06) 28px 30px);
}

.section-label--light {
  color: var(--gold);
}

.visit h2 {
  color: var(--gold);
}

.contact-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-row > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-row p {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.contact-row a:hover,
.text-link:hover {
  color: var(--gold);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button--light {
  color: var(--indigo-deep);
  background: var(--gold);
}

.button--light:hover {
  background: var(--white);
}

.text-link {
  font-weight: 800;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 36px clamp(20px, 7vw, 116px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.brand--footer .brand-name {
  font-size: 1.35rem;
}

footer > p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #168f52;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(7, 74, 40, 0.3);
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-float:hover {
  background: #0f7542;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-card {
    justify-self: start;
    width: min(100%, 520px);
    border-radius: 28px;
    text-align: center;
  }

  .brand-mark--hero {
    width: 104px;
    height: 104px;
  }

  .story-grid,
  .testimonials-heading,
  .visit {
    grid-template-columns: 1fr;
  }

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

  .story-copy {
    padding-top: 0;
  }

  .visit-heading {
    max-width: 680px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > p {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  .brand-mark--small {
    width: 44px;
    height: 44px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 9px 16px;
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .hero-card {
    padding: 0;
  }

  .menu-card-content {
    padding: 22px 26px 30px;
  }

  .menu-more ul {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .action-card {
    min-height: 320px;
  }

  .action-card--terracotta {
    border-radius: 24px 24px 0 0;
  }

  .action-card--indigo,
  .action-card--gold {
    border-radius: 0;
  }

  .action-card--paper {
    border-radius: 0 0 24px 24px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand--footer,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .brand-name {
    font-size: 1.04rem;
  }

  .nav-cta {
    font-size: 0.84rem;
  }

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

  .rhythm-band span:nth-of-type(2) {
    display: none;
  }

  .rhythm-band i:last-of-type {
    display: none;
  }

  .contact-links .button {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
