:root {
  --olive-black: #243321;
  --olive-dark: #2f422b;
  --olive: #3f5738;

  --khaki: #cdb887;
  --gold: #cdb887;
  --gold-soft: #d9c99b;

  --cream: #f7f1e3;
  --paper: #fffaf0;
  --text: #243321;
  --muted: #6f6a58;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(36, 51, 33, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  padding-top: 118px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--olive-black);
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 118px;
  z-index: 1000;
  background: var(--olive-black);
  border-bottom: 2px solid rgba(197, 173, 122, 0.55);
  box-shadow: 0 14px 35px rgba(28, 42, 28, 0.28);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  height: 82px;
  box-shadow: 0 10px 28px rgba(28, 42, 28, 0.22);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 125px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .logo {
  width: 86px;
  height: 62px;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* BUTTONS */
.book-btn,
.primary-btn,
.secondary-btn,
.secondary-dark-btn,
.outline-light-btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  transition: 0.25s ease;
}

.book-btn,
.primary-btn {
  background: var(--gold);
  color: var(--olive-black) !important;
  box-shadow: 0 8px 22px rgba(197, 173, 122, 0.28);
}

.book-btn:hover,
.primary-btn:hover {
  background: #d2bd8e;
  color: var(--olive-black) !important;
  transform: translateY(-2px);
}

.secondary-btn,
.outline-light-btn {
  border: 1px solid var(--white);
  color: var(--white) !important;
}

.secondary-btn:hover,
.outline-light-btn:hover {
  background: var(--white);
  color: var(--olive-black) !important;
}

.secondary-dark-btn {
  border: 1px solid var(--olive-black);
  color: var(--olive-black);
}

.secondary-dark-btn:hover {
  background: var(--olive-black);
  color: var(--white);
}

/* HERO */
.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(36, 51, 33, 0.32), rgba(36, 51, 33, 0.58)),
    url("../assets/images/home-hero.jpg") center/cover no-repeat;
}

.hero-content {
  width: min(900px, calc(100% - 32px));
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1;
  margin: 14px 0 22px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.hero p {
  color: var(--white);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* GLOBAL SECTIONS */
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 900;
}

.text-link:hover {
  color: var(--olive-black);
}

/* WELCOME SECTION */
.welcome-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.explore-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.welcome-section .explore-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 28px;
}

.welcome-section .small-explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.welcome-section .large-explore-card,
.welcome-section .small-explore-card {
  display: block;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.24);
  padding: 28px;
  transition: 0.25s ease;
}

.welcome-section .large-explore-card:hover,
.welcome-section .small-explore-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(28, 42, 28, 0.22);
}

.welcome-section .large-explore-card {
  min-height: 420px;
  padding: 42px;
  background:
    linear-gradient(rgba(28, 42, 28, 0.72), rgba(28, 42, 28, 0.88)),
    url("../assets/images/home-hero.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.welcome-section .large-explore-card h3,
.welcome-section .large-explore-card p {
  color: var(--white);
}

.welcome-section .small-explore-card {
  min-height: 200px;
}

.welcome-section .small-explore-card span,
.welcome-section .large-explore-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 900;
}

/* HIGHLIGHT SECTION */
.highlight-section {
  background: #243321;
  color: var(--white);
  width: 100%;
  max-width: none;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
}

.highlight-section h2,
.highlight-section h3,
.highlight-section p {
  color: var(--white);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.highlight-grid div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 173, 122, 0.35);
  border-radius: 22px;
  padding: 28px;
}

/* ROOMS PREVIEW SECTION */
.rooms-preview-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.rooms-preview-header {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.rooms-preview-header p:not(.eyebrow) {
  font-size: 1.05rem;
}

.rooms-preview-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.featured-room-preview {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.35);
  background:
    linear-gradient(rgba(28, 42, 28, 0.35), rgba(28, 42, 28, 0.88)),
    url("https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.featured-room-content {
  padding: 42px;
  color: var(--white);
}

.featured-room-content span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 900;
}

.featured-room-content h3 {
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-top: 12px;
}

.featured-room-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.room-preview-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.room-type-list {
  display: grid;
  gap: 18px;
}

.room-type-item {
  background: var(--paper);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  transition: 0.25s ease;
}

.room-type-item:hover {
  transform: translateX(8px);
  box-shadow: 0 24px 60px rgba(28, 42, 28, 0.2);
}

.room-type-item > span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.room-type-item h3 {
  margin-bottom: 6px;
}

.room-type-item strong {
  color: var(--olive-black);
  font-weight: 900;
}

.booking-strip {
  margin-top: 34px;
  background: var(--olive-black);
  color: var(--white);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.35);
}

.booking-strip p {
  color: var(--white);
  max-width: 560px;
}

.booking-strip div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-strip .secondary-dark-btn {
  border-color: var(--white);
  color: var(--white);
}

.booking-strip .secondary-dark-btn:hover {
  background: var(--white);
  color: var(--olive-black);
}

/* ACCOMMODATION PAGE CARDS */
.page-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(28, 42, 28, 0.25);
}

.room-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
  background: var(--paper);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.room-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.92) saturate(1.1);
}

.room-content {
  padding: 28px;
}

.room-features {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
}

.room-features li {
  margin-bottom: 6px;
}

.room-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin: 18px 0;
}

.room-card a {
  color: var(--olive-black);
  font-weight: 900;
}

.room-card a:hover {
  color: var(--gold);
}

/* IMAGE CARDS */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-card {
  min-height: 390px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(197, 173, 122, 0.4);
  background:
    linear-gradient(rgba(28, 42, 28, 0.15), rgba(28, 42, 28, 0.35)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.image-card span {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.image-card.beach {
  background:
    linear-gradient(rgba(28, 42, 28, 0.15), rgba(28, 42, 28, 0.35)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
}

/* FACILITIES */
.facilities-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.facilities-list div {
  background: var(--paper);
  color: var(--olive-black);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.28);
  font-weight: 800;
}

/* VENUE */
.venue {
  text-align: center;
  max-width: 850px;
}

.venue .primary-btn {
  margin-top: 28px;
}

/* CONTACT */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--paper);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(28, 42, 28, 0.18);
  border-radius: 14px;
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 173, 122, 0.16);
}

.contact-form button {
  border: 0;
  border-radius: 14px;
  padding: 15px 18px;
  background: var(--olive-black);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--gold);
  color: var(--olive-black);
}

.email-link {
  text-align: center;
  color: var(--olive-black);
  font-weight: 900;
}

.email-link:hover {
  color: var(--gold);
}

/* CTA */
.cta-section {
  background: #243321;
  color: var(--white);
  max-width: none;
  width: 100%;
  padding: 90px 24px;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section .eyebrow {
  color: var(--gold);
}

.cta-section .secondary-dark-btn {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .secondary-dark-btn:hover {
  background: var(--white);
  color: var(--olive-black);
}

/* FOOTER */
.footer {
  background: var(--olive-black);
  color: var(--gold);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(197, 173, 122, 0.5);
}

.footer p {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  body {
    padding-top: 98px;
  }

  .site-header {
    height: 98px;
  }

  .site-header.scrolled {
    height: 76px;
  }

  .navbar {
    padding: 12px 0;
  }

  .logo {
    width: 105px;
    height: 76px;
  }

  .site-header.scrolled .logo {
    width: 82px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
    background: var(--olive-black);
    flex-direction: column;
    gap: 18px;
    padding: 26px 24px;
    display: none;
    box-shadow: var(--shadow);
  }

  .site-header.scrolled .nav-links {
    top: 76px;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 98px);
  }

  .welcome-section .explore-layout,
  .welcome-section .small-explore-grid,
  .rooms-preview-header,
  .rooms-preview-layout,
  .split,
  .contact-section,
  .cards-grid,
  .facilities-list {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .featured-room-preview {
    min-height: 460px;
  }

  .booking-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .image-card {
    min-height: 310px;
  }

  .room-type-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .featured-room-content {
    padding: 28px;
  }
}

.about-hero {
  padding-top: 110px;
  padding-bottom: 80px;
  text-align: center;
  max-width: 980px;
}

.about-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
}

.about-story .image-card {
  min-height: 430px;
}

/* 1. Historical Splendour */
.about-story .historical-card {
  background:
    linear-gradient(rgba(28, 42, 28, 0.12), rgba(28, 42, 28, 0.28)),
    url("https://www.parkhouse.co.za/wp-content/uploads/2019/11/Slide-4.jpg")
    center/cover no-repeat;
}

/* 2. Creating Memories */
.about-story .kitchen-card {
  background:
    linear-gradient(rgba(28, 42, 28, 0.12), rgba(28, 42, 28, 0.28)),
    url("https://www.parkhouse.co.za/wp-content/uploads/2019/11/farm-style-kitchen.jpg")
    center/cover no-repeat;
}

/* 3. Garden Calm */
.about-story .garden-card {
  background:
    linear-gradient(rgba(28, 42, 28, 0.12), rgba(28, 42, 28, 0.28)),
    url("https://www.parkhouse.co.za/wp-content/uploads/2019/11/Facilities.jpg")
    center/cover no-repeat;
}

.about-values {
  background: #243321;
  color: var(--white);
  width: 100%;
  max-width: none;
  padding: 95px max(24px, calc((100vw - 1180px) / 2)) 100px;
}

.about-values h2,
.about-values h3,
.about-values p {
  color: var(--white);
}

.about-grid {
  margin-top: 38px;
}

.about-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  max-width: 850px;
}

.about-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .hero-actions {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .about-hero {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .about-story,
  .about-story.reverse {
    direction: ltr;
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .about-values,
  .about-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* ACCOMMODATION BOOKING PAGE */
.accommodation-hero {
  text-align: center;
  max-width: 950px;
}

.accommodation-hero p {
  max-width: 740px;
  margin: 0 auto;
}

.accommodation-rooms-section {
  padding-top: 30px;
  padding-bottom: 80px;
}

.accommodation-rooms-section .room-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 700px) {
  .accommodation-rooms-section .room-list,
  .booking-bottom-section .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .accommodation-layout,
  .room-list {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: static;
  }
}

/* FACILITIES PAGE */
.facilities-hero {
  text-align: center;
  max-width: 950px;
}

.facilities-hero p {
  max-width: 740px;
  margin: 0 auto;
}

.facilities-feature-section {
  padding-top: 30px;
  padding-bottom: 40px;
}

.facilities-feature-card {
  background: var(--olive-black);
  color: var(--white);
  border-radius: 30px;
  padding: 46px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.facilities-feature-card h2,
.facilities-feature-card p {
  color: var(--white);
}

.facilities-feature-card div {
  max-width: 760px;
}

.facilities-grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 50px;
  padding-bottom: 90px;
}

.facility-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  transition: 0.25s ease;
}

.facility-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(28, 42, 28, 0.22);
}

.facility-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.facility-card h3 {
  margin-top: 14px;
}

.facilities-highlight {
  background: #243321;
  color: var(--white);
  width: 100%;
  max-width: none;
  padding: 95px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.facilities-highlight h2,
.facilities-highlight p {
  color: var(--white);
}

.facility-note-list {
  display: grid;
  gap: 16px;
}

.facility-note-list div {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(197, 173, 122, 0.35);
  border-radius: 18px;
  padding: 22px;
  font-weight: 800;
}

.facilities-cta {
  text-align: center;
  max-width: 850px;
}

.facilities-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.facilities-cta .hero-actions {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .facilities-feature-card,
  .facilities-highlight {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .facilities-grid-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .facilities-grid-section {
    grid-template-columns: 1fr;
  }

  .facilities-feature-card {
    padding: 32px;
  }
}

/* MOSSEL BAY PAGE */
.mossel-hero {
  text-align: center;
  max-width: 960px;
}

.mossel-hero p {
  max-width: 760px;
  margin: 0 auto;
}

.mossel-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
}

.surf-section {
  background: #243321;
  color: var(--white);
  width: 100%;
  max-width: none;
  padding: 95px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.surf-section h2,
.surf-section p {
  color: var(--white);
}

.surf-copy .primary-btn {
  margin-top: 28px;
}

.surf-links {
  display: grid;
  gap: 16px;
}

.surf-links a {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(197, 173, 122, 0.35);
  border-radius: 20px;
  padding: 24px;
  font-weight: 900;
  transition: 0.25s ease;
}

.surf-links a:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.1);
}

.surf-links span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.mossel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mossel-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.mossel-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.mossel-card h3 {
  margin-top: 14px;
}

.mossel-cta {
  text-align: center;
  max-width: 850px;
}

.mossel-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mossel-cta .hero-actions {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .mossel-feature,
  .surf-section,
  .mossel-grid {
    grid-template-columns: 1fr;
  }
}

/* VENUE / GROUP STAYS PAGE */
.venue-hero {
  text-align: center;
  max-width: 980px;
}

.venue-hero p {
  max-width: 760px;
  margin: 0 auto;
}

.venue-hero .hero-actions {
  margin-top: 30px;
}

.group-focus-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding-top: 40px;
}

.group-focus-card {
  background: var(--paper);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.28);
  border-top: 5px solid var(--gold);
}

.group-focus-card.large {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(28, 42, 28, 0.5), rgba(28, 42, 28, 0.88)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
}

.group-focus-card.large h2,
.group-focus-card.large p {
  color: var(--white);
}

.group-focus-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 900;
}

.group-focus-stack {
  display: grid;
  gap: 28px;
}

.group-focus-card.dark {
  background: var(--olive-black);
}

.group-focus-card.dark h3,
.group-focus-card.dark p {
  color: var(--white);
}

.venue-benefits {
  padding-top: 95px;
  padding-bottom: 100px;
}

.venue-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.venue-benefit-grid div {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.venue-benefit-grid span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.venue-benefit-grid h3 {
  margin-top: 14px;
}

.venue-cta {
  text-align: center;
  max-width: 850px;
}

.venue-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.venue-cta .hero-actions {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .group-focus-section,
  .venue-package-section,
  .venue-benefit-grid {
    grid-template-columns: 1fr;
  }

  .group-focus-card.large {
    min-height: 420px;
  }
}

.venue-package-section {
  background: #243321;
  color: var(--white);
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}

.venue-package-section > div:first-child {
  max-width: 520px;
}

.venue-package-section h2,
.venue-package-section p {
  color: var(--white);
}

.venue-package-section h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
}

.venue-package-section p {
  font-size: 1.05rem;
  margin-top: 18px;
}

.group-enquiry-form {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background: var(--paper);
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  display: grid;
  gap: 14px;
}

.group-enquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--olive-black);
  font-weight: 800;
}

.group-enquiry-form input,
.group-enquiry-form select,
.group-enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(28, 42, 28, 0.18);
  border-radius: 14px;
  background: var(--white);
  font: inherit;
}

.group-enquiry-form textarea {
  min-height: 105px;
  resize: vertical;
}

.group-enquiry-form button {
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  background: var(--gold);
  color: var(--olive-black);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .venue-package-section {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .group-enquiry-form {
    justify-self: start;
    max-width: 100%;
  }
}

/* CONTACT PAGE */
.contact-hero {
  text-align: center;
  max-width: 900px;
}

.contact-hero p {
  max-width: 680px;
  margin: 0 auto;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding-top: 40px;
}

.contact-info-panel {
  background: var(--olive-black);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.35);
}

.contact-info-panel h2,
.contact-info-panel p {
  color: var(--white);
}

.contact-detail-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.contact-detail-list div {
  border-top: 1px solid rgba(197, 173, 122, 0.35);
  padding-top: 18px;
}

.contact-detail-list span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.contact-detail-list a {
  color: var(--white);
  font-weight: 900;
}

.contact-page-layout .contact-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(28, 42, 28, 0.18);
  border-radius: 14px;
  font: inherit;
  background: var(--white);
}

.contact-map-card {
  background: var(--olive-black);
  color: var(--white);
  width: min(1180px, calc(100% - 40px));
  border-radius: 30px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 173, 122, 0.35);
}

.contact-map-card h2,
.contact-map-card p {
  color: var(--white);
}

.contact-map-card div {
  max-width: 720px;
}

@media (max-width: 980px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form-label {
  display: grid;
  gap: 7px;
  color: var(--olive-black);
  font-weight: 800;
}

.contact-map-card {
  margin-bottom: 90px;
}

.contact-page-layout {
  padding-bottom: 40px;
}

.contact-hero {
  padding-bottom: 70px;
}

@media (max-width: 980px) {
  .contact-map-card {
    margin-bottom: 70px;
  }
}

.booking-bottom-section {
  width: 100%;
  max-width: none;
  background: #243321;
  color: var(--white);
  padding: 95px 24px;
  margin-top: 80px;
}

.booking-bottom-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.booking-bottom-copy h2,
.booking-bottom-copy p {
  color: var(--white);
}

.booking-bottom-copy {
  max-width: 520px;
}

.booking-bottom-inner .booking-form {
  background: var(--paper);
  padding: 30px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-bottom-inner .booking-form label {
  display: grid;
  gap: 7px;
  color: var(--olive-black);
  font-weight: 800;
}

.booking-bottom-inner .booking-form .full-field,
.booking-bottom-inner .booking-form button {
  grid-column: 1 / -1;
}

.booking-bottom-inner .booking-form input,
.booking-bottom-inner .booking-form select,
.booking-bottom-inner .booking-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(28, 42, 28, 0.18);
  border-radius: 14px;
  background: var(--white);
  font: inherit;
}

.booking-bottom-inner .booking-form button {
  border: 0;
  border-radius: 14px;
  padding: 15px 18px;
  background: var(--gold);
  color: var(--olive-black);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .booking-bottom-inner {
    grid-template-columns: 1fr;
  }

  .booking-bottom-inner .booking-form {
    grid-template-columns: 1fr;
  }
}

.select-room-btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--olive-black);
  color: var(--white);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.select-room-btn:hover {
  background: var(--gold);
  color: var(--olive-black);
  transform: translateY(-2px);
}