:root {
  --red: #e0304a;
  --red-dark: #b5233a;
  --green: #2f5233;
  --green-light: #4f7a52;
  --cream: #fff8f1;
  --cream-alt: #fbeee2;
  --ink: #2b2119;
  --ink-soft: #5b5148;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 33, 25, 0.08);
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  color: var(--green);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

code {
  background: rgba(47, 82, 51, 0.08);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.6em;
}

.center { text-align: center; }
.eyebrow.center { display: block; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-right: 12px;
  margin-bottom: 12px;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(224, 48, 74, 0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

@media (prefers-reduced-motion: no-preference) {
  .btn-pulse { animation: btnPulse 2.4s ease-out infinite; }
  @keyframes btnPulse {
    0% { box-shadow: 0 8px 20px rgba(224, 48, 74, 0.35), 0 0 0 0 rgba(224, 48, 74, 0.55); }
    70% { box-shadow: 0 8px 20px rgba(224, 48, 74, 0.35), 0 0 0 14px rgba(224, 48, 74, 0); }
    100% { box-shadow: 0 8px 20px rgba(224, 48, 74, 0.35), 0 0 0 0 rgba(224, 48, 74, 0); }
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 241, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(47, 82, 51, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(43, 33, 25, 0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
}
.brand-icon { font-size: 1.4rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:not(.nav-cta) {
  position: relative;
  color: var(--ink);
  transition: color 0.15s ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.site-nav a:not(.nav-cta):hover { color: var(--red); }
.site-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.5em 1.2em;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-slide.active { animation: kenBurns 6.5s ease-out forwards; }
  @keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
  }
}

.floaty {
  position: absolute;
  z-index: 2;
  font-size: 2rem;
  opacity: 0.35;
  pointer-events: none;
}
.floaty-1 { top: 18%; left: 8%; }
.floaty-2 { top: 65%; right: 10%; font-size: 1.6rem; }
.floaty-3 { top: 30%; right: 6%; font-size: 1.4rem; }
@media (prefers-reduced-motion: no-preference) {
  .floaty { animation: floatBob 4.5s ease-in-out infinite; }
  .floaty-2 { animation-delay: 1s; }
  .floaty-3 { animation-delay: 2s; }
  @keyframes floatBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(8deg); }
  }
}
@media (max-width: 720px) {
  .floaty { display: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 25, 15, 0.55), rgba(10, 15, 10, 0.75)),
    radial-gradient(circle at 15% 20%, rgba(224, 48, 74, 0.35), transparent 45%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.4em;
}
.hero-text {
  max-width: 780px;
  display: none;
}
.hero-text.active {
  display: block;
  animation: heroFade 0.6s ease;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero .eyebrow { color: #ffd9de; }
.hero-actions {
  margin-top: 1.7em;
  display: flex;
  justify-content: center;
}
.hero-actions .btn span { margin-left: 4px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.torn-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 40px;
  z-index: 2;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.8em;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Highlights */
.highlights {
  background: var(--green);
  padding: 28px 0;
}
.highlights-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.highlight-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.highlight-badge span { font-size: 1.5rem; }
.highlight-badge p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-alt); }
.section-sub { max-width: 560px; margin: -0.6em auto 2.5em; }
.section-sub.center { text-align: center; }

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .service-grid .reveal:nth-child(1), .gallery-grid .reveal:nth-child(1), .highlights-row .reveal:nth-child(1) { transition-delay: 0s; }
  .service-grid .reveal:nth-child(2), .gallery-grid .reveal:nth-child(2), .highlights-row .reveal:nth-child(2) { transition-delay: 0.08s; }
  .service-grid .reveal:nth-child(3), .gallery-grid .reveal:nth-child(3), .highlights-row .reveal:nth-child(3) { transition-delay: 0.16s; }
  .service-grid .reveal:nth-child(4), .gallery-grid .reveal:nth-child(4), .highlights-row .reveal:nth-child(4) { transition-delay: 0.24s; }
  .gallery-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
  .gallery-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
  .testimonial-grid .reveal:nth-child(1) { transition-delay: 0s; }
  .testimonial-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
  .testimonial-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-blob {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--cream-alt), transparent 70%);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  z-index: 0;
}
.about-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, #f3d9c9, #f7e6d8);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-note {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--green);
  font-size: 0.9rem;
  padding: 20px;
  background: linear-gradient(160deg, #f3d9c9, #f7e6d8);
}
.ph-icon { font-size: 2.6rem; }
.about-photo.img-missing img { display: none; }
.about-photo.img-missing .img-placeholder-note { display: flex; }

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  box-shadow: var(--shadow);
  margin-top: 1.6em;
}
.contact-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-pill-label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.contact-pill-number {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
}
.contact-pill-number:hover { color: var(--red); }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(43, 33, 25, 0.14);
}
.service-img { aspect-ratio: 4/3; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 20px; text-align: center; }
.service-body h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.service-body p { margin: 0; font-size: 0.9rem; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:not(.placeholder):hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(43, 33, 25, 0.14);
}
.testimonial-card.placeholder {
  background: transparent;
  border: 1.5px dashed rgba(47,82,51,0.3);
  box-shadow: none;
}
.testimonial-quote {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 0.8em;
}
.testimonial-author {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, #f3d9c9, #f7e6d8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(43, 33, 25, 0.14);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
}
.gallery-badge {
  display: inline-block;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .gallery-badge { opacity: 1; transform: translateY(0); }
.gallery-filename { display: none; }

.gallery-item.img-missing img { display: none; }
.gallery-item.img-missing .gallery-badge { display: none; }
.gallery-item.img-missing figcaption {
  inset: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.gallery-item.img-missing .gallery-filename {
  display: block;
  font-size: 0.85rem;
  color: var(--green);
  text-align: center;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* Visit / contact */
.visit-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2em 0;
}
.contact-list li { margin-bottom: 0.6em; font-weight: 500; }
.contact-list a:hover { color: var(--red); }
.visit-note {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(47,82,51,0.1);
}
.visit-note h3 { margin-bottom: 0.4em; font-size: 1.1rem; }
.visit-note p { margin: 0; }

/* Footer */
.site-footer {
  background: var(--green);
  color: #fff;
  padding: 44px 0 18px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-inner p { color: rgba(255,255,255,0.75); margin: 0.3em 0 0; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { opacity: 0.9; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 30px 0 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid, .visit-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .highlights-row { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(47,82,51,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }
  .site-nav.open {
    max-height: 400px;
    opacity: 1;
    padding: 16px 24px 24px;
  }
  .nav-toggle { display: flex; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-arrow { display: none; }
  .about-blob { display: none; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(224, 48, 74, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--red-dark); }
