:root {
  --sea: #0b7a9c;
  --sea-dark: #075a75;
  --sea-deep: #06465b;
  --sun: #e8a13c;
  --sand: #faf6ec;
  --sand-mid: #f2ead6;
  --sand-dark: #e5d9bc;
  --ink: #16262b;
  --ink-soft: #52666b;
  --white: #ffffff;
  --green: #2f7d4f;
  --radius: 16px;
  --shadow-sm: 0 4px 14px rgba(8, 60, 78, 0.08);
  --shadow: 0 16px 40px rgba(8, 60, 78, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 60, 78, 0.18);
  --max-width: 1160px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(250, 246, 236, 0.97);
  border-bottom-color: var(--sand-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--sea-dark);
  letter-spacing: -0.01em;
}
.logo span { color: var(--ink); font-weight: 400; }

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--sea);
  transition: right 0.2s ease;
}
.main-nav a:not(.nav-cta):hover::after { right: 0; }
.main-nav a:hover { color: var(--sea-dark); }
.main-nav .nav-cta {
  background: var(--sea);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, transform 0.15s ease;
}
.main-nav .nav-cta:hover { background: var(--sea-dark); color: var(--white); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(232,161,60,0.18), transparent 50%),
    linear-gradient(160deg, var(--sea-deep) 0%, var(--sea-dark) 45%, var(--sea) 100%);
  color: var(--white);
  padding: 130px 0 130px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}
.hero-wave path { fill: var(--white); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 18px;
  color: var(--sun);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  opacity: 0.92;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--white); color: var(--sea-dark); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.btn-primary:hover { background: var(--sand); }
.btn-outline { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.contact .btn-outline, .location .btn-outline {
  border-color: var(--sea);
  color: var(--sea-dark);
}
.contact .btn-outline:hover, .location .btn-outline:hover { background: rgba(11,122,156,0.08); }

/* Intro */
.intro {
  padding: 70px 0;
  background: var(--white);
}
.intro p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* Sections generic */
section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-align: center;
  color: var(--sea-dark);
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 1.02rem;
}

/* Activities */
.activities { padding: 90px 0; background: var(--sand); }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.activity-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sea);
}
.activity-icon {
  font-size: 2rem;
  margin: 0 auto 14px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-mid);
  border-radius: 50%;
}
.activity-card h3 { font-size: 1.1rem; color: var(--ink); }
.activity-card p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* Pricing */
.pricing { padding: 90px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border: 2px solid var(--sea);
  box-shadow: var(--shadow);
}
.pricing-card.featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: var(--sea-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0;
}
.pricing-card h3 { color: var(--sea-dark); font-size: 1.15rem; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  margin: 10px 0;
}
.pricing-card .price span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: left;
}
.pricing-card ul li {
  padding: 8px 2px;
  border-top: 1px solid var(--sand-dark);
}
.pricing-card ul li:first-child { border-top: none; }
.pricing-note {
  text-align: center;
  color: var(--ink-soft);
  margin-top: 38px;
  font-size: 0.95rem;
}

/* Reviews */
.reviews { padding: 90px 0; background: var(--sand); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--sand-mid);
  line-height: 1;
  z-index: 0;
}
.review-card .stars {
  color: var(--sun);
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.review-card p { color: var(--ink-soft); font-size: 0.96rem; position: relative; }
.review-card .reviewer {
  margin-top: 16px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

/* Gallery */
.gallery { padding: 90px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-item.ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sea), var(--green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  opacity: 0.9;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item.ph:hover { transform: scale(1.03); box-shadow: var(--shadow); }

/* Location */
.location { padding: 90px 0; background: var(--sand); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-text h2 { text-align: left; }
.location-details {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  color: var(--ink-soft);
}
.location-details li { margin-bottom: 10px; }
.location-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Opening times */
.opening-times { padding: 90px 0; background: var(--white); }
.hours-table {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hours-table td {
  padding: 18px 26px;
  border-bottom: 1px solid var(--sand-dark);
  font-weight: 500;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }

/* Contact */
.contact { padding: 90px 0; background: var(--sand); }
.contact-inner { max-width: 640px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 13px 15px;
  border-radius: 9px;
  border: 1px solid var(--sand-dark);
  background: var(--sand);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sea);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,122,156,0.15);
}
.contact-form button {
  align-self: flex-start;
  background: var(--sea);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.contact-form button:hover { background: var(--sea-dark); }
.form-note { color: var(--green); font-weight: 600; }

/* Footer */
.site-footer {
  padding: 34px 0;
  background: var(--sea-deep);
  color: var(--sand);
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-text h2 { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--sand);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--sand-dark);
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .contact-form { padding: 24px; }
}
