:root {
  --ink: #202126;
  --soft-ink: #4e5056;
  --muted: #7f7d78;
  --paper: #faf7f2;
  --paper-warm: #f5eee6;
  --line: rgba(61, 50, 39, 0.18);
  --gold: #b98745;
  --gold-soft: #d4ad73;
  --black: #17191d;
  --site-max: 1660px;
  --serif: "Bodoni 72", Didot, "Libre Baskerville", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --script: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #eee9e3;
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  width: min(100%, var(--site-max));
  min-height: 70px;
  margin-inline: auto;
  padding: 12px clamp(24px, 4vw, 52px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  background: rgba(250, 247, 243, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #232326;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.88rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: clamp(31px, 2.7vw, 39px);
  height: clamp(24px, 2.2vw, 30px);
  object-fit: contain;
  flex: 0 0 auto;
}

.hero {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  background-image:
    linear-gradient(90deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 0.08) 31%, rgba(250, 247, 242, 0.8) 44%, rgba(250, 247, 242, 0.98) 64%, rgba(250, 247, 242, 0.98) 100%),
    url("images/site-background.jpg");
  background-size: 100% 100%, auto 116%;
  background-position: center, left top;
  background-repeat: no-repeat;
  min-height: clamp(552px, 35vw, 610px);
}

.hero-inner {
  width: min(100%, 1540px);
  min-height: clamp(552px, 35vw, 610px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 38%) minmax(390px, 1fr) minmax(330px, 410px);
  align-items: start;
  gap: clamp(34px, 3.2vw, 52px);
  padding: clamp(58px, 5.5vw, 76px) clamp(28px, 4vw, 52px) 34px;
}

.hero-copy {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.subscribe-box h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3rem, 3.85vw, 3.62rem);
  line-height: 1.03;
}

.hero-copy h1 .title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 .title-dot {
  color: var(--gold);
  display: inline;
}

.ornament,
.small-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--gold);
}

.ornament {
  width: 210px;
  margin: 22px 0 20px;
}

.ornament span,
.small-ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, currentColor);
}

.ornament span:last-child,
.small-ornament span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.ornament img {
  width: 20px;
  height: 15px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-text {
  max-width: 430px;
  margin: 0;
  color: #34363b;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  line-height: 1.58;
}

.signature {
  display: block;
  width: clamp(295px, 25vw, 395px);
  max-width: 100%;
  height: auto;
  margin: 28px 0 0;
  object-fit: contain;
  transform: rotate(-1.5deg);
}

.signup-panel {
  width: 100%;
  min-width: 0;
  padding-top: 4px;
}

.subscribe-box {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 392px;
  padding: clamp(34px, 3.4vw, 50px) clamp(28px, 3vw, 44px);
  border: 1px solid rgba(185, 135, 69, 0.75);
  background: rgba(250, 248, 245, 0.58);
  box-shadow: 0 10px 30px rgba(34, 27, 19, 0.16);
  text-align: center;
}

.subscribe-box::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 135, 69, 0.55);
  pointer-events: none;
}

.subscribe-box > * {
  position: relative;
  z-index: 1;
}

.subscribe-box h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  line-height: 1.12;
}

.small-ornament {
  width: 102px;
  margin: 18px auto 18px;
}

.small-ornament img {
  width: 14px;
  height: 11px;
  object-fit: contain;
  flex: 0 0 auto;
}

.signup-intro {
  margin: 0 auto 24px;
  color: var(--soft-ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.brevo-placeholder {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--soft-ink);
  text-align: left;
}

.brevo-placeholder .sib-form-container,
.brevo-placeholder #sib-container,
.brevo-placeholder #sib-form {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  direction: ltr;
}

.brevo-placeholder .sib-form-block {
  padding: 0;
}

.brevo-placeholder .entry__label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brevo-placeholder .entry__label[data-required]::after {
  content: " *";
  color: var(--gold);
}

.brevo-placeholder .entry__field {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brevo-placeholder #EMAIL {
  width: 100%;
  min-height: 49px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(77, 67, 56, 0.34);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.brevo-placeholder #EMAIL::placeholder {
  color: #99938b;
  font-family: var(--sans);
  opacity: 1;
}

.brevo-placeholder #EMAIL:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(185, 135, 69, 0.12);
}

.brevo-placeholder .entry__error {
  display: block;
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8f2f2f;
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.4;
}

.brevo-placeholder .brevo-submit {
  margin-top: 13px;
  text-align: center;
}

.brevo-placeholder .sib-form-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 49px;
  margin: 0;
  padding: 13px 20px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--black);
  color: #faf7f2;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.brevo-placeholder .sib-form-block__button:hover,
.brevo-placeholder .sib-form-block__button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #17191d;
}

.brevo-placeholder .progress-indicator__icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: currentColor;
}

.brevo-placeholder .recaptcha-notice {
  margin: 9px 0 0;
  color: #8a8178;
  font-family: var(--sans);
  font-size: 0.64rem;
  line-height: 1.45;
  text-align: center;
}

.brevo-placeholder .recaptcha-notice a {
  color: #74695e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.brevo-placeholder .g-recaptcha,
.brevo-placeholder .input--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.brevo-placeholder .brevo-message {
  width: 100%;
  max-width: none;
  margin: 0 0 13px;
  padding: 10px 12px;
  border: 1px solid;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
}

.brevo-placeholder .brevo-message--error {
  border-color: rgba(143, 47, 47, 0.42);
  background: #fff2f0;
  color: #762828;
}

.brevo-placeholder .brevo-message--success {
  border-color: rgba(48, 111, 74, 0.38);
  background: #eef8f1;
  color: #235c38;
}

.brevo-placeholder .sib-form-message-panel__text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0;
}

.brevo-placeholder .sib-notification__icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
  fill: currentColor;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #8a8178;
  font-size: 0.82rem;
  line-height: 1.4;
}

.privacy-note img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex: 0 0 auto;
}

.benefits {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding: 12px clamp(22px, 4vw, 52px) 22px;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.98), #fbf9f6);
  border-top: 1px solid rgba(70, 58, 45, 0.08);
}

.section-heading {
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 6px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 2.35vw, 2.42rem);
  line-height: 1.18;
}

.ornament.compact {
  width: 174px;
  margin: 9px auto 18px;
}

.benefit-grid {
  width: min(100%, 1030px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefit-card {
  min-width: 0;
  padding: 0 24px 0;
  text-align: center;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.benefit-card img {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0 0 6px;
  color: #22242a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0 auto;
  max-width: 150px;
  color: #45474c;
  font-size: 0.82rem;
  line-height: 1.32;
}

.site-footer {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  background: var(--black);
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(14px, 2vw, 22px);
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 52px);
  background: radial-gradient(circle at 50% 20%, #262a30, var(--black) 58%);
  color: #dcc39b;
}

.quote-band span {
  width: min(225px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 195, 155, 0.72));
}

.quote-band span:last-child {
  background: linear-gradient(90deg, rgba(220, 195, 155, 0.72), transparent);
}

.quote-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.2;
  text-align: center;
}

.quote-band img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 6px 20px 11px;
  color: #bfae92;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: #f0d29d;
}

.legal-links span {
  color: rgba(220, 195, 155, 0.36);
}

@media (max-width: 1279px) {
  .site-header {
    justify-content: center;
    min-height: 64px;
  }

  .hero {
    min-height: 0;
    background-image:
      linear-gradient(180deg, rgba(250, 247, 242, 0) 0, rgba(250, 247, 242, 0.12) 330px, rgba(250, 247, 242, 0.88) 560px, #faf7f2 675px, #faf7f2 100%),
      url("images/site-background.jpg");
    background-size: 100% 100%, auto clamp(610px, 62vw, 760px);
    background-position: center, 27% top;
    background-repeat: no-repeat;
  }

  .hero-inner {
    min-height: 0;
    display: block;
    padding: clamp(590px, 62vw, 710px) clamp(22px, 6vw, 54px) 44px;
  }

  .hero-copy,
  .signup-panel {
    width: min(100%, 630px);
    max-width: 630px;
    margin: 0 auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-text {
    width: min(100%, 430px);
    margin-left: auto;
    margin-right: auto;
  }

  .ornament {
    margin-left: auto;
    margin-right: auto;
  }

  .signature {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .signup-panel {
    margin-top: 38px;
  }

  .subscribe-box {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(250, 247, 242, 0) 0, rgba(250, 247, 242, 0.1) 260px, rgba(250, 247, 242, 0.88) 440px, #faf7f2 540px, #faf7f2 100%),
      url("images/site-background.jpg");
    background-size: 100% 100%, auto clamp(510px, 112vw, 620px);
    background-position: center, 28% top;
  }

  .hero-inner {
    padding-top: clamp(500px, 78vw, 580px);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .benefit-card {
    padding: 0 clamp(16px, 5vw, 32px);
  }

  .benefit-card + .benefit-card {
    border-left: 0;
  }

  .benefit-card:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .quote-band span {
    width: min(110px, 14vw);
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 12px;
    font-size: clamp(1.05rem, 5vw, 1.3rem);
  }

  .brand-mark {
    width: 30px;
    height: 23px;
  }

  .hero {
    background-size: 100% 100%, auto clamp(430px, 118vw, 520px);
    background-position: center, 30% top;
  }

  .hero-inner {
    padding-top: clamp(500px, 128vw, 620px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1 {
    max-width: 340px;
    font-size: clamp(2.1rem, 9.4vw, 2.45rem);
  }

  .hero-copy h1 .title-line {
    white-space: normal;
  }

  .hero-text {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: 0.96rem;
  }

  .signup-panel {
    width: min(100%, 340px);
  }

  .signup-intro {
    max-width: 270px;
    margin-inline: auto;
  }

  .brevo-placeholder {
    max-width: 286px;
    margin-inline: auto;
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  .subscribe-box {
    padding: 34px 20px;
  }

  .subscribe-box::before {
    inset: 6px;
  }

  .benefits {
    padding-top: 22px;
  }

  .section-heading h2 {
    width: min(100%, 300px);
    margin-inline: auto;
    font-size: clamp(1.65rem, 7vw, 1.95rem);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-card,
  .benefit-card:nth-child(even) {
    border-left: 0;
  }

  .benefit-card {
    padding: 0;
  }

  .quote-band {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .quote-band span {
    width: 72px;
  }

  .quote-band p {
    flex: 1 1 100%;
    order: -1;
  }
}
