:root {
  --bg: #f7fdfe;
  --card: #ffffff;
  --text: #2c4b52;
  --muted: #6c8a90;
  --teal-deep: #1f6b76;
  --teal: #3aa3ac;
  --teal-soft: #d3eef0;
  --border: #dcecee;
  --gradient-hero: linear-gradient(135deg, #fbfeff 0%, #dff2f4 55%, #bfe4e8 100%);
  --gradient-teal: linear-gradient(135deg, #3aa3ac 0%, #1f6b76 100%);
  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f0fafb 100%);
  --shadow-soft: 0 18px 45px -22px rgba(31, 107, 118, 0.35);
  --shadow-glow: 0 25px 60px -25px rgba(31, 107, 118, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: "Playfair Display", Georgia, serif; font-weight: 500; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
section { padding: 96px 0; }
.bg-white { background: var(--bg); }
.bg-soft { background: var(--gradient-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 14px 30px; border-radius: 999px;
  background: var(--gradient-teal); color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-glow); filter: saturate(1.1); }
.btn-outline {
  background: transparent; color: var(--teal-deep);
  border: 1px solid var(--teal); box-shadow: none;
}
.btn-outline:hover { background: var(--teal-soft); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -18px rgba(31, 107, 118, .6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; max-width: 1120px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 2px var(--teal-soft); }
.brand span { font-family: "Playfair Display", serif; color: var(--teal-deep); font-size: 18px; }
.nav-links { display: none; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: rgba(44, 75, 82, .8); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gradient-teal); transition: width .35s ease;
}
.nav-links a:hover { color: var(--teal-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
.burger { background: none; border: 0; color: var(--teal-deep); padding: 8px; border-radius: 999px; cursor: pointer; line-height: 0; }
.mobile-menu { display: none; background: rgba(255,255,255,.97); border-top: 1px solid var(--border); padding: 16px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: grid; gap: 16px; }
.mobile-menu a { font-size: 15px; }

@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .burger { display: none; }
  .mobile-menu.open { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--gradient-hero); padding: 0; }
.hero-bg { position: absolute; inset: 0; opacity: .18; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; }
.hero-inner {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 120px 20px;
  max-width: 860px; margin: 0 auto;
}
.hero-logo { width: 96px; height: 96px; border-radius: 999px; object-fit: cover; box-shadow: var(--shadow-glow), 0 0 0 4px rgba(255,255,255,.7); }
.kicker { font-size: 11px; letter-spacing: .35em; text-transform: uppercase; color: var(--teal-deep); margin-top: 30px; }
.hero h1 { margin-top: 18px; font-size: clamp(2.4rem, 7vw, 4.4rem); line-height: 1.1; color: var(--teal-deep); }
.hero h1 em { font-style: italic; background: var(--gradient-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.typed { margin-top: 22px; min-height: 34px; font-family: "Playfair Display", serif; font-size: clamp(1.05rem, 3vw, 1.6rem); color: rgba(44,75,82,.85); }
.caret { color: var(--teal); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero p.lead { margin-top: 18px; max-width: 34rem; color: var(--muted); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- Section titles ---------- */
.section-title { text-align: center; }
.section-title .kicker { margin: 0; }
.section-title h2 { margin-top: 12px; font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--teal-deep); }
.section-title .rule { width: 80px; height: 1px; margin: 20px auto 0; background: var(--gradient-teal); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 48px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-soft); object-fit: cover; }
.about h2 { margin-top: 12px; font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--teal-deep); }
.about p { margin-top: 18px; color: var(--muted); font-size: 15px; }
.checks { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(44,75,82,.85); }
.checks svg { color: var(--teal); flex: none; }
@media (min-width: 820px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .checks { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; margin-top: 56px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-2 { grid-template-columns: repeat(3, 1fr); } }

.card {
  height: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft);
  transition: transform .5s ease, box-shadow .5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 18px; background: var(--teal-soft); color: var(--teal-deep);
  transition: transform .5s ease;
}
.card:hover .icon { transform: scale(1.1) rotate(6deg); }
.card h3 { margin-top: 22px; font-size: 20px; color: var(--teal-deep); }
.card p { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ---------- Reviews ---------- */
.rating { display: grid; justify-items: center; gap: 6px; margin-top: 32px; }
.stars { display: flex; gap: 4px; color: var(--teal); }
.rating .score { font-family: "Playfair Display", serif; font-size: 26px; color: var(--teal-deep); }
.rating small { color: var(--muted); font-size: 13px; }
.quote {
  height: 100%; background: var(--gradient-soft); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-soft); transition: transform .5s ease;
}
.quote:hover { transform: translateY(-6px); }
.quote p { margin-top: 16px; font-size: 14px; color: rgba(44,75,82,.85); }
.quote footer { margin-top: 20px; font-size: 14px; font-weight: 500; color: var(--teal-deep); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 56px; }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.gallery img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery figure:hover img { transform: scale(1.1); }
.gallery figcaption {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px;
  background: var(--gradient-teal); color: #fff; font-size: 12px; opacity: 0; transition: opacity .5s ease;
}
.gallery figure:hover figcaption { opacity: .9; }

/* ---------- Booking form ---------- */
.form {
  margin-top: 48px; display: grid; gap: 20px; background: var(--gradient-soft);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-soft);
}
.form label { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--teal-deep); }
.form input, .form select, .form textarea {
  font-family: inherit; font-size: 14px; color: var(--text); background: #fff;
  border: 1px solid var(--border); border-radius: 999px; padding: 13px 18px; outline: none;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.form textarea { border-radius: 18px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.form .full { grid-column: 1 / -1; }
.form-actions { grid-column: 1 / -1; display: grid; justify-items: center; gap: 12px; }
.form-note { font-size: 12px; color: var(--muted); }
.form-success { font-size: 14px; color: var(--teal-deep); }
@media (min-width: 700px) { .form { grid-template-columns: 1fr 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 32px; margin-top: 56px; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info { display: grid; gap: 20px; }
.info-item { display: flex; gap: 16px; background: var(--card); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); }
.info-item svg { color: var(--teal); flex: none; margin-top: 4px; }
.info-item h3 { font-size: 18px; color: var(--teal-deep); }
.info-item p, .info-item a { font-size: 14px; color: var(--muted); }
.info-item a:hover { color: var(--teal-deep); }
.hours { list-style: none; margin-top: 8px; display: grid; gap: 4px; width: 100%; }
.hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); }
.map { width: 100%; height: 100%; min-height: 340px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* ---------- Footer ---------- */
footer.site { background: var(--card); padding: 52px 0; }
.footer-inner { display: grid; justify-items: center; gap: 22px; text-align: center; }
.footer-inner img { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 2px var(--teal-soft); }
.footer-inner p { font-size: 14px; color: var(--muted); max-width: 24rem; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-soft); color: var(--teal-deep); transition: transform .3s ease, background .3s ease, color .3s ease;
}
.socials a:hover { transform: translateY(-4px); background: var(--gradient-teal); color: #fff; }
.copy { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; white-space: normal; }
.copy svg { position: relative; top: 1px; }
.copy svg { color: var(--teal); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
