:root {
  --ink: #17231b;
  --muted: #5d675f;
  --paper: #f8f5ee;
  --white: #ffffff;
  --green: #164f2d;
  --green-2: #0f3a25;
  --gold: #d5a74d;
  --clay: #b86f45;
  --line: rgba(23, 35, 27, 0.14);
  --shadow: 0 24px 70px rgba(17, 35, 23, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(248, 245, 238, 0.88);
  border-bottom: 1px solid rgba(23, 35, 27, 0.1);
  backdrop-filter: blur(20px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

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

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--green-2);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: var(--clay);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-call {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(23, 35, 27, 0.1);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav .nav-call::after {
  display: none;
}

.site-nav .nav-call:hover {
  color: var(--ink);
  background: #e1b85d;
  box-shadow: 0 14px 28px rgba(23, 35, 27, 0.16);
  transform: translateY(-1px);
}

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

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

.site-announcement {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 82px;
  padding: 13px clamp(20px, 5vw, 80px);
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(23, 35, 27, 0.18);
}

.site-announcement[hidden] {
  display: none;
}

.site-announcement p {
  margin: 0;
  font-weight: 850;
  text-align: center;
}

.site-announcement a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 80px) 64px;
  overflow: hidden;
  background: var(--green-2);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 31, 19, 0.88), rgba(12, 31, 19, 0.46) 48%, rgba(12, 31, 19, 0.2)),
    url("assets/course/clubhouse-drone.jpg") center / cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  max-width: 780px;
  color: var(--white);
  animation: riseIn 820ms var(--ease-out) 120ms both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.45rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
}

.hero-subline {
  margin-bottom: 20px;
  color: var(--gold) !important;
  font-size: 1rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(17, 35, 23, 0.18);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: #1c271f;
  background: var(--gold);
}

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

.quick-card {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  animation: riseIn 820ms var(--ease-out) 300ms both;
}

.quick-card div {
  padding: 16px 18px;
  background: rgba(15, 58, 37, 0.46);
}

.quick-card span {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
}

.quick-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  background: var(--white);
}

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

.signature {
  margin-top: 26px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.owner-photo {
  margin: 0;
  justify-self: end;
  width: min(100%, 680px);
}

.owner-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.owner-award {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #eef0e8;
}

.owner-award figure {
  margin: 0;
}

.owner-award a {
  display: block;
  border-radius: 8px;
}

.owner-award img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.owner-award a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(16, 42, 28, 0.18);
}

.owner-award > div {
  max-width: 680px;
}

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

.course-moment {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #eef0e8;
}

.course-moment img {
  width: 100%;
  height: clamp(360px, 34vw, 560px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.course-moment > div {
  max-width: 680px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.golf-image {
  background: var(--green-2);
}

.golf-image::before,
.golf-image::after {
  position: absolute;
  content: "";
}

.golf-image::before {
  inset: -24%;
  background: url("assets/outings/outing-golfer-01-upright.jpg") center / contain no-repeat;
  transform: rotate(90deg);
}

.golf-image::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 79, 45, 0), rgba(22, 79, 45, 0.2));
}

.section-panel {
  max-width: 720px;
}

.section-panel > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.price-grid > div,
.membership-card,
.hours-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 44px rgba(23, 35, 27, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.price-grid > div:hover,
.membership-card:hover,
.hours-panel:hover,
.contact-card:hover,
.outing-feature-grid article:hover,
.planning-grid div:hover,
.menu-card:hover,
.restaurant-teaser-card:hover {
  border-color: rgba(213, 167, 77, 0.48);
  box-shadow: 0 22px 58px rgba(23, 35, 27, 0.14);
  transform: translateY(-3px);
}

.price-grid > div {
  padding: 22px;
}

.price-grid p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
  color: var(--muted);
}

.price-grid strong {
  color: var(--ink);
}

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

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

.membership-card {
  min-height: 250px;
  padding: 28px;
}

.membership-card.featured {
  color: var(--white);
  background: var(--green);
}

.membership-card p {
  margin-bottom: 22px;
  color: inherit;
  font-weight: 850;
}

.membership-card h3 {
  margin-bottom: 16px;
  font-size: 2.4rem;
  line-height: 1;
}

.membership-details {
  display: grid;
  gap: 7px;
}

.membership-details strong {
  margin-top: 8px;
  color: var(--green);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.membership-card.featured .membership-details strong {
  color: var(--gold);
}

.membership-details span {
  color: var(--muted);
}

.membership-card.featured .membership-details span {
  color: rgba(255, 255, 255, 0.78);
}

.note {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
}

.outing-preview {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.outing-preview-media img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.outing-preview-media {
  overflow: hidden;
  border-radius: 8px;
}

.outing-preview-media:hover img {
  transform: scale(1.025);
}

.outing-preview-copy {
  max-width: 620px;
}

.outing-preview-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.restaurant {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-2), var(--green));
}

.restaurant-copy {
  max-width: 720px;
}

.restaurant-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.hours-panel {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: rgba(248, 245, 238, 0.94);
}

.hours-panel h3 {
  font-size: 1.4rem;
}

.restaurant-teaser-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(248, 245, 238, 0.94);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.restaurant-teaser-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.restaurant-teaser-card:hover img {
  transform: scale(1.025);
}

.restaurant-teaser-card p {
  margin: 0;
  padding: 18px 20px;
  color: var(--green-2);
  font-weight: 850;
}

.restaurant-hero {
  --page-hero-image: url("assets/food/food-01.jpg");
}

.restaurant-overview {
  background: var(--white);
}

.overview-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.hours-intro h2 {
  margin-bottom: 24px;
}

.hours-intro p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hours-panel {
  padding: 40px;
  background: #f4f6f0;
  border-radius: 12px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .overview-content {
    grid-template-columns: 1fr;
  }
}

.restaurant-overview > div:first-child p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--green);
}

.food-gallery img {
  width: 100%;
  height: clamp(330px, 34vw, 560px);
  object-fit: cover;
  transition:
    filter 260ms ease,
    transform 700ms var(--ease-out);
}

.food-gallery img:hover {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.specials-section {
  background: #fbfaf6;
}

.specials-section[hidden] {
  display: none;
}

.specials-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.specials-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 35, 27, 0.08);
}

.specials-list h3 {
  margin-bottom: 8px;
}

.specials-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.restaurant-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.restaurant-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.menu-section {
  background: var(--white);
}

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

.menu-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-2);
  background: #fbfaf6;
  box-shadow: 0 14px 44px rgba(23, 35, 27, 0.08);
  font-weight: 850;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.menu-card[hidden] {
  display: none;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
  transition: transform 700ms var(--ease-out);
}

.menu-card:hover img {
  transform: scale(1.025);
}

.menu-card span {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
}

.menu-card span::after {
  content: "Open";
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  font-weight: 850;
}

dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

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

.gallery img {
  width: 100%;
  height: clamp(260px, 34vw, 520px);
  object-fit: cover;
  transition:
    filter 260ms ease,
    transform 700ms var(--ease-out);
}

.gallery img:hover {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.page-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 80px) 64px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-2);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 31, 19, 0.9), rgba(12, 31, 19, 0.5) 55%, rgba(12, 31, 19, 0.22)),
    var(--page-hero-image) center / cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.outings-hero {
  --page-hero-image: url("assets/outings/outing-drone-carts.jpg");
}

.page-hero-content {
  position: relative;
  max-width: 820px;
  animation: riseIn 820ms var(--ease-out) 120ms both;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.outing-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.15fr);
  gap: clamp(32px, 6vw, 86px);
  background: var(--white);
}

.outing-feature-grid,
.planning-grid {
  display: grid;
  gap: 16px;
}

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

.outing-feature-grid article,
.planning-grid div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: 0 14px 44px rgba(23, 35, 27, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.outing-feature-grid p,
.planning-grid p,
.outing-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.outing-planning {
  background: var(--paper);
}

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

.planning-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.outing-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(260px, 24vw, 430px);
  gap: 12px;
  padding: clamp(18px, 3vw, 48px);
  background: var(--green);
}

.outing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition:
    filter 260ms ease,
    transform 700ms var(--ease-out);
}

.outing-gallery img:hover {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-3px);
}

.outing-gallery .gallery-wide {
  grid-column: span 3;
}

.outing-gallery .gallery-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.outing-gallery .gallery-drone {
  object-position: center 45%;
}

.outing-gallery .gallery-group {
  object-position: center 20%;
}

.outing-gallery .gallery-action {
  object-position: center 42%;
}

.outing-gallery .gallery-cart-full {
  object-position: 42% 68%;
}

.outing-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.outing-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  background: var(--white);
}

address {
  margin: 24px 0;
  color: var(--muted);
  font-style: normal;
}

.contact-section a {
  color: var(--green);
  font-weight: 800;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-card h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.contact-card p {
  max-width: 560px;
  margin-bottom: 6px;
  color: var(--muted);
}



.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  min-height: 460px;
  background: var(--white);
}

.map-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 6vw, 80px);
}

.map-copy h2 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.78);
  background: #101b14;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .quick-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin-top: 38px;
  }

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

  .owner-photo {
    grid-column: 1 / -1;
    max-width: 640px;
  }

  .hero {
    align-items: center;
  }

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

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

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

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

  .outing-gallery .gallery-wide,
  .outing-gallery .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 69px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: #f0eadf;
  }

  .site-nav .nav-call {
    width: 100%;
    margin-top: 6px;
  }

  .site-nav .nav-call:hover {
    background: #e1b85d;
  }

  .hero {
    min-height: auto;
    padding: 132px 20px 46px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .quick-card {
    grid-template-columns: 1fr;
  }

  .intro,
  .owner-award,
  .course-moment,
  .split-section,
  .outing-preview,
  .outing-intro,
  .outing-cta,
  .restaurant-overview,
  .restaurant-cta,
  .restaurant,
  .map-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-image {
    min-height: 420px;
  }

  .price-grid,
  .membership-grid,
  .menu-grid,
  .specials-list,
  .outing-feature-grid,
  .planning-grid,
  .outing-gallery,
  .food-gallery,
  .gallery {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding: 132px 20px 46px;
  }

  .page-hero-content p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .outing-preview-media img {
    min-height: 300px;
  }

  .outing-gallery {
    grid-auto-rows: auto;
    padding: 16px;
  }

  .outing-gallery img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .outing-gallery .gallery-tall {
    aspect-ratio: 3 / 4;
  }

  .food-gallery img {
    height: 360px;
  }

  .map-section iframe {
    min-height: 340px;
  }

  .outing-gallery > * {
    grid-column: auto;
  }

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

  .gallery img {
    height: 310px;
  }

  dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  dd {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

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

/* Global Hover Animation for Images */
img {
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}
