:root {
  --coral-stone: #f7f4ee;
  --beach-linen: #eee7dc;
  --sea-glass: #d7eef2;
  --barbados-water: #74d8eb;
  --caribbean-sky: #a9ddf7;
  --palm-green: #7e9b8b;
  --ink: #181715;
  --ink-soft: #45443f;
  --white: #fffdf8;
  --line: rgba(24, 23, 21, 0.16);
  --shadow: 0 22px 54px rgba(36, 74, 82, 0.14);
  --font-display: "DM Serif Display", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --section-column-split: minmax(0, 1fr) minmax(0, 1fr);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--coral-stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 {
  max-width: 9.5em;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: 1.1;
}

h2 {
  max-width: 10em;
  font-size: clamp(2.3rem, 3.8vw, 4.4rem);
  line-height: 1.1;
}

p,
li,
label {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

strong {
  color: var(--ink);
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: min(820px, 88vh);
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.94) 0%, rgba(247, 244, 238, 0.84) 31%, rgba(247, 244, 238, 0.22) 55%, rgba(247, 244, 238, 0.02) 100%),
    linear-gradient(0deg, rgba(247, 244, 238, 0.16), rgba(215, 238, 242, 0.06));
}

.hero__content {
  width: min(100%, 860px);
  min-height: min(820px, 88vh);
  padding: clamp(2.25rem, 5vw, 5rem) clamp(1.4rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.brand-name {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.brand-kicker,
.eyebrow {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-kicker {
  margin-top: 0.8rem;
}

.eyebrow {
  font-family: var(--font-body);
}

.hero h1 {
  margin-top: clamp(2rem, 4vh, 3.4rem);
}

.hero__lede {
  width: min(100%, 380px);
  margin-top: 1.45rem;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.55;
}

.hero__subcopy {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.signup {
  width: min(100%, 520px);
  margin-top: 1.25rem;
}

.signup__row {
  display: flex;
  min-height: 58px;
  border: 1px solid rgba(24, 23, 21, 0.22);
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(10px);
}

.signup input[type="email"] {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-family: var(--font-body);
  font-weight: 300;
  padding: 0 1.5rem;
}

.signup input[type="email"]::placeholder {
  color: rgba(24, 23, 21, 0.7);
}

.signup button {
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 0 2rem;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.cta,
button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup button:hover,
.signup button:focus-visible {
  background: #244a52;
  transform: translateY(-1px);
}

.signup__confirm {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.signup__confirm input {
  width: 18px;
  height: 18px;
  accent-color: var(--barbados-water);
}

.section-grid {
  display: grid;
  grid-template-columns: var(--section-column-split);
  border-top: 8px solid var(--coral-stone);
}

.panel-copy {
  padding: clamp(2.7rem, 5.5vw, 5.5rem) clamp(1.5rem, 6vw, 6.5rem);
}

.story {
  background: linear-gradient(135deg, var(--coral-stone), var(--white) 72%, var(--sea-glass));
}

.story__copy {
  align-self: center;
}

.story__copy .eyebrow {
  max-width: 19rem;
  color: #244a52;
}

.story__copy h2 {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 2.55vw, 3.15rem);
}

.section-lede {
  margin-top: 1rem;
  max-width: 34rem;
  color: #244a52;
  font-weight: 400;
}

.panel-copy p + p {
  margin-top: 1rem;
}

.story__poem {
  margin-top: 1rem;
  max-width: 34rem;
}

.story__poem p {
  line-height: 1.5;
}

.story__poem p + p {
  margin-top: 0.55rem;
}

.story__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(215, 238, 242, 0.38));
}

.story__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lifestyle {
  background: var(--white);
}

.lifestyle__image {
  min-height: 460px;
  overflow: hidden;
}

.lifestyle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lifestyle__copy {
  align-self: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 244, 238, 0.88)),
    radial-gradient(circle at 92% 18%, rgba(116, 216, 235, 0.24), transparent 36%);
}

.lifestyle__copy .eyebrow {
  color: #55746a;
}

.lifestyle__copy h2 {
  margin-top: 1.5rem;
  max-width: 12.5em;
  font-size: clamp(2rem, 2.55vw, 3.15rem);
}

.lifestyle__copy p:first-of-type {
  margin-top: clamp(2.25rem, 3vw, 3rem);
  max-width: 34rem;
}

.desktop-line-break {
  display: none;
}

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.journey-link:hover,
.journey-link:focus-visible {
  color: #244a52;
}

.footer-banner {
  position: relative;
  height: min(24vw, 250px);
  min-height: 160px;
  overflow: hidden;
  border-top: 8px solid var(--coral-stone);
}

.footer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.05) brightness(1.04);
}

.footer-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.05), rgba(247, 244, 238, 0.18));
}

.footer-banner__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(88%, 430px);
  padding: 1.2rem 2rem;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(247, 244, 238, 0.34);
  backdrop-filter: blur(6px);
}

.footer-banner__logo .brand-name,
.footer-banner__logo .brand-kicker {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 7vw, 8rem);
  background: var(--coral-stone);
  border-top: 1px solid rgba(24, 23, 21, 0.1);
}

.site-footer p,
.site-footer a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p:nth-child(2) {
  text-align: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.site-footer p:last-child {
  text-align: right;
}

.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;
}

@media (min-width: 981px) {
  .hero__lede,
  .story__copy .eyebrow {
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }

  .lifestyle {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .desktop-line-break {
    display: block;
  }
}

@media (max-width: 980px) {
  .hero__veil {
    background: linear-gradient(90deg, rgba(247, 244, 238, 0.96), rgba(247, 244, 238, 0.7) 58%, rgba(247, 244, 238, 0.18));
  }

  .section-grid,
  .lifestyle {
    grid-template-columns: 1fr;
  }

  .story__visual {
    min-height: 560px;
  }

  .story__visual img {
    height: auto;
    width: min(82%, 430px);
    filter: drop-shadow(var(--shadow));
  }

  .lifestyle__image {
    min-height: 520px;
  }

  .lifestyle__copy {
    order: 2;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero__content {
    padding: 2rem 1.2rem;
  }

  .hero__image {
    object-position: 70% center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(247, 244, 238, 0.82) 52%, rgba(215, 238, 242, 0.18));
  }

  .signup__row {
    flex-direction: column;
    border: 0;
    background: transparent;
    gap: 0.75rem;
  }

  .signup input[type="email"],
  .signup button {
    min-height: 58px;
    border: 1px solid rgba(24, 23, 21, 0.22);
  }

  .signup input[type="email"] {
    background: rgba(255, 253, 248, 0.8);
  }

  .panel-copy {
    padding: 3rem 1.25rem;
  }

  .story__visual,
  .lifestyle__image {
    min-height: 430px;
  }

  .story__visual img {
    width: min(82%, 390px);
  }

  .footer-banner__logo {
    padding: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer p:nth-child(2) {
    border: 0;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}
