:root {
  --color-bg: #faf6f0;
  --color-bg-warm: #f3ebe2;
  --color-surface: #fffefb;
  --color-stem: #1e3d2f;
  --color-stem-soft: #2d5a45;
  --color-petal: #c75b6b;
  --color-petal-deep: #8b2942;
  --color-coral: #e8a090;
  --color-gold: #c9a227;
  --color-text: #2a2420;
  --color-text-muted: #5c534c;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(30, 61, 47, 0.12);
  --radius: 14px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(232, 160, 144, 0.18), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 20%, rgba(199, 91, 107, 0.08), transparent 50%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-stem);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 61, 47, 0.08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-stem);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo:hover {
  color: var(--color-petal-deep);
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.site-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--color-petal);
}

main {
  overflow-x: hidden;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-stem-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-stem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero__brand {
  color: var(--color-petal-deep);
}

.hero__lede {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 38ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn--primary:hover {
  background: var(--color-petal);
}

.btn--ghost {
  background: transparent;
  color: var(--color-stem);
  border-color: rgba(30, 61, 47, 0.25);
}

.btn--ghost:hover {
  border-color: var(--color-stem);
  background: rgba(255, 255, 255, 0.6);
}

.hero__visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(30, 61, 47, 0.15), transparent 45%);
  pointer-events: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section--alt {
  background: var(--color-bg-warm);
  border-top: 1px solid rgba(30, 61, 47, 0.06);
  border-bottom: 1px solid rgba(30, 61, 47, 0.06);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-stem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section__prose {
  max-width: 65ch;
  color: var(--color-text-muted);
}

.section__prose p {
  margin: 0 0 1rem;
}

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

.gallery__intro {
  margin-bottom: 1.75rem;
}

.faq__intro {
  margin-bottom: 1.5rem;
}

.faq-list {
  margin: 0;
  max-width: 65ch;
}

.faq-item__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-stem);
  margin: 0 0 0.35rem;
  padding-top: 1.25rem;
}

.faq-list .faq-item__q:first-child {
  padding-top: 0;
}

.faq-item__a {
  margin: 0 0 0.25rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(30, 61, 47, 0.1);
}

.faq-item__a p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.faq-item__a:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery figure {
  margin: 0;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30, 61, 47, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.contact {
  padding-bottom: 4rem;
}

.contact__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 720px) {
  .contact__grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-embed {
  padding: 0;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1px solid rgba(30, 61, 47, 0.12);
  box-shadow: 0 8px 30px rgba(30, 61, 47, 0.06);
  overflow: hidden;
}

/* Let Fillout’s dynamic resize control height; avoid min-height so the embed stays compact. */
.contact-embed [data-fillout-id] {
  width: 100%;
  display: block;
}

.site-footer {
  background: var(--color-stem);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 1.5rem 3rem;
  margin-top: 2rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__copy {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.site-footer__credits-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  opacity: 0.85;
}

.site-footer__credits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.92;
}

.site-footer__credits-list a {
  color: #fff;
}

.site-footer__credits-list li {
  margin-bottom: 0.4rem;
}
