:root {
  --ink: #2e3033;
  --muted: #696d72;
  --soft: #f7f5f2;
  --paper: #fffefd;
  --line: #e9e5df;
  --coral: #ff9f78;
  --coral-deep: #f47d51;
  --coral-soft: #fff0ea;
  --teal: #2aa7a3;
  --teal-soft: #e9f7f6;
  --black: #080808;
  --shadow: 0 18px 45px rgba(48, 41, 35, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

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

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 22px;
  width: 100%;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 254, 253, 0.92);
  border-bottom: 1px solid rgba(233, 229, 223, 0.85);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 22px;
}

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

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 48px;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-left: auto;
}

.nav-links a,
.mobile-menu a,
.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  padding: 10px 14px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--teal-soft);
  color: #167572;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

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

.button-secondary {
  background: var(--coral-soft);
  border-color: #ffd4c4;
  color: #b74c27;
}

.button-secondary:hover {
  background: #ffe5da;
}

.menu-toggle {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  background: var(--ink);
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 20px;
}

.menu-toggle-line::before {
  position: absolute;
  transform: translateY(-7px);
}

.menu-toggle-line::after {
  position: absolute;
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 12px 22px 18px;
}

.mobile-menu a {
  border-radius: var(--radius);
  padding: 12px;
}

.mobile-menu a:last-child {
  background: var(--coral);
  color: white;
  text-align: center;
}

.section-band {
  background: linear-gradient(180deg, #fffefd 0%, var(--soft) 100%);
}

.hero {
  overflow: hidden;
  padding: 82px 0 74px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
}

.trust-line,
.eyebrow,
.category-label {
  color: var(--teal);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 4.9rem);
  letter-spacing: 0;
  margin-bottom: 22px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.3rem;
  max-width: 650px;
}

.hero-actions,
.visit-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.handoff-note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 16px 0 0;
}

.hero-visual {
  min-height: 520px;
  position: relative;
}

.hero-photo-placeholder {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
    radial-gradient(circle at 80% 34%, rgba(42, 167, 163, 0.22) 0 9%, transparent 10%),
    linear-gradient(135deg, #201915 0%, #3b2920 44%, #f6ded1 45%, #fff8f3 100%);
  border: 1px solid #efe2d8;
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-photo-placeholder::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 26%, transparent 28%) 0 0 / 46px 46px,
    radial-gradient(circle, rgba(255, 159, 120, 0.38) 0 24%, transparent 26%) 22px 22px / 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.75;
  position: absolute;
}

.latte-cup {
  align-items: center;
  background: #fffaf6;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(30, 18, 12, 0.24);
  display: flex;
  height: min(54vw, 310px);
  justify-content: center;
  left: 50%;
  max-height: 310px;
  max-width: 310px;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(54vw, 310px);
}

.latte-cup::before {
  background:
    radial-gradient(ellipse at 50% 24%, #fffaf4 0 8%, transparent 9%),
    radial-gradient(ellipse at 45% 42%, transparent 0 23%, rgba(255, 255, 255, 0.85) 24% 27%, transparent 28%),
    radial-gradient(circle at 50% 50%, #d69554 0 53%, #b97539 54% 67%, transparent 68%);
  border-radius: 50%;
  content: "";
  height: 76%;
  width: 76%;
}

.latte-cup span {
  background: #fffaf6;
  border: 12px solid #fffaf6;
  border-left-color: transparent;
  border-radius: 50%;
  height: 74px;
  position: absolute;
  right: -34px;
  top: 42%;
  width: 84px;
}

.hero-tag {
  background: rgba(8, 8, 8, 0.9);
  border-radius: var(--radius);
  bottom: 24px;
  color: white;
  display: grid;
  gap: 2px;
  left: 24px;
  padding: 16px 18px;
  position: absolute;
  right: 24px;
}

.hero-tag span {
  color: #aee5e2;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-tag strong {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.2rem;
}

.menu-preview,
.reviews,
.visit {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.compact {
  margin-bottom: 0;
}

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

.highlight-card,
.review-placeholder {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(48, 41, 35, 0.07);
}

.highlight-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 14px 14px 20px;
}

.food-placeholder {
  border-radius: var(--radius);
  height: 154px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.food-placeholder::before,
.food-placeholder::after {
  content: "";
  position: absolute;
}

.coffee {
  background: linear-gradient(140deg, #f4f0eb, #d8d5d0);
}

.coffee::before {
  background: radial-gradient(circle, #d58e45 0 44%, #fff8ef 45% 66%, transparent 67%);
  border-radius: 50%;
  box-shadow: 0 18px 28px rgba(30, 18, 12, 0.12);
  height: 88px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
}

.cold {
  background: linear-gradient(135deg, #eaf8f7, #ffffff);
}

.cold::before {
  background: linear-gradient(180deg, rgba(42, 167, 163, 0.14), rgba(42, 167, 163, 0.38));
  border: 2px solid rgba(42, 167, 163, 0.28);
  border-radius: 6px 6px 18px 18px;
  height: 112px;
  left: 50%;
  top: 22px;
  transform: translateX(-50%) rotate(-5deg);
  width: 58px;
}

.cold::after {
  background: #8b562e;
  border-radius: 50%;
  height: 12px;
  left: 48%;
  top: 46px;
  width: 12px;
}

.breakfast {
  background: linear-gradient(135deg, #fff4ee, #f6ece2);
}

.breakfast::before {
  background: #dca354;
  border-radius: 999px;
  box-shadow: 16px 16px 0 #fffaf2, 28px 20px 0 #2aa7a3;
  height: 58px;
  left: 42%;
  top: 54px;
  transform: rotate(-18deg);
  width: 134px;
}

.lunch {
  background: linear-gradient(135deg, #f9f9f7, #eadfd5);
}

.lunch::before {
  background: #c88842;
  border-radius: 10px;
  box-shadow: 14px 16px 0 #fbf7ee;
  height: 80px;
  left: 36%;
  top: 44px;
  transform: rotate(8deg);
  width: 128px;
}

.category-label {
  align-self: flex-start;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  margin-bottom: 16px;
  padding: 7px 10px;
}

.highlight-card p,
.review-placeholder p,
.reason-list p,
.park-copy p,
.check-list,
.visit-card p,
.visit-card address,
.final-inner p,
.site-footer {
  color: var(--muted);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.why {
  padding: 86px 0;
}

.why-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list article {
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.reason-list span {
  color: var(--teal);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.review-placeholder {
  padding: 24px;
}

.stars {
  color: var(--coral-deep);
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.text-link {
  color: #167572;
  font-weight: 800;
  text-decoration-color: rgba(42, 167, 163, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: #0d5d5b;
}

.park-side {
  padding: 92px 0;
}

.park-grid,
.visit-grid,
.final-inner {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.park-visuals {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.74fr;
}

.photo-slot {
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(46, 48, 51, 0.64);
  display: flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 360px;
  padding: 18px;
}

.cafe-slot {
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(8, 8, 8, 0.72) 59% 100%),
    linear-gradient(135deg, #fff5ec, #dac0ab);
  color: white;
}

.park-slot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(42, 167, 163, 0.32)),
    linear-gradient(135deg, #ecf8ed, #b9d9c2);
  margin-top: 58px;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  margin: 0 0 12px;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--teal);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 2px;
  position: absolute;
  top: 0.62em;
  width: 10px;
}

.visit-grid {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
}

.visit-card {
  background: var(--black);
  border-radius: var(--radius);
  color: white;
  padding: 34px;
}

.visit-card h2,
.visit-card .eyebrow {
  color: white;
}

.visit-card .eyebrow {
  color: #aee5e2;
}

.visit-card p,
.visit-card address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.visit-card .text-link {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.34);
}

.map-placeholder {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(42, 167, 163, 0.16) 48% 52%, transparent 52%),
    linear-gradient(22deg, transparent 0 38%, rgba(255, 159, 120, 0.26) 38% 42%, transparent 42%),
    linear-gradient(145deg, #f5f2ed, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  background:
    linear-gradient(90deg, rgba(113, 128, 150, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(113, 128, 150, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  inset: 0;
  position: absolute;
}

.map-pins {
  inset: 0;
  position: absolute;
}

.street,
.park-label {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 5px 10px;
  position: absolute;
}

.street-one {
  right: 18%;
  top: 38%;
  transform: rotate(88deg);
}

.street-two {
  bottom: 24%;
  left: 12%;
  transform: rotate(18deg);
}

.park-label {
  color: #167572;
  left: 46%;
  top: 28%;
}

.pin {
  background: var(--coral-deep);
  border: 5px solid white;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 24px rgba(244, 125, 81, 0.34);
  height: 42px;
  left: 58%;
  position: absolute;
  top: 47%;
  transform: rotate(-45deg);
  width: 42px;
}

.pin::after {
  background: white;
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 11px;
  position: absolute;
  top: 11px;
  width: 10px;
}

.final-cta {
  background: var(--coral-soft);
  padding: 58px 0;
}

.final-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-footer {
  background: #161616;
  padding: 42px 0;
}

.site-footer a {
  color: white;
}

.footer-grid {
  align-items: start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand .brand-mark {
  background: white;
  color: var(--black);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero-grid,
  .why-grid,
  .park-grid,
  .visit-grid,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-visual,
  .hero-photo-placeholder {
    min-height: 430px;
  }

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

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

  .compact {
    margin-bottom: 28px;
  }

  .final-actions {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    gap: 12px;
    min-height: 68px;
    padding: 0 16px;
  }

  .brand-mark {
    flex-basis: 42px;
    font-size: 11px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span,
  .header-order {
    display: none;
  }

  .container {
    padding: 0 18px;
  }

  .hero,
  .menu-preview,
  .reviews,
  .visit,
  .park-side,
  .why {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .hero-text {
    font-size: 1.08rem;
  }

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

  .hero-visual,
  .hero-photo-placeholder {
    min-height: 350px;
  }

  .latte-cup {
    height: 230px;
    width: 230px;
  }

  .latte-cup span {
    display: none;
  }

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

  .highlight-card {
    min-height: 0;
  }

  .park-visuals {
    grid-template-columns: 1fr;
  }

  .photo-slot {
    min-height: 240px;
  }

  .park-slot {
    margin-top: 0;
  }

  .visit-card {
    padding: 26px 20px;
  }

  .map-placeholder {
    min-height: 320px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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