@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

:root {
  --bg: #fdf8f3;
  --card: #ffffff;
  --primary: #f7a8b8;
  --accent: #9edbd6;
  --text: #3b3b3b;
  --muted: #6f6f6f;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius: 14px;
  --max-width: 1200px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 28px;
  --space-5: 40px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

header {
  padding: 16px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(10px);
}

nav a {
  margin-left: 16px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid #e2d5d0;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd1dc);
  color: #3b2b2e;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.hero {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.section {
  padding: 40px 0;
}

.section h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #1f3c39;
  font-weight: 700;
  font-size: 0.85rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 200px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card img.card-illus {
  width: 100%;
  max-height: 180px;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
  box-shadow: none;
  background: #fff;
}

.hero-cta {
  display: grid;
  gap: var(--space-3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(158, 219, 214, 0.2);
  color: #1f3c39;
  font-weight: 700;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.grid-featured {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.featured-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.featured-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #f0e7e0;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.stars {
  color: #f7a61d;
  letter-spacing: 2px;
}

.cta-gradient {
  background: linear-gradient(135deg, #f7a8b8, #9edbd6);
  color: #1f1f1f;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

form .field {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #e2d5d0;
  background: #fff;
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.notice {
  background: #fff7ed;
  color: #7c3a2a;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid #ffd9c2;
}

.error {
  color: #b42318;
  background: #ffecec;
  border: 1px solid #f5b5b5;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.success {
  color: #2f6b3a;
  background: #e3f8ec;
  border: 1px solid #b1e3c4;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 10px;
  border-bottom: 1px solid #f0e7e0;
  text-align: left;
}

.calendar {
  margin-top: 10px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}

.calendar header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  border: 1px solid #f0e7e0;
  border-radius: 10px;
  padding: 8px 0;
  text-align: center;
  cursor: pointer;
  background: #fff;
}

.calendar-day.disabled {
  color: #b7b7b7;
  background: #f7f4f2;
  cursor: not-allowed;
}

.calendar-day.full {
  background: #ffecec;
  color: #b42318;
  cursor: not-allowed;
}

.calendar-day.selected {
  background: var(--accent);
  color: #123;
  font-weight: 700;
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.addons-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #f0e7e0;
  border-radius: var(--radius);
  width: 100%;
}
.addons-list input[type="checkbox"] {
  margin-left: auto;
  margin-right: 2px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 50;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

footer {
  padding: 24px 5vw 40px;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 800px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

@media (max-width: 799px) {
  .hero {
    padding-top: 32px;
  }
  .hero-image {
    aspect-ratio: 16/10;
  }
  .featured-strip {
    grid-auto-columns: 180px;
  }
  nav {
    position: absolute;
    top: 60px;
    right: 5vw;
    background: #fff;
    border: 1px solid #f0e7e0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
    z-index: 10;
  }
  nav.show {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }
  nav a {
    margin: 0;
  }
  .nav-toggle {
    display: inline-block;
  }
}
