:root {
  --bg: #fffaf5;
  --paper: #fffdf9;
  --cream: #f7ede3;
  --sand: #ead4bd;
  --rose: #cf8273;
  --rose-deep: #b86f60;
  --clay: #7a4638;
  --ink: #3d2018;
  --muted: #755c54;
  --line: rgba(122, 70, 56, 0.18);
  --shadow: 0 24px 70px rgba(91, 58, 42, 0.14);
  --display: "Baskerville", "Iowan Old Style", "Cormorant Garamond", Georgia, serif;
  --sans: "Avenir Next", "Trebuchet MS", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 4%, rgba(207, 130, 115, 0.24), transparent 18rem),
    radial-gradient(circle at 96% 50%, rgba(234, 196, 150, 0.28), transparent 17rem),
    linear-gradient(180deg, #fffaf5 0%, #fffdf9 48%, #fbf3eb 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

button,
input {
  font: inherit;
}

.section-pad {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 0;
}

.site-header::before {
  width: 285px;
  height: 360px;
  left: -118px;
  top: -110px;
  border-radius: 43% 57% 52% 48% / 37% 42% 58% 63%;
  background: linear-gradient(160deg, #c87566 0%, #d99d8f 100%);
}

.site-header::after {
  width: 168px;
  height: 168px;
  left: -34px;
  top: 368px;
  border: 1px solid rgba(207, 130, 115, 0.26);
  border-radius: 50%;
  opacity: 0.5;
  background:
    linear-gradient(30deg, transparent 47%, rgba(207, 130, 115, 0.2) 48%, rgba(207, 130, 115, 0.2) 52%, transparent 53%),
    linear-gradient(90deg, transparent 47%, rgba(207, 130, 115, 0.2) 48%, rgba(207, 130, 115, 0.2) 52%, transparent 53%);
}

.nav-shell {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 10px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  color: var(--clay);
}

.brand-mark svg,
.offering-card svg,
.benefit-icon svg,
.section-title svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 0.84;
  font-weight: 500;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.96rem;
  color: #21130f;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.74);
  color: var(--ink);
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 29px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  box-shadow: 0 12px 25px rgba(184, 111, 96, 0.2);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(184, 111, 96, 0.27);
}

.button-small {
  min-height: 44px;
  padding: 0 24px;
  font-size: 0.88rem;
}

.button-outline {
  color: var(--rose-deep);
  background: transparent;
  border-color: rgba(184, 111, 96, 0.62);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(207, 130, 115, 0.08);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(480px, 1.18fr);
  gap: 52px;
  align-items: center;
  padding: 54px 0 64px;
}

.hero::before {
  position: absolute;
  content: "";
  width: 86px;
  height: 112px;
  left: -150px;
  top: 58px;
  background:
    radial-gradient(circle, #efd4ad 0 5px, transparent 6px) 0 0 / 28px 31px;
}

.hero-copy {
  position: relative;
  padding-left: 76px;
}

.hero-copy::after,
.about::before,
.newsletter::after,
.site-footer::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-copy::after {
  right: -152px;
  bottom: -118px;
  width: 115px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='180' viewBox='0 0 120 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c98273' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M48 177C40 127 42 80 70 30'/%3E%3Cpath d='M62 56c12-24 31-37 47-44-3 27-18 43-47 44Z'/%3E%3Cpath d='M51 92c-19-18-27-38-24-60 22 12 31 31 24 60Z'/%3E%3Cpath d='M47 125c20-17 39-22 58-15-15 20-34 25-58 15Z'/%3E%3Cpath d='M43 149c-21-10-35-25-41-46 24 5 38 20 41 46Z'/%3E%3C/g%3E%3C/svg%3E");
}

.eyebrow,
.section-title p {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.about-copy h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 430px;
  font-size: clamp(4.2rem, 8vw, 6.9rem);
  color: var(--clay);
}

.hero h1 span {
  color: var(--rose);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 330px;
  margin: 24px 0 32px;
  color: #39231d;
}

.flourish {
  display: grid;
  grid-template-columns: 90px 34px 90px;
  align-items: center;
  gap: 12px;
  margin: 28px 0 8px;
  color: var(--rose-deep);
}

.flourish span {
  height: 1px;
  background: rgba(122, 70, 56, 0.26);
}

.flourish svg,
.section-title svg {
  stroke: currentColor;
  fill: none;
}

.hero-media {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  content: "";
  inset: -32px -130px -32px 0;
  z-index: -1;
  border-radius: 42% 0 0 44% / 34% 0 0 45%;
  background: rgba(245, 236, 226, 0.72);
}

.hero-media img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
  border-radius: 43% 0 0 39% / 35% 0 0 43%;
  filter: saturate(0.9) contrast(0.98);
}

.offerings {
  position: relative;
  padding-top: 52px;
  padding-bottom: 72px;
}

.offerings::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -54px;
  width: 115vw;
  height: 114px;
  transform: translateX(-50%);
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: -1;
}

.section-title {
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 28px;
  color: var(--clay);
}

.section-title svg {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}

.offering-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.offering-card {
  min-height: 230px;
  padding: 0 clamp(28px, 4vw, 58px);
  text-align: center;
  border-right: 1px solid var(--line);
}

.offering-card:last-child {
  border-right: 0;
}

.icon-bubble,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 999px;
  color: var(--clay);
  background: #f3e6dc;
}

.icon-bubble svg {
  width: 37px;
  height: 37px;
}

.offering-card h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 600;
}

.offering-card p {
  min-height: 54px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.offering-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-deep);
  font-weight: 700;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(46px, 8vw, 96px);
  align-items: center;
  padding-top: 40px;
  padding-bottom: 82px;
}

.about::before {
  left: -80px;
  bottom: 22px;
  width: 142px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='220' viewBox='0 0 150 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23cf8273' stroke-width='1.35' stroke-linecap='round'%3E%3Cpath d='M75 220C63 145 41 88 8 28'/%3E%3Cpath d='M48 100C21 91 7 75 1 52c26 4 42 20 47 48Z'/%3E%3Cpath d='M58 133c-31 2-49 14-57 36 31 3 50-9 57-36Z'/%3E%3Cpath d='M68 72c12-29 31-47 58-54-3 31-22 49-58 54Z'/%3E%3Cpath d='M81 162c22-24 45-35 68-32-13 29-36 39-68 32Z'/%3E%3C/g%3E%3C/svg%3E");
}

.about-media {
  position: relative;
}

.about-media::before {
  position: absolute;
  content: "";
  left: -65px;
  top: -26px;
  width: 300px;
  height: 220px;
  z-index: -1;
  border-radius: 53% 47% 44% 56% / 56% 47% 53% 44%;
  background: #e7ddd2;
}

.about-media img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 46% 54% 49% 51% / 45% 42% 58% 55%;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 430px;
}

.about-copy h2,
.newsletter h2 {
  font-size: clamp(2.3rem, 4.4vw, 3.75rem);
  color: var(--clay);
}

.about-copy p:not(.eyebrow) {
  margin: 20px 0 26px;
  color: var(--muted);
}

.benefits {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 74px;
  background: rgba(249, 238, 228, 0.56);
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  width: min(1040px, 100%);
  margin: 0 auto;
}

.benefit-grid article {
  min-height: 170px;
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: #f8eee6;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.benefit-grid h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.benefit-grid p {
  margin: 0;
  color: #503934;
  font-size: 0.88rem;
  line-height: 1.5;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto 84px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 18px 48px rgba(91, 58, 42, 0.12);
}

.newsletter {
  position: relative;
  display: grid;
  place-items: center;
  gap: 20px;
  min-height: 164px;
  padding: 34px 24px 32px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249, 229, 220, 0.98), rgba(250, 239, 229, 0.96)),
    var(--cream);
}

.newsletter::before {
  position: absolute;
  content: "";
  left: 8%;
  bottom: -58px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(207, 130, 115, 0.24);
  border-radius: 50%;
  opacity: 0.65;
  background:
    linear-gradient(25deg, transparent 48%, rgba(207, 130, 115, 0.22) 49%, rgba(207, 130, 115, 0.22) 51%, transparent 52%),
    linear-gradient(75deg, transparent 48%, rgba(207, 130, 115, 0.22) 49%, rgba(207, 130, 115, 0.22) 51%, transparent 52%);
}

.newsletter::after {
  right: 8%;
  bottom: -18px;
  width: 120px;
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg width='130' height='170' viewBox='0 0 130 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c98273' stroke-width='1.45' stroke-linecap='round'%3E%3Cpath d='M51 170C57 108 73 57 114 2'/%3E%3Cpath d='M71 83c-27-7-43-24-48-51 29 6 45 23 48 51Z'/%3E%3Cpath d='M62 119c27-25 50-34 68-28-17 27-40 36-68 28Z'/%3E%3Cpath d='M52 148c-27-13-44-32-51-56 31 7 48 25 51 56Z'/%3E%3C/g%3E%3C/svg%3E");
}

.newsletter h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.newsletter p {
  margin: 8px 0 0;
  color: #47332e;
}

.signup-form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(460px, 100%);
  padding: 4px;
  border: 1px solid rgba(122, 70, 56, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(91, 58, 42, 0.09);
}

.signup-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.signup-form input {
  min-width: 0;
  flex: 1;
  height: 42px;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  font-size: 0.9rem;
}

.signup-form .button {
  min-height: 42px;
  padding: 0 25px;
  box-shadow: none;
}

.site-footer {
  position: relative;
  padding: 42px max(24px, calc((100vw - 1180px) / 2)) 18px;
  overflow: hidden;
  background: #fffdf9;
}

.site-footer::after {
  right: 5%;
  bottom: 6px;
  width: 140px;
  height: 180px;
  opacity: 0.84;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='190' viewBox='0 0 150 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c98273' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M76 190C69 127 75 78 112 29'/%3E%3Cpath d='M92 80c22-25 41-35 57-31-13 27-32 38-57 31Z'/%3E%3Cpath d='M76 109c-28-8-46-25-55-50 29 5 47 22 55 50Z'/%3E%3Cpath d='M76 143c25-23 48-33 70-29-16 27-39 37-70 29Z'/%3E%3Cpath d='M70 165c-25-7-44-22-58-46 29 2 49 18 58 46Z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 48px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 0.96rem;
  font-weight: 700;
}

.footer-grid a,
.footer-grid span,
.footer-brand p,
.copyright {
  display: block;
  color: #5f4a43;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-brand .brand strong {
  font-size: 2rem;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(122, 70, 56, 0.34);
  border-radius: 50%;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
}

.copyright {
  position: relative;
  z-index: 1;
  margin: 34px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    min-height: auto;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    padding-top: 32px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-media::before {
    inset: -20px -24px;
    border-radius: 42px;
  }

  .hero-media img {
    height: 430px;
    clip-path: inset(0 round 42px);
  }

  .offering-grid,
  .benefit-grid,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offering-card:nth-child(2),
  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .offering-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .section-pad,
  .nav-shell,
  .gallery-strip {
    width: min(100% - 32px, 1180px);
  }

  .site-header::before {
    left: -165px;
    top: -155px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.72rem;
  }

  .nav-links {
    top: 88px;
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.6rem);
  }

  .flourish {
    grid-template-columns: minmax(54px, 84px) 30px minmax(54px, 84px);
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media img {
    height: 320px;
  }

  .offerings {
    padding-top: 42px;
  }

  .offering-grid,
  .benefit-grid,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offering-card,
  .benefit-grid article,
  .offering-card:nth-child(2),
  .benefit-grid article:nth-child(2) {
    min-height: unset;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offering-card:last-child,
  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .about {
    gap: 34px;
    padding-bottom: 56px;
  }

  .about-media img {
    max-height: 290px;
  }

  .benefits {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .gallery-strip {
    margin: 48px auto;
  }

  .gallery-strip img {
    aspect-ratio: 1 / 0.78;
    border-radius: 26px;
  }

  .signup-form {
    display: grid;
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
  }

  .signup-form input,
  .signup-form .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 34px;
  }
}
