@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");

/* Site-wide: design tokens, base type, main nav, hero, sections,
   waves, promos, forms, footer, utilities, and global breakpoints. */

:root {
  --bg-primary: #fcefef;
  --bg-cream: #f1e8da;
  --bg-cream-dark: #ded4c4;
  --brand-blue: #1cb7d4;
  --brand-blue-light: #7fd8be;
  --gray: #a9a9a9;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-muted: #666666;
  --coral: #ff8a75;
  --coral-light: #ffb4a2;
  --coral-bg: #fff5f2;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Helvetica Neue", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-max: 15px;

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);

  --site-frame-inset: 15px;
  --site-frame-radius: 24px;
  --site-frame-border: rgb(255, 255, 255);
  --page-frame-inner-radius: 16px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
}

@supports (height: 100dvh) {
  html {
    min-height: 100dvh;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

/* Fill viewport when main content is short; footer stays at bottom */
.page-frame-inner {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.page-frame-inner > footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h2::after {
  content: "";
  display: block;
  width: 120px;
  max-width: 100%;
  height: 3px;
  margin-top: 0.6em;
  background: var(--brand-blue);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #1595a8;
}

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

/* ========== MAIN NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  min-height: 80px;
  height: auto;
  padding: 10px 16px;
  box-sizing: border-box;
  background: var(--site-frame-border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px 12px;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-link {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.65vw, 1.12rem);
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-blue);
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 80%;
}

.nav-link[aria-current="page"] {
  color: var(--brand-blue);
}

.nav-link[aria-current="page"]::after {
  width: 80%;
}

.nav-dropdown {
  position: relative;
  flex-shrink: 0;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.65vw, 1.12rem);
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 12px 8px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--brand-blue);
  outline: none;
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  width: 80%;
}

.nav-dropdown:has(.nav-dropdown-link[aria-current="page"])
  .nav-dropdown-toggle {
  color: var(--brand-blue);
}

.nav-dropdown:has(.nav-dropdown-link[aria-current="page"])
  .nav-dropdown-toggle::after {
  width: 80%;
}

.nav-dropdown-toggle:focus-visible {
  box-shadow: 0 0 0 2px rgba(28, 183, 212, 0.35);
}

.nav-dropdown-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-top: 2px;
  opacity: 0.75;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s ease;
}

.nav-dropdown-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  color: var(--brand-blue);
  outline: none;
}

.nav-dropdown-link:hover::after,
.nav-dropdown-link:focus-visible::after {
  width: 72%;
}

.nav-dropdown-link[aria-current="page"] {
  color: var(--brand-blue);
}

.nav-dropdown-link[aria-current="page"]::after {
  width: 72%;
}

.nav .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav .logo img {
  height: 52px;
  width: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.28s ease;
}

.nav .logo:hover img,
.nav .logo:focus-visible img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .nav .logo img {
    transition: none;
  }

  .nav .logo:hover img,
  .nav .logo:focus-visible img {
    transform: none;
  }
}

.nav-reserve-btn {
  flex-shrink: 0;
  padding: 11px 24px;
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
  letter-spacing: 0.45px;
}

.nav-reserve-text-short {
  display: none;
}

/* Mobile menu toggle + drawer (visible ≤768px) */
.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
}

.nav-menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(28, 183, 212, 0.45);
}

.nav-menu-toggle-inner {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-menu-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-menu-toggle.is-open .nav-menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-toggle.is-open .nav-menu-bar:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle.is-open .nav-menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu-bar {
    transition: none;
  }
}

.nav-mobile-backdrop {
  display: none;
}

.nav-mobile-panel {
  display: none;
  box-sizing: border-box;
}

.nav-mobile-inner {
  padding: 8px 0 16px;
}

.nav-mobile-heading {
  margin: 16px 20px 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-mobile-heading:first-child {
  margin-top: 4px;
}

.nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-link {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-cream-dark);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-mobile-list li:last-child .nav-mobile-link {
  border-bottom: none;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  color: var(--brand-blue);
  background: var(--bg-cream);
  outline: none;
}

.nav-mobile-link[aria-current="page"] {
  color: var(--brand-blue);
  font-weight: 600;
}

body.nav-mobile-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "menu logo reserve";
    align-items: center;
    gap: 8px;
    position: relative;
    border-radius: 0;
  }

  .nav-menu-toggle {
    grid-area: menu;
    display: inline-flex;
    justify-self: start;
  }

  .nav .logo {
    grid-area: logo;
    justify-self: center;
  }

  .nav-primary {
    display: none !important;
  }

  .nav-reserve-btn {
    grid-area: reserve;
    justify-self: end;
    padding: 9px 12px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap;
  }

  .nav-reserve-text-full {
    display: none;
  }

  .nav-reserve-text-short {
    display: inline;
  }

  .nav-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(30, 40, 55, 0.42);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-mobile-backdrop.is-open {
    display: block;
  }

  .nav-mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1002;
    max-height: min(72vh, calc(100dvh - 4.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-medium);
  }

  .nav-mobile-panel.is-open {
    display: block;
  }
}

@media (min-width: 769px) {
  .nav-menu-toggle {
    display: none !important;
  }

  .nav-mobile-backdrop,
  .nav-mobile-panel {
    display: none !important;
  }

  .nav-link,
  .nav-dropdown-toggle {
    white-space: nowrap;
  }
}

/* Smaller desktop: short Reserve CTA only (link sizing stays at default) */
@media (min-width: 769px) and (max-width: 1199px) {
  .nav-reserve-text-full {
    display: none !important;
  }

  .nav-reserve-text-short {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .nav-reserve-text-full {
    display: inline !important;
  }

  .nav-reserve-text-short {
    display: none !important;
  }
}

/* Decorative nav tab corners: hidden by default; enabled in home.css for .site-framed */
.nav::before,
.nav::after {
  display: none;
}

.reserve-btn {
  background: var(--brand-blue);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: var(--radius-max);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--brand-blue);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-block;
}

.reserve-btn:hover {
  background: var(--white);
  color: var(--brand-blue) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 4;
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-family: var(--font-body);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* ========== REAL WAVE EDGES ========== */
.wavy-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: var(--bg-primary);
  border-radius: var(--radius-max);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin: 40px auto;
  max-width: 1100px;
}

.wavy-panel.reverse {
  direction: rtl;
}

.wavy-panel.reverse > * {
  direction: ltr;
}

/* Image column matches the full height of the card (taller of the two columns) */
.wavy-panel.wavy-panel--full-height-image {
  align-items: stretch;
}

.wavy-panel-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.wavy-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Beach wave divider using SVG data URI */
.wave-divider {
  position: absolute;
  top: 0;
  right: -1px;
  width: 80px;
  height: 100%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 400' preserveAspectRatio='none'%3E%3Cpath d='M80 0 Q40 25 60 50 Q80 75 40 100 Q0 125 50 150 Q80 175 30 200 Q0 225 60 250 Q80 275 40 300 Q0 325 50 350 Q80 375 40 400 L80 400 Z' fill='%23fcefef'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.wavy-panel.reverse .wave-divider {
  right: auto;
  left: -1px;
  transform: scaleX(-1);
}

.wavy-panel-content {
  padding: 48px 40px;
}

.wavy-panel-content h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.wavy-panel-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ========== PROMO BUTTONS ========== */
.promo-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px);
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto;
}

/* Home (and elsewhere): consistent tile height when using PromoButtonsRow */
.promo-buttons--uniform .promo-btn {
  height: 280px;
}

.promo-btn {
  position: relative;
  width: 400px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-max);
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-soft);
}

.promo-btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
  z-index: 1;
}

.promo-btn span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
}

.promo-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.promo-btn:hover img {
  transform: scale(1.1);
}

.promo-btn:hover .promo-btn-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* ========== SECTIONS ========== */
.section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-cream);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== AMENITIES GRID ========== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.amenity-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.amenity-card-icon {
  display: block;
  flex-shrink: 0;
  color: var(--brand-blue);
}

.amenity-body {
  width: 100%;
  text-align: center;
}

.amenity-title {
  font-size: 1rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 500;
  margin: 0;
}

.amenity-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .amenities-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }

  .amenity-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--bg-cream-dark);
  }

  .amenity-card:last-child {
    border-bottom: none;
  }

  .amenity-card:hover {
    transform: none;
    box-shadow: none;
  }

  .amenity-icon {
    margin-bottom: 0;
    margin-right: 16px;
    line-height: 0;
  }

  .amenity-body {
    text-align: left;
    flex: 1;
    min-width: 0;
  }

  .amenity-title {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .amenity-detail {
    font-size: 0.78rem;
    margin-top: 6px;
  }
}
/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bg-cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-blue);
}

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

.form-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-max);
  box-shadow: var(--shadow-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* Radio/checkbox inline */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}

.radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--brand-blue);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-max);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--brand-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-outline:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-coral:hover {
  background: var(--white);
  color: var(--coral);
}

.btn-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
  border-color: var(--bg-cream-dark);
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-cream-dark);
  padding: 32px 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.footer-section p,
.footer-section a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--brand-blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--white);
  color: var(--brand-blue);
  transform: translateY(-3px);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-cream);
  color: var(--gray);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text-dark);
  outline: none;
}

/* ========== SKINNY IMAGE BREAK ========== */
.skinny-break {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.skinny-break-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.skinny-break-overlay h2 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

/* ========== PHOTO GALLERY GRIDS ========== */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.photo-grid-3 img,
.photo-grid-3 .placeholder-img {
  border-radius: var(--radius-md);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 16px auto 0;
}

.photo-grid-2 img,
.photo-grid-2 .placeholder-img {
  border-radius: var(--radius-md);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* ========== GRAPHIC ELEMENTS / VICTORIAN ACCENTS ========== */
.victorian-border {
  position: relative;
}

.victorian-border::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--bg-cream-dark);
  border-radius: calc(var(--radius-max) + 8px);
  pointer-events: none;
  opacity: 0.5;
}

.corner-accent {
  position: relative;
}

.corner-accent::before,
.corner-accent::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--brand-blue);
  opacity: 0.3;
}

.corner-accent::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.corner-accent::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-img {
  background: var(--bg-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  min-height: 200px;
  border-radius: var(--radius-md);
}

.placeholder-img::before {
  content: "📷 Photo Coming Soon";
}

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .wavy-panel,
  .wavy-panel.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .wavy-panel > * {
    direction: ltr;
  }
  .wavy-panel-image {
    min-height: 250px;
    order: -1;
  }
  .wave-divider {
    display: none;
  }
  .promo-buttons {
    grid-template-columns: 1fr;
  }
  .promo-btn,
  .promo-buttons--uniform .promo-btn {
    height: 200px;
    width: 100%;
    max-width: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .photo-grid-3,
  .photo-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 8px 12px;
    gap: 8px;
  }
  .nav .logo img {
    height: 44px;
  }
  .nav-reserve-btn {
    padding: 9px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
  }
  .nav-primary {
    justify-content: flex-start;
  }
  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .section {
    padding: 40px 16px;
  }
  .wavy-panel-content {
    padding: 32px 24px;
  }
  .palm-left,
  .palm-right {
    display: none;
  }
}
