/* ========== Reset & base ========== */
*,
*::before,
*::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0b1a18;
  background: #ccfbf1;
  line-height: 1.6;
}

/* Color system — tweak these to adjust the brand look (inspired by a teal + warm accent palette) */
:root {
  --brand: #85d6f5;      /* deep teal */
  --brand-600: #d6fbcc;
  --brand-200: #cceefb;
  --accent: #f59e0b;     /* warm amber */
  --text: #0b1a18;
  --muted: #5b6b68;
  --bg: #ccfbf1;
  --bg-alt: #d6fbcc;
  --card: #ffffff;
  --border: #e5e8e6;
  --shadow: 0 6px 24px rgba(6, 24, 22, .08);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-color: color-mix(in srgb, var(--brand) 50%, transparent); }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3 { font-family: Poppins, Inter, system-ui, sans-serif; line-height: 1.15; margin: 0 0 .5rem; color: #071312; }
h1 { font-size: clamp(2rem, 2.5vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem); }
h3 { font-size: 1.125rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { padding-left: 1.25rem; }

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0 0;
}

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus { left: 1rem; top: 1rem; background: var(--brand); color: white; padding: .5rem .75rem; border-radius: .5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, white);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(6px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
}
.logo { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--text); text-decoration: none; }
.logo-type { letter-spacing: .2px; }
.logo-mark { font-size: 1.3rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: .75rem;
  border: 1px solid var(--border); background: var(--card);
}
.site-nav { display: none; }
.site-nav.open { display: flex; }
.site-nav ul {
  display: contents;
}
.site-nav a { text-decoration: none; font-weight: 600; }
.site-nav .nav-cta { margin-left: .75rem; }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: 1rem; }
  .site-nav ul { display: flex; list-style: none; gap: 1rem; margin: 0; padding: 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  border-radius: .9rem;
  padding: .7rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-600); }
.btn-ghost { background: white; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: #fff; border-color: color-mix(in srgb, var(--brand) 30%, var(--border)); }

/* Hero */
.hero {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-200) 40%, white), transparent 60%);
}
.hero-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-copy .badges {
  display: flex; gap: .5rem; list-style: none; padding: 0; margin: 1rem 0 0;
}
.badges li {
  font-size: .85rem; font-weight: 700;
  background: white; border: 1px solid var(--border); padding: .35rem .6rem; border-radius: 999px;
}
.hero-img img { border-radius: 1rem; box-shadow: var(--shadow); }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-cta { display: flex; gap: .75rem; margin: 1rem 0 0; }
}

/* Sections */
.section { padding: clamp(2rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 1.5rem; }
.section-header p { max-width: 60ch; margin-inline: auto; }

/* Cards */
.card-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: clip;
  box-shadow: var(--shadow);
}
.card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1rem; }
.price-list { list-style: none; margin: .5rem 0 0; padding: 0; display: grid; gap: .35rem; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; }
@media (min-width: 880px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

/* About */
.about-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-photo img { border-radius: 1rem; box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; margin: .5rem 0 1rem; }
.checklist li::before { content: "✔"; margin-right: .5rem; color: var(--brand); font-weight: 900; }
@media (min-width: 880px) {
  .about-grid { grid-template-columns: .9fr 1.1fr; }
}

/* Testimonials */
.testimonials {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.quote {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1rem; box-shadow: var(--shadow);
}
.quote footer { color: var(--muted); font-weight: 600; }
@media (min-width: 880px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

/* Gallery */
.gallery {
  display: grid; gap: .5rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: .5rem; }
@media (min-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); }
}

/* FAQ */
.faq { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: .75rem 1rem; box-shadow: var(--shadow); }
.faq + .faq { margin-top: .75rem; }
.faq > summary { cursor: pointer; font-weight: 700; }
.faq > div { color: var(--muted); padding-top: .35rem; }

/* Contact */
.contact-grid {
  display: grid; gap: 1rem; align-items: start;
  grid-template-columns: 1fr;
}
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1rem; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: .25rem; font-weight: 600; margin: .5rem 0; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--border); border-radius: .75rem; padding: .7rem .9rem; font: inherit;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: white;
}
.footer-grid {
  display: grid; gap: .75rem; align-items: center;
  grid-template-columns: 1fr;
  padding: 1rem;
}
.site-footer nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.footnote { color: var(--muted); font-size: .9rem; }
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1fr auto auto; }
}

/* Elevation on scroll */
@media (prefers-reduced-motion: no-preference) {
  [data-elevate].elevated { box-shadow: 0 10px 30px rgba(0,0,0,.06); }
}
