/* =========================
   Base styles and variables
   ========================= */

:root {
  --page-bg: #f7e7d8;
  --text-main: #ca6a6b;
  --heading-hero: #fb9591;
  --heading-secondary: #c86c6b;
  --accent-soft: #f6b99d;
  --accent-medium: #e1ad98;
  --accent-tan: #c29d8a;
  --white: #ffffff;

  --radius-large: 1.75rem;
  --radius-pill: 999px;

  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.13);
  --shadow-subtle: 0 6px 18px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--page-bg);
  color: var(--text-main);
  line-height: 1.4;
  padding-top: 4.25rem;

}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

/* Layout utility */

.container {
  width: 90%;

  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   Typography
   ========================= */

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3rem);
  color: var(--heading-hero);
  letter-spacing: 0.02em;

}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  margin-top: 0.75rem;
  color: var(--heading-secondary);
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--heading-secondary);
}

p {
  margin: 0;
  font-size: 0.98rem;
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--text-main);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  background-color: transparent;
  border-color: var(--accent-soft);
  color: var(--text-main);
}

.btn-ghost:hover {
  background-color: rgba(246, 185, 157, 0.2);
}

.btn-nav {
  padding-inline: 1.4rem;
  font-size: 0.9rem;
}

.btn-footer {
  margin-top: 0.75rem;
  background-color: var(--accent-soft);
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.btn-footer:hover {
  background-color: var(--accent-medium);
}

/* =========================
   Header / Navigation
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(247, 231, 216, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

/* Logo */

.logo,
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-mark {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heading-secondary);
}

.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(202, 106, 107, 0.75);
}

.mobile-menu {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(202, 106, 107, 0.75);
}

/* Nav list */

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.nav-item > a,
.nav-link-dropdown {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  border: none;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-item > a:hover,
.nav-link-dropdown:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

/* Nav CTA */

.nav-cta .btn-nav {
  padding-block: 0.5rem;
  padding-inline: 1.3rem;
}

/* Hamburger */

.nav-toggle {
  display: none;
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(202, 106, 107, 0.35);
  background-color: var(--white);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

/* Dropdowns */

.has-dropdown {
  position: relative;
}

.dropdown-icon {
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: 2.1rem;
  left: 0;
  min-width: 12rem;
  padding: 0.65rem 0.75rem;
  border-radius: 1rem;
  background-color: #fdf7f2;
  box-shadow: var(--shadow-subtle);
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 15;
}

.dropdown-menu li + li {
  margin-top: 0.2rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.35rem 0.35rem;
  font-size: 0.86rem;
  color: var(--text-main);
  text-decoration: none;
  border-radius: 0.6rem;
}

.dropdown-menu a:hover {
  background-color: rgba(246, 185, 157, 0.3);
}

/* Desktop hover behaviour */

/* Mobile dropdown open (via JS) */

.dropdown-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: static;
  box-shadow: none;
  background-color: transparent;
  padding: 0.25rem 0;
}

/* =========================
   Hero
   ========================= */

.hero {
  padding: 3.75rem 0 0;

}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Hero text */

.hero-content {
  flex: 1 1 50%;

}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(202, 106, 107, 0.82);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(194, 157, 138, 0.45);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--accent-soft);
}

.hero-text {
  margin-top: 1.3rem;
  font-size: 0.98rem;
  color: rgba(202, 106, 107, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-meta {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background-color: rgba(246, 185, 157, 0.35);
  color: rgba(202, 106, 107, 0.9);
}

.dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: rgba(194, 157, 138, 0.9);
}

/* =========================
   Footer
   ========================= */

.site-footer {
  border-top: 1px solid rgba(194, 157, 138, 0.35);
  margin-top: 2.5rem;
  background: linear-gradient(to top, rgba(246, 185, 157, 0.2), rgba(247, 231, 216, 0.8));
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  padding: 2.8rem 1.5rem 1.8rem;
}

.footer-column {
  font-size: 0.9rem;
}

/* Brand column */

.footer-brand .footer-logo {
  margin-bottom: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
  text-decoration: none;
  font-size: 1rem;
}

.footer-social a:hover {
  transform: translateY(-1px);
}

/* Links column */

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.25rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(202, 106, 107, 0.92);
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Contact column */

.footer-contact-item + .footer-contact-item {
  margin-top: 0.4rem;
}

.footer-contact a {
  color: var(--text-main);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Bottom bar */

.footer-bottom {
  border-top: 1px solid rgba(194, 157, 138, 0.4);
  padding: 0.85rem 0 1rem;
}

.footer-bottom-inner {
  text-align: center;
}

.footer-bottom-inner p {
  font-size: 0.78rem;
  color: rgba(202, 106, 107, 0.88);
}

.footer-bottom-inner a {
  color: rgba(202, 106, 107, 0.95);
  text-decoration: none;
}

.footer-bottom-inner a:hover {
  text-decoration: underline;
}





/* =========================
   Services Section
========================= */

.services-section {
  margin-top: 3rem;
}

.services-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.services-accordion {
  max-width: 90%;
  margin: 0 auto;
}

/* Category toggles */

.services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem 1.1rem;
  margin-bottom: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(194, 157, 138, 0.55);
  background-color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.services-toggle::after {
  content: "▾";
  margin-left: auto;
  font-size: 0.85rem;
  transition: transform 0.18s ease;
}

.services-toggle.is-open {
  background-color: var(--accent-soft);
  border-color: rgba(202, 106, 107, 0.75);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-1px);
}

.services-toggle.is-open::after {
  transform: rotate(180deg);
}

/* Panels */

.services-panel {
  display: none;
  padding: 0.8rem 0 1.5rem;
}

.services-panel.is-open {
  display: block;
}

/* Cards */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: #ffffff;
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(194, 157, 138, 0.25);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  color: var(--heading-secondary);
}

.service-card p {
  margin-bottom: 1.1rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Mobile tweaks */

/* =========================
   About Section
========================= */

.about-section {
  margin-top: 3.5rem;
  padding: 3rem 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4em;
  padding: 0 0 0 0;
  width: 100%;

}

.about-image {
  flex: 1 1 50%;
}

.about-image img {
  
  border-radius: var(--radius-large);

}

.about-hero-img {
  
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-large);
  display: block;
}

.about-content {
  flex: 1 1 50%;
  padding-left: 20%;

}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p + p {
  margin-top: 0.9rem;
}

/* Mobile */

/* =========================
   Reviews Section
========================= */

.reviews-section {
  margin-top: 3.5rem;
  padding: 3rem 0;

}

.reviews-title {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card {
  background-color: var(--white);
  padding: 1.6rem 1.5rem 1.8rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(194, 157, 138, 0.25);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--heading-secondary);
  letter-spacing: 0.25em;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}

.review-author {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(202, 106, 107, 0.85);
}

/* Responsive */

/* =========================
   Location Section
========================= */

.location-section {

  padding: 3.2rem 0;

}

.location-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.location-details {
  flex: 1 1 55%;
}

.location-address {
  font-weight: 600;
  margin: 1rem 0 1.4rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
}

.location-block h3 {
  margin-bottom: 0.5rem;
}

.location-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-block li + li {
  margin-top: 0.25rem;
}

.location-block a {
  color: var(--text-main);
  text-decoration: none;
}

.location-block a:hover {
  text-decoration: underline;
}

.location-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: rgba(202, 106, 107, 0.85);
}

.location-map {
  flex: 1 1 45%;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 680px;
  min-width: 370px;
  border: none;

}

/* Mobile */

/* Nav phone */

.nav-phone a {
  font-weight: 600;
  color: var(--heading-secondary);
  letter-spacing: 0.05em;
}

.nav-phone a:hover {
  text-decoration: underline;
}

/* =========================
   Services v2 (Deals + prices + hover glow)
   ========================= */

.services-v2 {
  padding: 3.2rem 0;
}

.services-v2-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.services-v2-sub {
  margin-top: 0.6rem;
  max-width: 62ch;
  margin-inline: auto;
  color: rgba(202, 106, 107, 0.88);
}

/* Deals row */

.services-deals {
  margin-top: 1.4rem;
  margin-bottom: 2.2rem;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-large);
  background: rgba(246, 185, 157, 0.22);
  border: 1px solid rgba(194, 157, 138, 0.35);
}

.services-deals-title {
  margin-bottom: 1rem;
  text-align: left;
  color: var(--heading-secondary);
}

.services-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.deal-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 157, 138, 0.28);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-subtle);
  padding: 1.25rem 1.25rem 1.35rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.deal-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(202, 106, 107, 0.75);
  margin-bottom: 0.4rem;
}

.deal-name {
  margin: 0;
  color: var(--heading-secondary);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.deal-price {
  margin: 0.75rem 0 0.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.deal-desc {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

@media (hover: hover) and (pointer: fine) {
  .deal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(202, 106, 107, 0.55);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  }
}

/* Services cards with prices */

.services-accordion-v2 {
  max-width: 90%;
  margin: 0 auto;
}

.services-grid-v2 {
  gap: 1.25rem;
}

.service-card-v2 {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.service-price {
  margin: 0;
  font-weight: 800;
  background: rgba(246, 185, 157, 0.25);
  border: 1px solid rgba(194, 157, 138, 0.35);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .service-card-v2:hover {
    transform: translateY(-3px);
    border-color: rgba(202, 106, 107, 0.55);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  }

  .service-card-v2:hover .service-price {
    background: rgba(246, 185, 157, 0.4);
    border-color: rgba(202, 106, 107, 0.55);
  }
}

.location-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(202, 106, 107, 0.85);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   Packages Section
========================= */

.packages-section {
  padding: 3.5rem 0;
}

.packages-title {
  text-align: center;
  margin-bottom: 2.2rem;
  color: #c86c6b;
}

.location-title{
  text-align: center;
  margin-bottom: 2.2rem;
  color: #c86c6b;
}

.contactus-title{
  text-align: center;
  margin-bottom: 2.2rem;
  color: #c86c6b;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.package-card {
  background-color: var(--white);
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(194, 157, 138, 0.25);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.package-card h3 {
  margin-bottom: 0.5rem;
  color: var(--heading-secondary);
}

.package-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.package-card p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.package-note {
  font-size: 0.85rem;
  color: rgba(202, 106, 107, 0.85);
}

.package-card .btn {
  margin-top: auto;
}

/* Mobile */

/* =========================
   Contact Section
   ========================= */

.contact-section{
  padding: 3.5rem 0;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-card{
  background: #ffffff;
  border-radius: var(--radius-large);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(194, 157, 138, 0.35);
}

.contact-card-alt{
  background: #f6b99d;
  border: 1px solid rgba(202, 106, 107, 0.35);
}

.section-eyebrow{
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(202, 106, 107, 0.88);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(247, 231, 216, 0.75);
  margin-bottom: 0.75rem;
}

.page-title{
  margin: 0 0 0.6rem;
  color: #fb9591;
  line-height: 1.1;
}

.contact-subtext{
  margin: 0 0 1.15rem;
  color: rgba(202, 106, 107, 0.92);
}

.contact-form{
  display: grid;
  gap: 0.9rem;
}

.form-row{
  display: grid;
  gap: 0.35rem;
}

.form-row label{
  font-weight: 700;
  color: #c86c6b;
}

.form-row input,
.form-row textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(194, 157, 138, 0.55);
  background: #f7e7d8;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: #ca6a6b;
  outline: none;
}

.form-row textarea{
  resize: vertical;
  min-height: 150px;
}

.form-row input:focus,
.form-row textarea:focus{
  border-color: rgba(202, 106, 107, 0.75);
  box-shadow: 0 0 0 4px rgba(225, 173, 152, 0.35);
}

.contact-methods{
  display: grid;
  gap: 0.95rem;
  margin-top: 0.75rem;
}

.contact-method h3{
  margin: 0 0 0.25rem;
  color: #c86c6b;
}

.contact-method p{
  margin: 0.15rem 0;
}

.contact-method a{
  color: #ca6a6b;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-note{
  color: rgba(202, 106, 107, 0.9);
  font-size: 0.95rem;
}

.contact-social{
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.contact-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(247, 231, 216, 0.85);
  color: #ca6a6b;
  border: 1px solid rgba(202, 106, 107, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-social a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(202, 106, 107, 0.18);
}

.contact-disclaimer{
  margin-top: 1.1rem;
}

/* Screen reader only */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */

/* =========================
   Booking Section
========================= */

.booking-section{
  padding: 3.5rem 0;
}

.booking-head{
  text-align: center;
  margin-bottom: 1.25rem;
}

.booking-title{
  text-align: center;
  margin-bottom: 0.6rem;
  color: #c86c6b;
}

.booking-sub{
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(202, 106, 107, 0.9);
}

.booking-card{
  margin-top: 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-large);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(194, 157, 138, 0.35);
}

.booking-iframe-wrap{
  width: 100%;
  border-radius: calc(var(--radius-large) - 0.4rem);
  overflow: hidden;
  border: 1px solid rgba(194, 157, 138, 0.25);
  background: rgba(246, 185, 157, 0.14);
  min-height: 720px;
}

.booking-iframe{
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  background: transparent;
}

.booking-fallback{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.booking-fallback-text{
  margin: 0;
  color: rgba(202, 106, 107, 0.9);
}

/* =========================
   Gift Cards Section
========================= */

.giftcards-section{
  padding: 3.5rem 0;
}

.giftcards-title{
  text-align: center;
  margin-bottom: 2.2rem;
  color: #c86c6b;
}

.giftcards-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.giftcards-content{
  background: #ffffff;
  border-radius: var(--radius-large);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(194, 157, 138, 0.35);
}

.giftcards-subtext{
  margin: 0.85rem 0 1.15rem;
  color: rgba(202, 106, 107, 0.92);
}

.giftcards-points{
  display: grid;
  gap: 0.95rem;
  margin-top: 0.9rem;
}

.giftcards-point{
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(246, 185, 157, 0.22);
  border: 1px solid rgba(194, 157, 138, 0.28);
}

.giftcards-point h3{
  margin: 0 0 0.25rem;
  color: #c86c6b;
}

.giftcards-point p{
  margin: 0;
  color: rgba(202, 106, 107, 0.92);
}

.giftcards-fallback{
  margin-top: 1.15rem;
  font-size: 0.92rem;
  color: rgba(202, 106, 107, 0.92);
}

.giftcards-link{
  color: #ca6a6b;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 700;
}

.giftcards-embed{
  background: #ffffff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(194, 157, 138, 0.35);
  overflow: hidden;
  min-height: 680px;
}

.giftcards-iframe{
  width: 100%;
  height: 100%;
  min-height: 680px;
  border: 0;
  display: block;
  background: #ffffff;
}

/* Responsive */

/* =========================
   Responsive
   ========================= */

@media (min-width: 769px) {
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 900px) {
.hero-container {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .hero-visual {
    width: 100%;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .about-section {
    margin-top: 0;
    padding-top: 0;
  }

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

  .hero-meta {
    font-size: 0.7rem;
  }

  .hero-eyebrow {
    font-size: .6rem;
  }

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

  .reviews-section {
  margin-top: 0;
  padding-top: 0;
}

.location-container {
    flex-direction: column;
  }

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

  .location-map iframe {
    min-height: 380px;
    
  }

  .location-section {
    margin-top: 0;
    padding: 0;
}





.contact-grid{
    grid-template-columns: 1fr;
  }
  .page-title{
    font-size: clamp(1.8rem, 4vw, 2.3rem);
  }

.booking-iframe-wrap{
    min-height: 620px;
  }
  .booking-iframe{
    height: 620px;
  }
  .booking-section, .services-v2{
  padding-top: 0;
}
.giftcards-section {
    padding-top: 0;
}

.giftcards-section {
    padding-top: 0;
}
.packages-section {
    padding-top: 0;
}
.contact-section {
    padding-top: 0;
}

.giftcards-container{
    grid-template-columns: 1fr;
  }
  .giftcards-embed{
    min-height: 560px;
  }
  .giftcards-iframe{
    min-height: 560px;
  }
}

@media (max-width: 768px) {
.nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 4.25rem;
    background-color: rgba(247, 231, 216, 0.98);
    border-bottom: 1px solid rgba(194, 157, 138, 0.3);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .site-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-list {
    flex-direction: column;

    padding: 0.8rem 1.5rem 1.2rem;

  }

  .site-nav{
    display: block;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn-nav {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding-top: 2.2rem;
    padding-bottom: 1.6rem;
  }

  .footer-column + .footer-column {
    border-top: 1px solid rgba(194, 157, 138, 0.3);
    padding-top: 1.4rem;
  }

.hero{
    padding-top: 0;
}

.hero-visual{
    padding-top: 5%;
}

  .hero-container{
    display: block;
  }

  .container{
    width: 100%;
    padding: 2% 2% 2% 2%;
  }
}

@media (max-width: 480px) {
.hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

.booking-iframe-wrap{
    min-height: 560px;
  }
  .booking-iframe{
    height: 560px;
  }
  .booking-fallback{
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
.services-toggle {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .service-card {
    padding: 1.1rem 1.1rem 1.3rem;
  }

.service-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-price {
    margin-top: 0.25rem;
  }

.packages-section {
    padding: 2.5rem 0;
  }
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem 1.1rem;
  margin-bottom: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(194, 157, 138, 0.55);
  background-color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.faq-toggle::after {
  content: "▾";
  margin-left: auto;
  font-size: 0.85rem;
  transition: transform 0.18s ease;
}

.faq-toggle.is-open {
  background-color: var(--accent-soft);
  border-color: rgba(202, 106, 107, 0.75);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-1px);
}

.faq-toggle.is-open::after {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0.8rem 0 1.5rem;
}

.faq-panel.is-open {
  display: block;
}

/* =========================
   Tablet fixes (800px portrait, 1180px landscape)
   Add at the very bottom of main.css
   ========================= */

/* Clean up "almost desktop" widths like 1180px */
@media (max-width: 1200px) {
  /* Header spacing so nav doesn't look cramped */
  .nav-list {
    gap: 0.75rem;
    font-size: 0.86rem;
  }

  /* 3-up reviews is tight on tablets */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Prevent map column from forcing awkward widths */
  .location-map iframe {
    min-width: 0;
  }
}

/* Mobile nav should start at tablet portrait (800) -> use 900 to cover it cleanly */
@media (max-width: 900px) {
  /* Mobile nav toggle ON */
  .nav-toggle {
    display: inline-flex;
  }

  /* Convert the nav into the dropdown panel */
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 4.25rem;
    display: block;
    background-color: rgba(247, 231, 216, 0.98);
    border-bottom: 1px solid rgba(194, 157, 138, 0.3);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .site-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.8rem 1.25rem 1.2rem;
  }

  /* Fix the map overflow (your current min-width:120% causes horizontal scroll) */
  .location-map iframe {
    width: 100%;
    min-width: 0;
    min-height: 380px;
  }

  /* Reviews should be single column on tablet portrait */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
/* HERO layout: side by side from 1200 down to 768, content first, image second */

.hero-container{
  display:flex;
  align-items:center;
  gap:2rem;
}

@media (min-width: 768px) and (max-width: 3000px){
  .hero-container{
    flex-direction:row;
  }
  .hero-content{ order:1; flex:1 1 0; min-width:0; }
  .hero-visual{ order:2; flex:1 1 0; min-width:0; }

  .hero-visual .img{
    width:100%;
    height:auto;
    display:block;
  }

  .container {
  width: 99%;

  margin: 0 auto;
  padding: 0 0;
}
}

@media (max-width: 767px){
  .hero-container{
    flex-direction:column;
  }
  .hero-content{ order:1; width:100%; }
  .hero-visual{ order:2; width:100%; }

  .hero-visual .img{
    width:100%;
    height:auto;
    display:block;
  }
}
/* ABOUT section: 60/40 layout, text left, image right */

/* Base */
.about-container{
  display:flex;
  align-items:center;
  gap:2rem;
}

/* 1200 -> 768 */
@media (min-width: 768px) and (max-width: 3000px){
  .about-container{
    flex-direction:row;
  }

  .about-content{
    order:1;
    flex:0 0 60%;
    max-width:60%;
    min-width:0;
  }

  .about-visual{
    order:2;
    flex:0 0 40%;
    max-width:40%;
    min-width:0;
  }

  .about-visual img{
    width:100%;
    height:auto;
    display:block;
  }

  
}

/* Mobile */
@media (max-width: 767px){
  .about-container{
    flex-direction:column;
  }

  .about-content,
  .about-visual{
    flex:0 0 100%;
    max-width:100%;
  }

  .about-visual img{
    width:100%;
    height:auto;
    display:block;
  }
}
/* ABOUT: side by side from 1200 down to 768, text left 60% and image right 40% */
@media (min-width: 768px) and (max-width: 3000px){
  .about-container{
    display:flex !important;
    flex-direction:row !important;
    align-items:center;
    gap:2rem;
  }

  .about-content{
    flex:0 0 60% !important;
    max-width:60% !important;
    padding-left:0 !important;
    padding-right:0 !important;
    order:1 !important;
    min-width:0;
  }

  .about-image{
    flex:0 0 40% !important;
    max-width:40% !important;
    order:2 !important;
    min-width:0;
  }

  .about-image img{
    width:100%;
    height:auto;
    display:block;
  }
}

/* ABOUT: stack only on mobile */
@media (max-width: 767px){
  .about-container{
    flex-direction:column !important;
  }

  .about-content,
  .about-image{
    flex:0 0 100% !important;
    max-width:100% !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }
}

/* ABOUT: 50/50 on 1200-768, image on right, padding on image right, stack only on mobile */
@media (min-width: 768px) and (max-width: 3000px){
  .about-container{
    display:flex;
    flex-direction:row;
    align-items:center;
  }

  .about-content{
    order:1;
    flex:1 1 50%;
    max-width:50%;
    padding-left:0;
    padding-right:0;
  }

  .about-image{
    order:2;
    flex:1 1 50%;
    max-width:50%;
    padding-right:1.5rem;
  }

  .about-image img{
    width:100%;
    height:auto;
    display:block;
  }
}

@media (max-width: 767px){
  .about-container{ flex-direction:column; }
  .about-image{ padding-right:0; }
}

/* Mobile nav: align the whole menu to the right on tablet mobile nav */
@media (max-width: 900px){
  .nav-list{
    align-items: flex-end;
    text-align: right;
    width: 100%;
  }

  .nav-item,
  .nav-item > a,
  .nav-link-dropdown{
    justify-content: flex-end;
    width: 100%;
  }

  .dropdown-menu a{
    text-align: right;
  }

  .nav-cta{
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .nav-cta .btn-nav{
    width: auto;
  }
}

/* Fix iPad portrait map: stop overflow and keep it full width */
@media (max-width: 900px){
  .location-map{
    width: 100%;
  }

  .location-map iframe{
    width: 100%;
    min-width: 0;
    height: 420px;
    min-height: 420px;
    display: block;
  }
}

/* ABOUT HERO TABLET LAYOUT — matches diagram exactly */
@media (min-width: 768px) and (max-width: 3000px){

  /* Top text stays full width */
  .hero-content{
    max-width: 99%;
  }

  /* Bottom split layout */
  .hero-split{
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
  }

  .hero-text-secondary{
    grid-column: 1 / 2;
  }

  .hero-split .hero-visual{
    grid-column: 2 / 3;
  }

  .hero-split .hero-visual img{
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Mobile: stack everything */
@media (max-width: 767px){
  .hero-split{
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .hero-visual {
        
        PADDING-RIGHT: 2em;
    }
}

/* FIX: about hero image overflowing on mobile */
@media (max-width: 767px){
  .hero-visual,
  .about-hero-img{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about-hero-img{
    height: auto;
    display: block;
    object-fit: cover;
  }

  .hero-container,
  .hero-split{
    width: 100%;
    max-width: 100%;
  }
}
/* GLOBAL FIX: prevent about images from overflowing on mobile */
@media (max-width: 767px){
  .about-image,
  .hero-visual{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about-image img,
  .about-hero-img{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
}

/* Index About section: add 20% side padding on large screens only */
@media (min-width: 1400px){
  .about-section .about-container{
    padding-left: 20%;
    padding-right: 20%;
  }
  .container {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* =========================
   Booking Success Section
========================= */

.booking-success-section {
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.booking-success-container {
  max-width: 680px;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(194, 157, 138, 0.35);
}

.booking-success-title {
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  color: var(--heading-hero);
}

.booking-success-text {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(202, 106, 107, 0.9);
  margin-bottom: 1.8rem;
}

.booking-success-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile adjustments */

@media (max-width: 480px) {
  .booking-success-container {
    padding: 2rem 1.4rem;
  }

  .booking-success-title {
    font-size: 1.9rem;
  }
}


