:root {
  --ink: #191919;
  --muted: #62605b;
  --line: #dedbd4;
  --paper: #fbfaf6;
  --white: #ffffff;
  --coral: #ff5055;
  --coral-dark: #db363d;
  --olive: #4f6254;
  --charcoal: #222222;
  --soft: #f1eee8;
  --shadow: 0 24px 80px rgba(25, 25, 25, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(25, 25, 25, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  min-width: 140px;
}

.brand span,
.brand small {
  display: block;
}

.brand span {
  font-weight: 750;
  font-size: 0.9rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  margin-top: 4px;
}

.site-header nav {
  display: none;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-header nav a,
.nav-cta,
.button {
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(60px, 10vw, 110px) clamp(18px, 5vw, 76px) 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(25, 25, 25, 0.88), rgba(25, 25, 25, 0.46)),
    var(--hero-image) center / cover,
    var(--charcoal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.56));
}

.hero-inner,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 820px;
  padding-bottom: clamp(18px, 4vw, 44px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6.6vw, 5.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 5.4rem);
}

h3 {
  line-height: 1.2;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font: 800 0.86rem / 1 var(--sans);
  text-transform: uppercase;
}

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

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

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

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.text-link {
  color: var(--coral-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 980px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-panel div {
  min-height: 118px;
  padding: 22px;
  background: rgba(25, 25, 25, 0.62);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.split {
  display: grid;
  gap: 26px;
}

.rich-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list,
.mini-list,
.facility-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.mini-list li,
.facility-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.check-list li::before,
.mini-list li::before,
.facility-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  background: var(--coral);
}

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

.band .eyebrow {
  color: #ffd6d8;
}

.section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pill-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.package-card,
.capacity-card,
.capacity-details article,
.location-card,
.rules-card,
.equipment-card,
.notes,
.terms-card,
.enquiry-form,
.login-card,
.admin-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-card {
  min-height: 300px;
  padding: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-eyebrow {
  margin: 0;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3,
.pricing-card p {
  margin: 0;
}

.pricing-sections {
  display: grid;
  gap: 12px;
  margin: 4px 0;
}

.pricing-section {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.pricing-section h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.92rem;
}

.pricing-rows {
  display: grid;
  gap: 8px;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(109, 92, 67, 0.18);
}

.pricing-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-row strong {
  color: var(--coral);
  font-size: 1.1rem;
  font-weight: 850;
  white-space: nowrap;
}

.pricing-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.package-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.package-cta {
  width: 100%;
  margin-top: auto;
}

.catering-section {
  background: var(--paper);
}

.catering-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.catering-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.caterer-label {
  margin: 0 0 8px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catering-card h3 {
  margin-top: 0;
}

.catering-card p {
  color: var(--muted);
}

.catering-prices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.catering-prices span,
.catering-meta span,
.catering-summary-grid article {
  border: 1px solid var(--line);
  background: var(--soft);
}

.catering-prices span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px;
}

.catering-prices strong,
.catering-summary-grid strong {
  color: var(--coral);
  font-size: 1.05rem;
  line-height: 1.2;
}

.catering-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catering-meta span {
  padding: 9px 12px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.catering-card .button.secondary {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.catering-notes {
  margin-top: 18px;
  color: var(--muted);
}

.catering-page .site-header {
  background: rgba(25, 25, 25, 0.92);
}

.catering-hero {
  background: var(--charcoal);
}

.catering-summary-band {
  background: var(--soft);
}

.catering-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.catering-summary-grid article {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
}

.catering-summary-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-section:nth-of-type(even) {
  background: var(--paper);
}

.menu-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.menu-table-wrap {
  overflow-x: auto;
}

.catering-menu-table {
  min-width: 760px;
}

.catering-menu-table th:nth-child(1),
.catering-menu-table td:nth-child(1) {
  width: 72px;
  text-align: center;
}

.catering-menu-table th:nth-child(n + 3),
.catering-menu-table td:nth-child(n + 3) {
  width: 128px;
  white-space: nowrap;
  text-align: center;
}

.add-on-section {
  background: var(--soft);
}

.add-on-table {
  min-width: 700px;
}

.add-on-table th:nth-child(3),
.add-on-table td:nth-child(3) {
  width: 180px;
  white-space: nowrap;
}

.service-style-section {
  background: var(--paper);
}

.service-style-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-style-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-style-card p {
  color: var(--muted);
}

.capacity-section {
  background: var(--soft);
}

.capacity-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

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

.capacity-card {
  min-height: 132px;
  padding: 22px;
}

.capacity-card strong,
.capacity-card span {
  display: block;
}

.capacity-card strong {
  color: var(--coral);
  font-size: 1.45rem;
  line-height: 1.1;
}

.capacity-card span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
}

.capacity-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.capacity-details article {
  padding: 24px;
  box-shadow: none;
}

.capacity-note {
  margin: 18px 0 0;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.location-parking {
  background: var(--paper);
}

.location-parking .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.location-card {
  padding: 24px;
  box-shadow: none;
}

.location-card p {
  color: var(--muted);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rules-section {
  background: var(--soft);
}

.rules-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.rules-card {
  padding: 24px;
  box-shadow: none;
}

.equipment-section {
  background: var(--paper);
}

.equipment-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.equipment-card {
  padding: 24px;
  box-shadow: none;
}

.price {
  color: var(--coral);
  font-weight: 850;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.08;
}

.package-card p:not(.price):not(.package-eyebrow):not(.package-note),
.notes {
  color: var(--muted);
}

.notes {
  margin-top: 18px;
  padding: 24px;
  box-shadow: none;
}

.admin-help {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-callout {
  margin-top: 22px;
  padding: 18px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
}

.booking-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.booking-callout p {
  margin-bottom: 10px;
}

.terms-page {
  background: var(--paper);
}

.terms-hero {
  color: var(--white);
  background: var(--charcoal);
}

.terms-hero h1 {
  max-width: 980px;
}

.terms-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.terms-hero .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.terms-layout {
  display: grid;
  gap: 18px;
}

.terms-card {
  padding: 28px;
}

.terms-card h2,
.terms-table-section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.terms-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}

.terms-table th,
.terms-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.terms-table th {
  color: var(--white);
  background: var(--olive);
}

.terms-table tr:last-child td {
  border-bottom: 0;
}

.terms-note {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
}

.gallery-section {
  background: var(--soft);
}

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

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.gallery-item img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(25, 25, 25, 0.76);
  font-size: 0.86rem;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 18px;
  margin-top: 0;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: var(--charcoal);
}

blockquote {
  margin: 0;
  padding: 28px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
}

blockquote cite {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.faq {
  max-width: 1120px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
}

details p {
  max-width: 760px;
  color: var(--muted);
  padding-bottom: 20px;
}

.contact-section {
  display: grid;
  gap: 18px;
  color: var(--white);
  background: var(--charcoal);
}

.contact-copy p:not(.eyebrow),
.contact-lines {
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  box-shadow: none;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: 500 1rem / 1.4 var(--sans);
}

textarea {
  resize: vertical;
}

.success {
  padding: 12px;
  color: #17482e;
  background: #e1f4e9;
  border: 1px solid #9bcaaa;
}

.error {
  padding: 12px;
  color: #8d1f23;
  background: #fff0f1;
  border: 1px solid #ffc3c6;
}

.map {
  width: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.25);
}

.floating-wa {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 0 6px rgba(198, 150, 60, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  color: var(--white);
  background: #20bf5a;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(198, 150, 60, 0.24);
}

.floating-wa-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.17);
  border-radius: 999px;
}

.floating-wa-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-wa-label {
  font-size: 16px;
  line-height: 1;
}

footer {
  padding: 24px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.62);
  background: #111111;
}

footer p {
  margin: 0;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 10px;
}

footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 750;
}

footer a:hover {
  color: var(--white);
}

.admin-body {
  min-height: 100vh;
  background: var(--soft);
}

.login-card {
  width: min(92vw, 460px);
  margin: 10vh auto;
  padding: 30px;
}

.login-card h1 {
  color: var(--ink);
  font-size: 2.8rem;
}

.login-card p {
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 48px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.admin-topbar h1 {
  margin: 0;
  font-size: 2.4rem;
}

.admin-topbar .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--soft);
}

.admin-shell {
  display: grid;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 48px) 42px;
}

.admin-tabs {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 4px;
}

.admin-tabs button,
.small-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 13px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.admin-tabs button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.admin-panel {
  padding: clamp(18px, 4vw, 30px);
  box-shadow: none;
}

.admin-status {
  min-height: 42px;
  margin-bottom: 18px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
}

.admin-grid {
  display: grid;
  gap: 16px;
}

.admin-fieldset {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fffdf9;
}

.admin-fieldset legend {
  padding: 0 8px;
  font-weight: 850;
}

.admin-fieldset.nested {
  background: var(--soft);
}

.repeat-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.small-button.danger {
  color: #9a2025;
  background: #fff2f3;
  border-color: #ffc3c6;
}

.upload-row {
  display: grid;
  gap: 8px;
}

.thumb {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.admin-savebar {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding-top: 18px;
  background: linear-gradient(rgba(255, 255, 255, 0), var(--white) 30%);
}

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

.enquiry-list article {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.enquiry-list p {
  margin-bottom: 6px;
}

@media (min-width: 680px) {
  .site-header nav {
    display: flex;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .pill-grid,
  .capacity-grid,
  .capacity-details,
  .location-grid,
  .rules-grid,
  .equipment-grid,
  .catering-grid,
  .catering-prices,
  .catering-summary-grid,
  .service-style-grid,
  .package-grid,
  .facility-list,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-item.item-1 {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .split,
  .terms-layout,
  .contact-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
  }

  .contact-section .map {
    grid-column: 1 / -1;
  }

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

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

  .catering-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .gallery-item.item-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item.item-1 img {
    min-height: 540px;
  }

  .admin-shell {
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: start;
  }

  .admin-tabs {
    position: sticky;
    top: 18px;
    display: grid;
    overflow: visible;
  }

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

@media (max-width: 430px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .button {
    width: 100%;
  }

  .floating-wa {
    min-height: 66px;
    width: 66px;
    padding: 0;
  }

  .floating-wa-icon {
    width: 44px;
    height: 44px;
  }

  .floating-wa-icon svg {
    width: 29px;
    height: 29px;
  }

  .floating-wa-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}
