:root {
  --ink: #1f2a2e;
  --muted: #5d6c70;
  --paper: #fffaf3;
  --surface: #ffffff;
  --line: #dde5df;
  --teal: #157a75;
  --teal-dark: #0b4e4c;
  --coral: #dc6b56;
  --gold: #f1b84b;
  --leaf: #6f9c5e;
  --sky: #dceff0;
  --shadow: 0 18px 40px rgba(22, 44, 48, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

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

code {
  padding: 0.12rem 0.32rem;
  border-radius: 5px;
  background: rgba(21, 122, 117, 0.1);
  color: var(--teal-dark);
  font-size: 0.9em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(31, 42, 46, 0.08);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  color: var(--muted);
  font-weight: 700;
}

.main-nav a {
  padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--teal-dark);
}

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

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 43, 45, 0.82), rgba(8, 43, 45, 0.28) 58%, rgba(8, 43, 45, 0.16));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 2rem));
  padding: 0 clamp(1rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  color: white;
}

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

.hero .eyebrow {
  color: #ffd48a;
}

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

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.button.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 24px rgba(220, 107, 86, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  min-width: 0;
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem);
  background: var(--surface);
}

.quick-info span,
.contact-cards span,
.event-date,
.social-card span,
.meal-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  line-height: 1.35;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 2rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.intro-grid,
.service-grid,
.social-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.intro-grid article,
.service-card,
.social-card,
.calendar-note,
.menu-note,
.tour-form,
.media-card,
.contact-cards div {
  border: 1px solid rgba(31, 42, 46, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(30, 52, 55, 0.06);
}

.intro-grid article,
.service-card,
.social-card,
.calendar-note,
.menu-note {
  padding: 1.35rem;
}

.intro-grid p,
.service-card p,
.social-card p,
.calendar-note p,
.menu-note p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  border-top: 5px solid var(--card-color, var(--teal));
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--card-soft, var(--sky));
  color: var(--card-color, var(--teal));
  font-weight: 900;
}

.calendar-section {
  background: #eef6f0;
}

.month-switcher,
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip,
.tab {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.chip.is-active,
.tab.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.calendar-shell,
.menu-layout,
.contact-section {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1rem;
}

.calendar-list {
  display: grid;
  gap: 0.75rem;
}

.event-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-left: 5px solid var(--event-color, var(--teal));
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(30, 52, 55, 0.06);
}

.event-card p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.menus-section {
  background: #fff6e6;
}

.menu-panel {
  display: grid;
  gap: 0.75rem;
}

.meal-card {
  padding: 1rem;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(30, 52, 55, 0.06);
}

.meal-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.meal-card p {
  margin: 0;
  color: var(--muted);
}

.media-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.media-card {
  overflow: hidden;
}

.media-card.featured {
  grid-row: span 2;
}

.media-card img,
.media-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sky);
}

.media-card.featured img {
  aspect-ratio: 4 / 3.5;
}

.media-placeholder {
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
  text-align: center;
}

.media-card div:last-child {
  padding: 1rem;
}

.media-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.social-card {
  min-height: 170px;
}

.social-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-section {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.contact-copy h2 {
  margin-bottom: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.contact-cards div {
  padding: 1rem;
}

.tour-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  padding: 1rem;
}

.tour-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.tour-form input,
.tour-form select,
.tour-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  color: var(--ink);
  font: inherit;
  background: #fbfdfc;
}

.tour-form textarea {
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--teal-dark);
  color: white;
}

.site-footer p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 43, 45, 0.32), rgba(8, 43, 45, 0.88));
  }

  .quick-info,
  .intro-grid,
  .service-grid,
  .social-grid,
  .calendar-shell,
  .menu-layout,
  .contact-section,
  .contact-cards,
  .media-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .site-header {
    min-height: 66px;
  }

  .main-nav {
    inset: 66px 1rem auto;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    width: 100%;
    padding-bottom: 2.5rem;
  }

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

  .event-card,
  .tour-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
