:root {
  --ink: #10231f;
  --muted: #557069;
  --paper: #f4f8f6;
  --panel: #ffffff;
  --red: #0b5f4b;
  --red-dark: #073f34;
  --green: #0b5f4b;
  --blue: #123d6a;
  --gold: #c9992f;
  --line: rgba(16, 35, 31, 0.13);
  --shadow: 0 24px 70px rgba(15, 55, 46, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(244, 248, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 172px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.12);
}

.brand-text {
  display: none;
}

.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover { background: #e3eee9; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 56px) 36px;
  background:
    linear-gradient(115deg, rgba(11, 95, 75, 0.11), transparent 44%),
    linear-gradient(0deg, #f4f8f6, #edf5f1);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6.6vw, 82px);
  color: var(--blue);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.brand-proof {
  max-width: 560px;
  margin: 16px 0 0;
  padding: 12px 14px;
  color: var(--red-dark);
  background: #e8f4ef;
  border: 1px solid rgba(11, 95, 75, 0.18);
  border-radius: 8px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.btn.primary { color: #fff; background: var(--green); }
.btn.primary:hover { background: var(--red-dark); }
.btn.secondary { color: var(--blue); background: #dcebf7; }

.hero-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 22px;
  background: #ffffff;
}

.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); margin-top: 4px; }

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 790px;
  margin-bottom: 32px;
}

.section-head p:not(.eyebrow), .split p, .order-section p, .contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.identity-section {
  padding-bottom: clamp(38px, 6vw, 72px);
}

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

.identity-grid div {
  min-height: 118px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.identity-grid span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.registry-section {
  background:
    linear-gradient(180deg, #123d6a 0, #123d6a 210px, #eef5f1 210px, #eef5f1 100%);
  color: #fff;
}

.registry-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.registry-section .eyebrow {
  color: #f7d36b;
}

.registry-card {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 61, 106, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.registry-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: #fff;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.registry-banner span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.registry-banner strong {
  font-size: clamp(18px, 2.4vw, 28px);
}

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

.registry-grid div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.registry-grid span,
.registry-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.registry-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.registry-grid small {
  margin-top: 6px;
  color: var(--gold);
}

.identity-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.identity-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.menu-item {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(74, 36, 20, 0.08);
}

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

.menu-item div { padding: 18px; }
.menu-item span { color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.menu-item h3 { margin: 6px 0 8px; font-size: 22px; }
.menu-item p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: #e8f0ec;
}

.info-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-panel h3 { margin: 0 0 14px; }
.info-panel ul { margin: 0; padding-left: 20px; color: var(--muted); }
.info-panel li + li { margin-top: 10px; }

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.steps div {
  min-height: 180px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.steps span {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.whatsapp-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  background: #edf5f1;
}

.whatsapp-section p {
  color: var(--muted);
  font-size: 17px;
}

.policy-list {
  display: grid;
  gap: 12px;
}

.policy-list div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-list strong,
.policy-list span {
  display: block;
}

.policy-list span {
  margin-top: 6px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 60px);
  background: #10231f;
  color: #fff;
}

.contact-section .eyebrow { color: #f7d36b; }
.contact-section p { color: rgba(255, 255, 255, 0.74); }

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-grid a, .contact-grid div {
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.legal article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal h2 { font-size: clamp(24px, 3vw, 34px); }
.legal p { color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--blue);
}

.site-footer p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.75); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-weight: 800; }

@media (max-width: 980px) {
  .hero, .order-section, .contact-section, .split, .legal, .whatsapp-section {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-media, .hero-media img { min-height: 360px; }
  .identity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .registry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .brand-logo { width: 142px; }
  .brand strong { font-size: 14px; }
  .identity-grid { grid-template-columns: 1fr; }
  .registry-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .site-footer { flex-direction: column; }
}
