:root {
  color-scheme: light;
  --paper: #fffdf8;
  --cream: #f7efe4;
  --mist: #e9ded2;
  --ink: #23211f;
  --muted: #6f675f;
  --green: #153f39;
  --teal: #078d97;
  --sun: #ef9e25;
  --violet: #6f3b91;
  --line: rgba(35, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(44, 34, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  animation: pageGlow 18s ease-in-out infinite alternate;
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.98), rgba(240, 248, 246, 0.88), rgba(255, 239, 218, 0.9)),
    var(--cream);
  background-size: 180% 180%;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

@keyframes pageGlow {
  from {
    background-position: 0% 35%;
  }

  to {
    background-position: 100% 65%;
  }
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
}

.brand-lockup {
  display: grid;
  line-height: 1;
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 650;
  justify-self: center;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--green);
}

.hero {
  min-height: calc(100vh - 65px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  margin: 0;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.78) 36%, rgba(255, 253, 248, 0.12) 72%),
    linear-gradient(180deg, rgba(21, 63, 57, 0.04), rgba(21, 63, 57, 0.16));
  content: "";
  inset: 0;
  position: absolute;
}

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

.hero-content {
  align-content: center;
  display: grid;
  min-height: calc(100vh - 65px);
  max-width: 620px;
  padding: clamp(56px, 8vw, 116px) clamp(18px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.94;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-content p,
.section-heading p,
.product-description,
.routine-card p,
.trust-grid p,
footer {
  color: var(--muted);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button,
.secondary-button,
.product-meta a,
.contact-form button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-button,
.product-meta a,
.contact-form button {
  background: var(--green);
  color: var(--paper);
}

.secondary-button {
  background: rgba(255, 253, 248, 0.72);
  border-color: rgba(35, 33, 31, 0.25);
}

.primary-button:hover,
.secondary-button:hover,
.product-meta a:hover,
.contact-form button:hover {
  transform: translateY(-1px);
}

.brand-strip {
  background: var(--green);
  color: var(--paper);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.brand-strip span {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  min-height: 72px;
  padding: 26px 18px;
  text-align: center;
}

.brand-strip span:last-child {
  border-right: 0;
}

.products-section,
.routine-section,
.visual-story-section,
.trust-section,
.contact-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 64px);
}

.section-heading {
  margin-bottom: 36px;
  max-width: 760px;
}

.product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: 1240px;
}

.product-card {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.78fr);
  min-height: 560px;
  overflow: hidden;
}

.product-visual {
  background: color-mix(in srgb, var(--card-accent, var(--mist)) 10%, #fff 90%);
  display: block;
  overflow: hidden;
  position: relative;
}

.product-visual::after {
  background: linear-gradient(180deg, transparent 62%, rgba(255, 253, 248, 0.16));
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
}

.product-visual img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}

.product-content {
  align-content: center;
  display: grid;
  gap: 12px;
  padding: clamp(28px, 4vw, 54px);
}

.product-category {
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 850;
  margin: 0;
  text-transform: uppercase;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.highlight-list li {
  border: 1px solid rgba(35, 33, 31, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
  padding: 8px 10px;
}

.product-meta {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.price-note {
  font-weight: 800;
}

.product-meta a {
  font-size: 0.9rem;
  min-height: 42px;
  padding: 0 14px;
}

.routine-section {
  background: rgba(255, 253, 248, 0.68);
  border-top: 1px solid var(--line);
}

.routine-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1280px;
}

.routine-card {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.routine-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.routine-card div {
  padding: 20px;
}

.routine-card span {
  color: var(--violet);
  display: block;
  font-size: 0.76rem;
  font-weight: 850;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.routine-card h3 {
  color: var(--ink);
  margin-bottom: 10px;
}

.routine-card p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

.visual-story-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.visual-story-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  max-width: 1280px;
}

.visual-story-grid figure {
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 260px;
  overflow: hidden;
}

.visual-story-grid .story-large {
  grid-row: span 2;
}

.visual-story-grid figure:last-child {
  grid-column: span 2;
}

.visual-story-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.visual-story-grid figure:hover img {
  transform: scale(1.025);
}

.trust-section {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: 0.62fr 1fr;
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(21, 63, 57, 0.97), rgba(7, 141, 151, 0.82)),
    var(--green);
  color: var(--paper);
}

.trust-section .eyebrow,
.trust-section h2 {
  color: var(--paper);
}

.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  min-height: 164px;
  padding: 22px;
}

.trust-grid span {
  color: rgba(255, 253, 248, 0.68);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.trust-grid h3 {
  color: var(--paper);
}

.trust-grid p {
  color: rgba(255, 253, 248, 0.78);
  margin-bottom: 0;
}

.trust-grid a {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border-radius: 6px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 850;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 14px;
}

.contact-section {
  align-items: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: 0.8fr 1fr;
}

.contact-form {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  font-size: 0.9rem;
  font-weight: 760;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(7, 141, 151, 0.28);
  outline-offset: 2px;
}

footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.8);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 64px);
}

.footer-top-link {
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 6px;
  color: var(--paper);
  font-weight: 800;
  min-height: 40px;
  padding: 9px 14px;
}

.footer-top-link:hover {
  background: rgba(255, 253, 248, 0.1);
}

@media (max-width: 980px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.78) 48%, rgba(255, 253, 248, 0.12) 100%),
      linear-gradient(180deg, rgba(21, 63, 57, 0.04), rgba(21, 63, 57, 0.16));
  }

  .product-grid,
  .trust-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-visual {
    min-height: 520px;
  }

  .routine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .visual-story-grid .story-large {
    grid-column: span 2;
  }

  .visual-story-grid figure:last-child {
    grid-column: span 2;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-media img {
    object-position: center;
  }

  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-strip span:nth-child(2) {
    border-right: 0;
  }

  .product-visual {
    min-height: 440px;
  }

  .product-visual img {
    height: 100%;
    max-height: none;
  }

  .product-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .routine-grid {
    grid-template-columns: 1fr;
  }

  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .visual-story-grid .story-large {
    grid-column: auto;
  }

  .visual-story-grid figure:last-child {
    grid-column: auto;
  }

  .visual-story-grid figure {
    min-height: 330px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
