:root {
  --bg: #fff8f1;
  --surface: #ffffff;
  --surface-2: #f8f4ef;
  --text: #2b2522;
  --muted: #665d57;
  --accent: #e36a3a;
  --accent-deep: #c94d22;
  --line: #f0d8c8;
  --shadow: 0 20px 40px rgba(47, 38, 35, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fbf6f2 0%, #f7f0e9 45%, #f4ede6 100%);
  line-height: 1.7;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.container {
  width: min(100% - 3rem, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(248, 242, 235, 0.88);
  border-bottom: 1px solid rgba(182, 106, 85, 0.13);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: clamp(150px, 22vw, 240px);
  height: auto;
  display: block;
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.social-nav {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.social-icon {
  width: 19px;
  height: 19px;
  display: block;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
}

.nav-icon {
  width: 20px;
  height: 14px;
  position: relative;
  display: block;
}

.nav-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #3f312c;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

.nav-icon span:nth-child(1) {
  top: 0;
}

.nav-icon span:nth-child(2) {
  top: 6px;
}

.nav-icon span:nth-child(3) {
  top: 12px;
}

.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.25rem;
  transition: color 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.active {
  color: var(--accent-deep);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgba(143, 79, 63, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 35px rgba(143, 79, 63, 0.34);
}

.btn-secondary {
  background: var(--surface);
  color: var(--accent-deep);
  border-color: var(--line);
}

.btn-text {
  padding: 0;
  border: 0;
  color: var(--accent-deep);
}

main {
  overflow: clip;
}

.section {
  padding: clamp(3.2rem, 8vw, 6.8rem) 0;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.94);
  transition: opacity 1.1s ease, transform 1.1s ease;
  background: radial-gradient(circle at center, rgba(182, 106, 85, 0.13), rgba(182, 106, 85, 0));
}

main section:nth-of-type(odd)::before {
  top: 8%;
  right: -120px;
}

main section:nth-of-type(even)::before {
  bottom: 8%;
  left: -120px;
}

.section.in-view::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.section-top {
  margin-bottom: 1.5rem;
  position: relative;
}

.section-top::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.8rem;
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  border-radius: 999px;
  transition: width 0.85s ease;
}

.section-top.visible::after {
  width: 76px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.95rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  background: rgba(182, 106, 85, 0.1);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.hero {
  padding: clamp(3.5rem, 9vw, 8rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -22%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(182, 106, 85, 0.21), transparent 70%);
}

.image-placeholder {
  border: 1px dashed #cfb9aa;
  border-radius: var(--radius-md);
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(182, 106, 85, 0.12), rgba(143, 79, 63, 0.06)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.65) 0,
      rgba(255, 255, 255, 0.65) 14px,
      rgba(255, 255, 255, 0.85) 14px,
      rgba(255, 255, 255, 0.85) 28px
    );
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: #6a5448;
}

.image-placeholder strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.image-placeholder small {
  color: #7a6961;
}

.image-placeholder.tall {
  min-height: 360px;
}

.image-placeholder.slim {
  min-height: 180px;
}

.brand-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #efe6de;
  box-shadow: 0 10px 24px rgba(47, 38, 35, 0.08);
}

.brand-photo.tall {
  aspect-ratio: 3 / 4;
  min-height: 360px;
}

.brand-photo.slim {
  aspect-ratio: 16 / 9;
  min-height: 180px;
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-row {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  text-align: center;
  background: var(--surface-2);
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(47, 38, 35, 0.05);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.section.in-view .card {
  border-color: #dac7b8;
  box-shadow: 0 10px 24px rgba(47, 38, 35, 0.07);
}

.card p {
  margin-top: 0.6rem;
}

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

.quote {
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.7));
  border-top: 1px solid rgba(228, 216, 206, 0.7);
  border-bottom: 1px solid rgba(228, 216, 206, 0.7);
}

.list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.5rem;
}

.event-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.pill {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: #fff;
}

.testimonial-card blockquote {
  margin: 0;
  color: #4f423c;
  font-size: 0.98rem;
}

.testimonial-card footer {
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.cta-band {
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #fffaf6, #fef7f1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 4vw, 2.4rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0 2rem;
}

.page-hero p {
  max-width: 70ch;
  margin-top: 0.8rem;
  font-size: 1.03rem;
}

.highlight {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  color: #4a3b35;
  font-weight: 600;
}

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

textarea {
  min-height: 150px;
  resize: vertical;
}

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

.form-note {
  font-size: 0.85rem;
  margin-top: 0.9rem;
}

.error {
  display: none;
  color: #af2e38;
  font-size: 0.82rem;
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: #af2e38;
}

.success-msg {
  margin-top: 1rem;
  display: none;
  border: 1px solid #bedfc3;
  color: #1f5f2a;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: #f4fff6;
}

.submit-error-msg {
  margin-top: 1rem;
  display: none;
  border: 1px solid #efb7bc;
  color: #8d1f27;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: #fff5f6;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #443530;
}

.faq-item p {
  margin-top: 0.6rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: rgba(255, 251, 247, 0.85);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-credit {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-credit a {
  color: var(--accent-deep);
}

.sticky-mobile-cta {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 35;
  display: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.99);
  filter: blur(2px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-left {
  transform: translate3d(-24px, 0, 0) scale(0.99);
}

.reveal-right {
  transform: translate3d(24px, 0, 0) scale(0.99);
}

.reveal-soft {
  transform: translate3d(0, 14px, 0) scale(0.985);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-soft {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .section-top::after {
    transition: none;
    width: 76px;
  }

  .section::before {
    transition: none;
    opacity: 0.4;
    transform: none;
  }

  .card {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .brand-logo {
    width: 154px;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(250, 245, 238, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .header-cta {
    display: none;
  }

  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 1.2rem;
  }

  .sticky-mobile-cta {
    display: block;
  }
}
