:root {
  --bg: #f8eee7;
  --paper: #fffaf5;
  --text: #6f513a;
  --muted: #9a7d66;
  --gold: #b78a50;
  --gold-dark: #9d7240;
  --line: rgba(157, 114, 64, .22);
  --shadow: 0 22px 70px rgba(90, 57, 35, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Helvetica, Arial, sans-serif;
  min-height: 100vh;
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  background: linear-gradient(135deg, #fff9f3 0%, #f8eee7 58%, #f1dfd4 100%);
}

.content {
  padding: clamp(42px, 5vw, 86px) clamp(34px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: min(285px, 72%);
  height: auto;
  display: block;
  opacity: .92;
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

h1 {
  font-family: Didot, 'Bodoni MT', 'Bodoni 72', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(44px, 3.45vw, 58px);
  line-height: .96;
  letter-spacing: -.032em;
  margin: 0;
  max-width: 520px;
  color: #74523a;
}
h1 span { display: block; }
h1 span + span { margin-top: .04em; }

.lead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .015em;
  margin: 26px 0 28px;
  color: #927761;
  max-width: 500px;
}

.signup { max-width: 610px; }
.field-row {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(183,138,80,.17);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(128, 90, 59, .06);
}
.mail-icon { font-size: 22px; color: var(--gold-dark); }
.field-row input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: var(--text);
}
.field-row input::placeholder { color: #aa8e79; }

button {
  width: 100%;
  margin-top: 12px;
  min-height: 58px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #c39a61, #ac7d43);
  color: white;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(142, 99, 55, .18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
button:hover { transform: translateY(-1px); box-shadow: 0 15px 32px rgba(142,99,55,.24); }
button:disabled { opacity: .65; cursor: wait; transform: none; }

.microcopy, .form-status {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin: 10px 6px 0;
}
.microcopy a { color: inherit; }
.form-status { min-height: 18px; font-weight: 600; }
.form-status.success { color: #547247; }
.form-status.error { color: #a44b43; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin-top: 34px;
  max-width: 620px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.benefit {
  min-height: 82px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  text-align: center;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-right: 1px solid var(--line);
}
.benefit:first-child { padding-left: 0; }
.benefit:last-child { border-right: 0; padding-right: 0; }
.icon { font-size: 21px; line-height: 1; filter: saturate(.65); }

.visual {
  min-height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: inset 30px 0 60px rgba(251,242,235,.38);
}
.visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,238,231,.22), transparent 22%);
  pointer-events: none;
}
.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

footer {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(24px, 5vw, 72px);
  background: #f5e7dd;
  color: #896d58;
  font-size: 12px;
  border-top: 1px solid rgba(157,114,64,.1);
}
footer nav { display: flex; gap: 18px; }
footer a { color: inherit; text-decoration: none; }
footer a:hover { text-decoration: underline; }

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

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .content { padding: 38px 24px 30px; }
  .visual { min-height: 56vh; order: -1; }
  .visual img { aspect-ratio: 1 / 1; height: auto; object-position: 52% 48%; }
  .brand-logo { width: min(245px, 70%); }
  h1 { font-size: clamp(44px, 10vw, 58px); line-height: .98; }
  .lead { font-size: 18px; margin-top: 24px; }
  .benefits { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(3), .benefit:nth-child(4) { border-top: 1px solid var(--line); padding-top: 16px; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .content { padding-left: 18px; padding-right: 18px; }
  .visual { min-height: 48vh; }
  h1 { font-size: clamp(40px, 12vw, 52px); }
  .eyebrow { letter-spacing: .27em; }
  button { letter-spacing: .10em; font-size: 12px; }
}


/* CHILLOU DOGS – centered luxury layout v4 */
.content {
  align-items: center;
  text-align: center;
}

.brand {
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand-logo {
  width: min(255px, 58%);
  margin: 0 auto 16px;
}

.copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 24px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .48em;
}

h1 {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  font-family: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(43px, 3.15vw, 55px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.025em;
}

h1 span {
  display: block;
}

.lead {
  max-width: 520px;
  margin: 25px auto 28px;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .015em;
}

.signup {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.microcopy,
.form-status {
  text-align: center;
}

.benefits {
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .brand-logo {
    width: min(235px, 62%);
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    max-width: 500px;
    font-size: clamp(42px, 9vw, 55px);
  }

  .lead {
    max-width: 480px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: min(220px, 66%);
  }

  h1 {
    font-size: clamp(39px, 11vw, 49px);
  }
}
