:root {
  --ink: #070707;
  --muted: #6d6a6a;
  --paper: #ffffff;
  --blush: #f7d7de;
  --rose: #d67c92;
  --rose-deep: #a84f68;
  --charcoal: #141212;
  --field: rgba(255, 255, 255, 0.9);
  --max: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.brand img {
  width: 88px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 10px 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.primary-nav a:focus-visible,
.primary-nav a:hover {
  border-color: var(--rose-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.image-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

main > section {
  scroll-margin-top: 104px;
}

.hero {
  display: grid;
  min-height: min(560px, calc(100svh - 190px));
  padding: clamp(70px, 12vh, 140px) 0 clamp(58px, 8vh, 90px);
  text-align: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2)), url("/assets/pink-bottom.jpg");
}

.hero-inner {
  align-self: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 76px);
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 5vw, 52px);
}

h2 em {
  font-style: italic;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero p {
  max-width: 960px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 225px;
  min-height: 54px;
  padding: 13px 24px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:focus-visible,
.button:hover {
  color: var(--ink);
  background: transparent;
}

.about {
  padding: clamp(58px, 8vw, 92px) 0 clamp(70px, 10vw, 118px);
  text-align: center;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--paper);
}

.split-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 5vw, 64px);
  margin-top: 34px;
  text-align: left;
}

.split-row h3 {
  margin-bottom: 0;
}

.split-row p {
  margin-bottom: 0;
}

.beliefs {
  display: grid;
  gap: 14px;
}

.events {
  padding: clamp(62px, 8vw, 92px) 0 clamp(82px, 11vw, 130px);
  text-align: center;
  background-image: url("/assets/pink-side.jpg");
}

.events h2 {
  margin-inline: auto;
  max-width: 920px;
}

.event-panel {
  width: min(100%, 1040px);
  margin: 36px auto 0;
  padding: clamp(28px, 5vw, 46px);
  color: var(--paper);
  background: rgba(0, 0, 0, 0.76);
  border-radius: 4px;
}

.event-panel h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.event-panel p {
  margin-bottom: 0;
}

.event-panel a {
  color: var(--paper);
  font-weight: 700;
}

.contact {
  padding: clamp(48px, 8vw, 78px) 0 clamp(76px, 10vw, 118px);
  text-align: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.16)), url("/assets/floral-pink.jpg");
}

.owl-mark {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  object-fit: cover;
  border-radius: 50%;
}

.contact-intro {
  max-width: 790px;
  margin: 0 auto 32px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  font: inherit;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(168, 79, 104, 0.24);
  border-color: var(--rose-deep);
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form small {
  color: #4a4646;
  font-size: 13px;
  font-weight: 300;
}

.honeypot {
  position: absolute;
  left: -100vw;
}

.submit-button {
  width: 180px;
  margin-top: 4px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}

.site-footer {
  padding: 34px 20px;
  color: var(--paper);
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 12px;
}

.site-footer a {
  color: var(--paper);
  text-decoration: none;
}

.site-footer a:focus-visible,
.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  body.nav-open .primary-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    padding: 15px 0;
  }

  .hero {
    min-height: min(500px, calc(100svh - 160px));
    padding-top: 78px;
  }

  .split-row,
  .name-grid {
    grid-template-columns: 1fr;
  }

  .split-row {
    gap: 12px;
  }

  .event-panel {
    padding-inline: 22px;
  }

  .submit-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero p,
  .contact-intro {
    font-size: 23px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
