@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --page-bg: #fdfaf7;
  --card-bg: #fffaf6;
  --card-soft: rgba(255, 250, 246, 0.82);
  --text: #151515;
  --muted: #6f6762;
  --green: #355a48;
  --green-dark: #274437;
  --green-soft: #dde7e1;
  --line: rgba(21, 21, 21, 0.1);
  --shadow: 0 18px 48px rgba(35, 22, 14, 0.08);
  --gold: #d8b06a;
  --sand: #efe1cf;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  background: #fcfbfb;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: #fcfbfb;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #000 1px, transparent 2px);
  background-size: 3px 3px;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.45rem 1rem;
  background: var(--green);
  color: #fff;
  font-size: 0.84rem;
}

.announcement-bar p {
  margin: 0;
  text-align: center;
}

.announcement-cta {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--green);
  background: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.site-header,
main,
.site-footer {
  width: min(1240px, calc(100vw - 3rem));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: clamp(90px, 10vw, 120px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(53, 90, 72, 0.1);
}

.site-nav a.nav-cta {
  background: var(--green);
  color: #fff !important;
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.site-nav a.nav-cta:hover {
  background: var(--green-dark) !important;
}

main {
  padding: 0.75rem 0 3rem;
}

.section,
.booking-steps {
  margin-top: 3rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Prata", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.05rem;
  align-items: center;
  padding-top: 0rem;
}

.hero-copy,
.hero-visual {
  background: transparent;
}

.hero-copy h1 {
  margin: 0.2rem 0 0.65rem;
  font-family: "Prata", serif;
  font-size: clamp(2.12rem, 3.2vw, 3.36rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.hero-copy h2 {
  margin: 0 0 0.7rem;
  font-family: "Prata", serif;
  font-size: clamp(1.44rem, 2vw, 1.88rem);
  line-height: 1;
  color: var(--accent, #bf7f58);
  font-family: "Alex Brush", cursive;
}

.hero-text {
  margin: 0;
  color: black;
  font-size: 0.82rem;
}

.hero-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.05rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.68rem 0.76rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.feature-icon,
.metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--sand);
  color: var(--green);
}

.feature-icon svg,
.metric-icon svg {
  width: 14px;
  height: 14px;
}

.feature-pill strong,
.metric strong {
  display: block;
  font-size: 0.74rem;
}

.feature-pill small,
.metric small,
.testimonial-meta small,
.step-item p {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
}

.hero-visual {
  position: relative;
  padding: 0;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 21px;
  background: #fffaf5;
  border: 1px solid rgba(21, 21, 21, 0.06);
  touch-action: pan-y;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 550ms ease;
  will-change: transform;
}

.hero-slider-track.is-dragging {
  transition: none !important;
  cursor: grabbing;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.55rem;
  pointer-events: none;
}

.hero-slider-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 21, 21, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.hero-slider-btn:hover {
  background: rgba(21, 21, 21, 0.7);
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.33rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.28);
  cursor: pointer;
}

.hero-slider-dot.is-active {
  background: var(--green);
}

.hero-metrics {
  position: absolute;
  right: 1.2rem;
  bottom: -1.35rem;
  width: min(100%, 320px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.95rem;
  border-radius: 20px;
  background: #fffaf5;
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: var(--shadow);
}

.metric {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  text-align: center;
}

.metric:nth-child(2) .metric-icon {
  background: var(--green-soft);
}

.metric:nth-child(3) .metric-icon {
  background: #efe4d7;
}

.booking-steps {
  padding: 1.35rem;
  border-radius: 24px;
  background: #fffaf5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.steps-intro {
  flex: 0 0 0px;
  margin-right: 0.4rem;
}

.steps-intro h2 {
  margin: 0 0 0.2rem;
  font-family: "Prata", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.steps-intro p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 0;
  min-width: 0;
}

.step-icon {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.step-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1e2cf;
  color: #a76a43;
  font-size: 0.65rem;
  font-weight: 700;
}

.step-item h3,
.testimonial-card strong,
.service-top h3 {
  margin: 0;
  font-size: 1rem;
}

.step-item p {
  white-space: nowrap;
}

.step-arrow {
  flex: 0 0 auto;
  color: var(--muted);
  display: inline-flex;
}

.step-arrow svg {
  width: 18px;
  height: 18px;
}

.steps-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: var(--sand);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.steps-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.testimonial-grid,
.service-grid,
.gallery-grid,
.schedule-layout {
  display: grid;
  gap: 1rem;
}

.testimonial-grid,
.service-grid,
.gallery-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card,
.service-card,
.schedule-card,
.schedule-help,
.booking-form,
.shop {
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.testimonial-card {
  padding: 1.1rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.testimonial-meta img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.service-card {
  overflow: hidden;
}

.service-visual {
  aspect-ratio: 4 / 3;
}

.service-visual img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-content {
  padding: 1rem;
}

.service-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green);
}

.gallery-group {
  margin-top: 1.1rem;
}

.gallery-group h3,
.schedule-card h3,
.schedule-help h3 {
  margin: 0 0 0.8rem;
  font-family: "Prata", serif;
}

.gallery-item,
.schedule-card,
.schedule-help {
  overflow: hidden;
}

.gallery-item {
  margin: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.schedule-layout {
  grid-template-columns: 1.4fr 0.6fr;
  margin-top: 1rem;
}

.schedule-card,
.schedule-help {
  padding: 1rem;
}

.schedule-help {
  border-top: 4px solid var(--accent-2-mid, #4e7764);
}

#map-embed {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 16px;
  background: #f4ede5;
}

.shop {
  margin-top: 3rem;
  padding: 2rem 1.5rem 2.25rem;
}

.shop .section-head {
  margin-bottom: 1.1rem;
}

.shop-links {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.booking-form {
  margin-top: 1rem;
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(53, 90, 72, 0.4);
  box-shadow: 0 0 0 3px rgba(53, 90, 72, 0.12);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-ghost {
  color: var(--green);
  background: #fff;
  border-color: rgba(53, 90, 72, 0.22);
}

.btn-ghost:hover {
  background: var(--green-soft);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--muted);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(35, 22, 14, 0.07);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 650ms ease forwards;
}

.reveal-delay {
  animation-delay: 120ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .service-grid,
  .gallery-grid,
  .hero-features,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }

  #map-embed {
    min-height: 460px;
  }

  .steps-row {
    flex-direction: column;
    align-items: stretch;
  }

  .steps-intro {
    margin-right: 0;
  }

  .step-item {
    flex-basis: auto;
    width: 100%;
  }

  .step-item p {
    white-space: normal;
  }

  .step-arrow {
    display: none;
  }

  .steps-cta {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  .site-footer {
    width: min(100vw, calc(100vw - 1rem));
  }

  .announcement-bar {
    padding: 0.4rem 0.75rem;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.72rem;
  }

  .announcement-cta {
    padding: 0.28rem 0.65rem;
    font-size: 0.72rem;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding-top: 0.85rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .site-nav a {
    justify-content: center;
    text-align: center;
    padding: 0.48rem 0.65rem;
    font-size: 0.82rem;
  }

  .site-nav a.nav-cta {
    grid-column: 1 / -1;
    border-radius: 14px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 11vw, 2.7rem);
    line-height: 0.95;
    max-width: 9.5ch;
  }

  .hero-copy h2 {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
    max-width: 12ch;
  }

  .hero-text {
    font-size: 0.76rem;
  }

  .hero-cta,
  .shop-links {
    width: 100%;
  }

  .hero-cta .btn,
  .shop-links .btn,
  .booking-form .btn,
  .schedule-card .btn {
    width: 100%;
  }

  .testimonial-grid,
  .service-grid,
  .gallery-grid,
  .hero-features,
  .steps-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-features {
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .feature-pill {
    padding: 0.62rem 0.7rem;
  }

  .feature-pill strong,
  .metric strong {
    font-size: 0.7rem;
  }

  .feature-pill small,
  .metric small,
  .testimonial-meta small,
  .step-item p {
    font-size: 0.58rem;
  }

  .hero-image-frame {
    min-height: 250px;
    border-radius: 18px;
  }

  .hero-copy,
  .hero-visual {
    min-width: 0;
  }

  .hero-slider-controls {
    padding-inline: 0.3rem;
  }

  .hero-slider-btn {
    width: 28px;
    height: 28px;
    font-size: 0.98rem;
  }

  .hero-slider-dots {
    bottom: 0.6rem;
    padding: 0.24rem 0.42rem;
    gap: 0.32rem;
  }

  .hero-slider-controls {
    padding-inline: 0.35rem;
  }

  .booking-steps,
  .shop,
  .booking-form,
  .schedule-card,
  .schedule-help {
    padding: 0.95rem;
  }

  #map-embed {
    min-height: 340px;
  }
}