:root {
  --teal: #1c8c94;
  --cream: #fdf3d7;
  --stripe: #f8e9bd;
  --green: #7ab648;
  --green-dark: #5c9235;
  --orange: #e8a33d;
  --black: #1a1a1a;
  --grey-light: #e2e2e2;
  --grey-mid: #9a9a9a;
  --red: #d64545;
  --blue: #3f78b5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--black);
  background-image: repeating-linear-gradient(
    100deg,
    var(--cream) 0px,
    var(--cream) 40px,
    var(--stripe) 40px,
    var(--stripe) 80px
  );
}

p, li, a, label, input, textarea, button {
  font-family: 'Segoe UI', Verdana, sans-serif;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Outlined chunky headline style matching the flyer */
.outline-text {
  color: var(--green);
  -webkit-text-stroke: 2px var(--black);
  text-stroke: 2px var(--black);
  text-shadow: 4px 4px 0 var(--orange);
  font-weight: 900;
  letter-spacing: 1px;
}

/* Header / nav */
header {
  border-bottom: 6px solid var(--teal);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand {
  font-size: 1.4rem;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--black);
  border-radius: 6px;
  font-size: 1.3rem;
  padding: 4px 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  border: 6px solid var(--teal);
  border-radius: 14px;
  margin: 24px auto;
  padding: 50px 30px;
  text-align: center;
  background: var(--cream);
  box-shadow: 0 6px 0 rgba(0,0,0,0.08);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 6px;
  line-height: 1;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--black);
  margin: 10px 0 20px;
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  color: #333;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 3px solid var(--black);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 3px 3px 0 var(--orange);
}

.btn-primary:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--orange);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--grey-light);
}

/* Section generic */
section {
  padding: 50px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin: 0 0 10px;
}

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  color: #444;
}

/* Story */
.story-card {
  background: var(--white);
  border: 4px solid var(--teal);
  border-radius: 14px;
  padding: 34px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.06);
}

.story-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.story-card p:last-child {
  margin-bottom: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 3px 3px 0 var(--green);
}

.service-card .heart {
  color: var(--green-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-card span.label {
  font-weight: 700;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border: 3px solid var(--black);
  border-radius: 10px;
  background: repeating-linear-gradient(
    45deg,
    var(--grey-light),
    var(--grey-light) 12px,
    #d4d4d4 12px,
    #d4d4d4 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #555;
  font-weight: 700;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.gallery-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  opacity: 0.6;
}

.gallery-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gallery-item.photo {
  aspect-ratio: auto;
  margin: 0;
  padding: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.gallery-item.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-item.photo figcaption {
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  background: var(--white);
  text-align: left;
}

/* Calendar */
.calendar-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 4px solid var(--teal);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.06);
}

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

.calendar-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.cal-nav-btn {
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: 6px;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
}

.cal-nav-btn:hover {
  background: var(--grey-light);
}

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

.cal-dow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  padding-bottom: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--grey-light);
  color: #333;
}

.cal-day.empty {
  background: transparent;
}

.cal-day.unavailable {
  background: var(--red);
  color: var(--white);
}

.cal-day.today {
  outline: 3px solid var(--teal);
  outline-offset: -2px;
}

.cal-day.range {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.cal-day.range .day-number {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.cal-day.range .range-label {
  position: absolute;
  inset: -35%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-25deg);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  white-space: nowrap;
}

.calendar-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.85rem;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.legend-dot.available { background: var(--grey-light); }
.legend-dot.unavailable { background: var(--red); }
.legend-dot.range { background: var(--blue); }

.calendar-sync-status {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin: 14px 0 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 3px 3px 0 var(--orange);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

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

/* Footer */
footer {
  border-top: 6px solid var(--teal);
  padding: 26px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}

/* Responsive nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }
  nav {
    display: none;
    width: 100%;
  }
  nav.open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  nav ul li {
    border-top: 1px solid var(--grey-light);
  }
  nav ul li a {
    display: block;
    padding: 12px 6px;
  }
  .nav-inner {
    flex-wrap: wrap;
  }
}
