:root {
  --green: #213819;
  --green-2: #354c27;
  --gold: #ae9551;
  --cream: #f6efe1;
  --paper: #fbf8f0;
  --white: #fffdf8;
  --ink: #1f2b1a;
  --muted: #6d675a;
  --line: #ddd1b8;
  --shadow: 0 24px 70px rgba(31, 43, 26, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  padding: 10px clamp(18px, 4vw, 64px);
  color: var(--green);
  background:
    linear-gradient(90deg, rgba(174,149,81,.22), rgba(255,253,248,.96) 32%, rgba(246,239,225,.98) 100%);
  border-bottom: 1px solid rgba(174,149,81,.34);
  box-shadow: 0 10px 30px rgba(31, 43, 26, 0.14);
}

.brand img {
  width: clamp(250px, 22vw, 360px);
  height: 112px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-menu a,
.menu-dropdown > button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
}

.main-menu a.active::after,
.main-menu a:hover::after,
.menu-dropdown:hover > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
}

.menu-dropdown { position: relative; }
.menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  display: grid;
  gap: 2px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow);
}
.menu-dropdown:hover .menu-panel,
.menu-dropdown:focus-within .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-panel button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--green);
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 850;
  line-height: 1.25;
  white-space: normal;
  cursor: pointer;
}
.menu-panel button:hover { background: var(--cream); }

.menu-toggle { display: none; }

.view { min-height: calc(100vh - 132px); }

.hero-slider {
  position: relative;
  min-height: calc(100vh - 132px);
  overflow: hidden;
  background: #111;
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
  isolation: isolate;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.slide img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.44) 45%, rgba(0, 0, 0, 0.22));
}
.slide-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 110px);
  color: var(--white);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Cormorant, Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
h1 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5.4vw, 5.9rem);
  line-height: 0.96;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1.05;
}
h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.35rem;
}
.slide-content p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}
.btn.primary { color: var(--white); background: var(--green); }
.btn.outline { color: var(--white); border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.btn.light { color: var(--green); background: var(--white); border-color: var(--line); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.14);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.slider-arrow:hover {
  background: rgba(255,255,255,.24);
  transform: translateY(-1px);
}
.slider-arrow svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.6;
}
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}
.slider-dots button.active { background: var(--gold); }

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  z-index: 4;
  background: rgba(246,239,225,.72);
  clip-path: ellipse(75% 88% at 50% 100%);
}

section.padded { padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px); }
.section-head { max-width: 980px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.about-grid,
.services-grid,
.gallery-grid,
.service-info,
.steps-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}
.about-grid { grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr)); }
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-info { grid-template-columns: 1.05fr .95fr .95fr; margin-top: 28px; }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-layout { grid-template-columns: .82fr 1fr; }

.about-editorial {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.about-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}
.about-copy {
  max-width: 720px;
}
.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}
.about-copy .btn {
  margin-top: 18px;
}
.about-statement {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(54px, 8vw, 110px);
  padding: clamp(30px, 5vw, 58px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-statement h3 {
  margin: 0;
  max-width: 520px;
  color: var(--green);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.04;
}
.about-statement p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px);
  margin-top: clamp(42px, 7vw, 82px);
}
.about-values article {
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.about-values span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.about-values p {
  margin: 0;
  color: var(--muted);
}
.about-rich {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  margin-top: 42px;
}
.about-rich p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.corporate-catering {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 76px);
  margin-top: clamp(54px, 8vw, 96px);
  padding: clamp(32px, 5vw, 58px);
  border-radius: 8px;
  color: rgba(255,253,248,.82);
  background: var(--green);
}
.corporate-catering h2 {
  color: var(--white);
}
.corporate-catering p:last-child {
  margin: 0;
  font-size: 1.06rem;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.card p, .card li, .contact-copy p { color: var(--muted); }
.proposal-section {
  background: var(--paper);
}
.proposal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}
.proposal-points {
  display: grid;
  gap: 18px;
}
.proposal-points article {
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--gold);
}
.proposal-points span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Cormorant, Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
}
.proposal-points h3,
.proposal-points p {
  margin-bottom: 0;
}
.proposal-points p {
  color: var(--muted);
}
.service-card {
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card div { padding: 20px; }
.service-card:hover h3 { color: var(--gold); }

.service-detail-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}
.service-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-detail-copy p { color: var(--muted); font-size: 1.08rem; }
.service-depth {
  padding-top: 20px !important;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}
.detail-list article {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.detail-list p {
  margin: 0;
  color: var(--muted);
}
.concession-highlight {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  color: rgba(255,253,248,.82);
  background:
    linear-gradient(90deg, rgba(37,54,29,.9), rgba(53,76,39,.78)),
    url("../images/service-breakfast.png") center / cover;
}
.concession-highlight h2 {
  color: var(--white);
}
.concession-copy p:not(.eyebrow) {
  color: rgba(255,253,248,.78);
  font-size: 1.06rem;
}
.concession-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.concession-list span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255,253,248,.18);
  border-radius: 8px;
  background: rgba(255,253,248,.08);
  font-weight: 800;
}
.impact-strip {
  position: relative;
  min-height: 260px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
}
.impact-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
}
.impact-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18,24,13,.58);
}
.impact-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(44px, 7vw, 74px) clamp(18px, 7vw, 110px);
}
.impact-content div {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
.impact-content strong {
  color: var(--white);
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}
.impact-content span {
  max-width: 180px;
  text-transform: uppercase;
  font-weight: 950;
  font-size: .82rem;
}
ul { margin: 0; padding-left: 18px; }
li + li { margin-top: 8px; }
.step-number {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: Cormorant, Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(255,253,248,.9);
  font-weight: 900;
  text-align: center;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 44px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--green);
}
.stats-strip div { display: grid; gap: 6px; justify-items: center; text-align: center; }
.stats-strip strong { color: var(--gold); font-family: Cormorant, Georgia, serif; font-size: 3.5rem; line-height: 1; }
.stats-strip span { max-width: 170px; text-transform: uppercase; font-size: .78rem; font-weight: 850; letter-spacing: .05em; }

.contact { background: var(--cream); }
.contact-list { display: grid; gap: 10px; margin-top: 22px; color: var(--green); font-weight: 900; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.full { grid-column: 1 / -1; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 900; font-size: .88rem; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }

.chatbot-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 38px rgba(31, 43, 26, .28);
  cursor: pointer;
}
.chatbot-float svg { width: 30px; height: 30px; }
.chatbot-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 95;
  display: none;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.chatbot-panel.open { display: block; }
.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background: var(--green);
}
.chatbot-head strong,
.chatbot-head span {
  display: block;
}
.chatbot-head span {
  opacity: .78;
  font-size: .82rem;
}
.chatbot-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255,255,255,.14);
  font-size: 24px;
  cursor: pointer;
}
.chatbot-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}
.chatbot-body p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.bot-message,
.user-message {
  padding: 12px 13px;
  border-radius: 8px;
  background: var(--cream);
}
.user-message {
  color: var(--white);
  background: var(--green-2);
}
.chatbot-form {
  display: grid;
  gap: 12px;
}
.home-info-band {
  display: grid;
  grid-template-columns: .72fr 1.1fr 1.05fr 1.1fr .88fr;
  gap: clamp(22px, 3.4vw, 54px);
  align-items: start;
  padding: clamp(52px, 6vw, 78px) clamp(18px, 6vw, 100px);
  color: rgba(255,253,248,.78);
  background:
    radial-gradient(circle at 8% 20%, rgba(174,149,81,.18), transparent 34%),
    linear-gradient(135deg, #24351d, #2f4325 58%, #21331b);
}
.home-info-band img {
  width: min(300px, 100%);
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  opacity: .98;
}
.home-info-band h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
}
.home-info-band h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: rgba(174,149,81,.78);
}
.home-info-band a,
.home-info-band span {
  display: block;
  margin-top: 9px;
  color: rgba(255,253,248,.78);
  line-height: 1.55;
}
.social-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  color: rgba(255,253,248,.86) !important;
  font-weight: 850;
}
.social-link + .social-link {
  margin-top: 11px;
}
.social-link svg {
  width: 21px;
  height: 21px;
  color: var(--gold);
  flex: 0 0 auto;
}
.social-link span {
  margin-top: 0;
}
.footer-trust-strip {
  padding: 22px clamp(18px, 5vw, 72px);
  color: rgba(255,253,248,.95);
  background: linear-gradient(90deg, #2d4224, #3a512c, #2d4224);
  text-align: center;
}
.footer-trust-strip p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.18;
}
.footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px clamp(18px, 5vw, 72px) 28px;
  color: rgba(255,253,248,.82);
  background: #21331b;
  font-weight: 750;
  text-align: center;
}
.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 8px clamp(14px, 4vw, 28px);
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    width: clamp(210px, 52vw, 300px);
    height: 88px;
  }
  .menu-toggle {
    display: grid;
    gap: 5px;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    place-content: center;
    justify-self: end;
    border: 1px solid rgba(33,56,25,.24);
    border-radius: 8px;
    background: transparent;
  }
  .menu-toggle span { width: 22px; height: 2px; background: var(--green); }
  .main-menu {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    padding-top: 10px;
    overflow: visible;
  }
  .main-menu.open { display: flex; }
  .main-menu a,
  .menu-dropdown > button {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
  }
  .menu-dropdown {
    width: 100%;
  }
  .menu-panel {
    position: static;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin: 4px 0 8px;
  }
  .home-info-band {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .about-editorial,
  .about-statement,
  .about-values,
  .about-rich,
  .corporate-catering,
  .proposal-layout,
  .concession-highlight,
  .detail-list,
  .services-grid,
  .gallery-grid,
  .service-info,
  .steps-grid,
  .contact-layout,
  .service-detail-hero,
  .stats-strip,
  .impact-content {
    grid-template-columns: 1fr;
  }
  .concession-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 84px;
    padding-inline: 12px;
  }
  .brand img { width: min(220px, 68vw); height: 72px; }
  .hero-slider { min-height: 760px; }
  .slide-content { margin: 0 auto; padding-top: 30px; }
  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9vw, 3.25rem);
    line-height: 1;
  }
  .slider-arrow { width: 42px; height: 42px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .hero-actions .btn { width: 100%; }
  .contact-form { grid-template-columns: 1fr; }
  .home-info-band { grid-template-columns: 1fr; }
  .about-image img { min-height: 360px; }
  .chatbot-panel {
    right: 16px;
    bottom: 96px;
  }
}
