:root {
  --paper: #eae8e1;
  --paper-strong: #f8f4ea;
  --olive: #3c5545;
  --olive-dark: #21382e;
  --olive-soft: #6d7e66;
  --sun: #f0af4a;
  --sun-dark: #d9972d;
  --tomato: #b93425;
  --tomato-dark: #96281d;
  --clay: #c57948;
  --charcoal: #171a14;
  --muted: #65705c;
  --line: rgba(31, 50, 31, 0.16);
  --white: #fffdf7;
  --shadow: 0 22px 60px rgba(33, 56, 46, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 3.4vw, 48px);
  color: var(--olive);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(31, 50, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: clamp(178px, 18vw, 260px);
  height: auto;
}

.scroll-cue svg,
.text-link svg,
.contact-strip svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(9px, 1.1vw, 20px);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--olive);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(60, 85, 69, 0.2);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--olive-dark);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--olive);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 120px clamp(20px, 5vw, 72px) 84px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background-image: url("assets/images/jardim-noite.webp");
  background-position: center;
  background-size: cover;
}

.hero-bg::after {
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 34, 27, 0.8) 0%, rgba(20, 34, 27, 0.48) 45%, rgba(20, 34, 27, 0.16) 82%),
    linear-gradient(0deg, rgba(20, 34, 27, 0.2), rgba(20, 34, 27, 0.2));
}

.hero-content {
  width: min(680px, 100%);
}

.hero h1,
.section-copy h2,
.menu-section h2,
.garden-copy h2,
.park-copy h2,
.cuisine-copy h2,
.cardapio-section h2,
.reservation-copy h2 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(66px, 8.2vw, 128px);
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

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

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

.button-secondary:hover {
  color: var(--olive);
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  transform: translateX(-50%);
}

.story-section,
.menu-section,
.garden-section,
.park-section,
.cuisine-section,
.cardapio-section,
.reservation-section {
  padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 72px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.8fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  background: var(--paper-strong);
}

.section-copy h2,
.menu-section h2,
.garden-copy h2,
.park-copy h2,
.cuisine-copy h2,
.cardapio-section h2,
.reservation-copy h2 {
  color: var(--olive);
  font-size: clamp(48px, 6vw, 82px);
}

.section-copy p,
.section-heading-row p,
.garden-copy p,
.park-copy p,
.cuisine-copy p,
.cardapio-section p,
.reservation-copy p,
.dish-card p,
.cuisine-notes p,
.visit-list dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.section-copy p {
  max-width: 480px;
  margin: 22px 0 0;
}

.script-line {
  color: var(--olive) !important;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 45px) !important;
  font-style: italic;
  line-height: 1.1 !important;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
}

.story-grid figure {
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.story-grid .wide-photo {
  grid-row: span 2;
  min-height: 500px;
}

.menu-section {
  background:
    radial-gradient(circle at 16% 6%, rgba(240, 175, 74, 0.18), transparent 28%),
    var(--paper);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading-row p {
  max-width: 520px;
  margin: 12px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  color: var(--olive);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  white-space: nowrap;
}

.text-link svg {
  width: 24px;
  height: 24px;
}

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

.dish-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(31, 50, 31, 0.1);
  border-radius: 6px;
}

.dish-card img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.dish-card div {
  min-height: 142px;
  padding: 20px 20px 22px;
}

.dish-card h3 {
  margin: 0;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}

.dish-card p {
  margin: 10px 0 0;
}

.garden-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  background: var(--olive);
  color: var(--white);
}

.park-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(240, 175, 74, 0.1), transparent 42%),
    var(--paper);
}

.park-copy p {
  max-width: 640px;
  margin: 20px 0 0;
}

.park-panel {
  display: grid;
  gap: 12px;
}

.park-panel article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 22px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(31, 50, 31, 0.1);
  border-radius: 6px;
}

.park-panel span {
  color: var(--sun-dark);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 0.95;
}

.park-panel h3 {
  margin: 0;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
}

.park-panel p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.cuisine-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  background: var(--paper-strong);
}

.cuisine-copy {
  align-self: start;
}

.cuisine-copy p {
  max-width: 560px;
  margin: 18px 0 28px;
}

.cuisine-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.cuisine-main {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.cuisine-notes {
  display: grid;
  gap: 12px;
}

.cuisine-notes article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(31, 50, 31, 0.1);
  border-radius: 6px;
}

.cuisine-notes h3 {
  margin: 0;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
}

.cuisine-notes p {
  margin: 12px 0 0;
}

.cardapio-section {
  background:
    linear-gradient(180deg, rgba(240, 175, 74, 0.1), transparent 34%),
    var(--paper);
}

.cardapio-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.cardapio-photo {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.cardapio-groups article {
  min-width: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(31, 50, 31, 0.1);
  border-radius: 6px;
}

.cardapio-groups span {
  display: block;
  margin-bottom: 16px;
  color: var(--sun-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cardapio-groups h3 {
  margin: 0;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 0.98;
}

.cardapio-groups p {
  margin: 12px 0 0;
}

.garden-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.garden-copy h2,
.garden-copy p,
.visit-list dd,
.visit-list a {
  color: var(--white);
}

.garden-copy p,
.visit-list dd {
  opacity: 0.78;
}

.visit-list {
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
}

.visit-list div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.visit-list dt {
  margin-bottom: 6px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-list dd {
  margin: 0;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
  background: var(--paper-strong);
}

.reservation-copy p {
  max-width: 560px;
  margin: 18px 0 0;
}

.contact-strip {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: var(--olive);
  font-weight: 700;
}

.contact-strip span,
.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-strip svg {
  width: 23px;
  height: 23px;
  color: var(--sun-dark);
}

.reservation-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.8vw, 44px);
  background: var(--white);
  border: 1px solid rgba(31, 50, 31, 0.12);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  color: var(--charcoal);
  background: #fffdf8;
  border: 1px solid rgba(31, 50, 31, 0.18);
  border-radius: 4px;
  outline: 0;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--sun-dark);
  box-shadow: 0 0 0 3px rgba(240, 175, 74, 0.18);
}

.reservation-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--paper-strong);
  background: #11170e;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.site-footer a:last-child {
  color: var(--sun);
  font-weight: 700;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 22px;
  }

  .nav-cta {
    min-width: 144px;
  }

  .story-section,
  .garden-section,
  .park-section,
  .cuisine-section,
  .cardapio-section,
  .reservation-section {
    grid-template-columns: 1fr;
  }

  .cuisine-layout,
  .cardapio-layout {
    grid-template-columns: 1fr;
  }

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

  .garden-media {
    min-height: 430px;
  }

  .cuisine-main {
    min-height: 430px;
  }
}

@media (max-width: 1220px) {
  .site-header > .brand span {
    display: none;
  }

  .main-nav {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
    font-size: 10px;
  }

  .brand img {
    width: min(52vw, 200px);
  }

  .site-header > .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(255, 250, 240, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

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

  .nav-cta {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 20px 72px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(15, 19, 12, 0.82) 0%, rgba(15, 19, 12, 0.62) 62%, rgba(15, 19, 12, 0.42) 100%),
      linear-gradient(0deg, rgba(15, 19, 12, 0.2), rgba(15, 19, 12, 0.2));
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .story-section,
  .menu-section,
  .garden-section,
  .park-section,
  .cuisine-section,
  .cardapio-section,
  .reservation-section {
    padding: 54px 20px;
  }

  .story-grid,
  .menu-gallery,
  .cuisine-layout,
  .cardapio-layout,
  .cardapio-groups,
  .form-row {
    grid-template-columns: 1fr;
  }

  .story-grid .wide-photo,
  .story-grid figure,
  .garden-media,
  .cuisine-main,
  .cardapio-photo {
    min-height: 310px;
  }

  .cuisine-notes article {
    min-height: auto;
    padding: 22px;
  }

  .park-panel article {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .park-panel p {
    grid-column: auto;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .dish-card div {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
