:root {
  --ink: #2d2528;
  --muted: #6f6064;
  --paper: #fffaf4;
  --surface: #fffdf8;
  --sage: #2f7f73;
  --rose: #c85f6a;
  --plum: #7b4d86;
  --gold: #d89a46;
  --line: rgba(45, 37, 40, 0.14);
  --shadow: 0 18px 46px rgba(45, 37, 40, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  min-height: calc(100vh - 75px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.12;
}

.hero-copy > p:not(.eyebrow),
.section-heading + p,
.contact-section p,
.note-band p,
.product-card p,
.shelf-grid p,
.intro p {
  color: var(--muted);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.18rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  background: transparent;
}

.hero-media {
  width: 100%;
  min-height: 430px;
  max-height: 690px;
  aspect-ratio: 1.2;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #eaded6;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro {
  background: var(--ink);
}

.intro p {
  max-width: 1040px;
  margin: 0 auto;
  color: #fff7f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.12;
  text-align: center;
}

.celebration-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: #ffdf5e;
}

.celebration-section img {
  width: calc(100% + 2cm);
  max-width: none;
  max-height: 860px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d91f65;
  justify-self: center;
}

.celebration-copy {
  max-width: 650px;
}

.celebration-copy .eyebrow {
  color: var(--plum);
}

.celebration-copy p:not(.eyebrow) {
  color: rgba(45, 37, 40, 0.76);
  font-size: 1.12rem;
}

.celebration-copy .button {
  margin-top: 18px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 37, 40, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card p {
  margin: 14px 0 0;
}

.feature-card {
  border-top: 6px solid var(--sage);
}

.text-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--rose);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.shelf-section {
  background: #f0f7f4;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: var(--surface);
}

.feature-strip img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-strip p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-strip .button {
  margin-top: 18px;
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shelf-grid article {
  position: relative;
  min-height: 360px;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 37, 40, 0.1);
}

.shelf-grid .wide-card {
  grid-column: span 2;
}

.shelf-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.shelf-grid article > div {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 20px 20px;
  background: linear-gradient(0deg, rgba(21, 17, 19, 0.82), rgba(21, 17, 19, 0));
}

.shelf-grid span {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.shelf-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.note-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: end;
  gap: 32px;
  background: var(--gold);
}

.note-band .eyebrow,
.note-band p {
  color: rgba(45, 37, 40, 0.78);
}

.note-band p {
  margin: 0;
  font-size: 1.15rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.recommendation-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .contact-section,
  .celebration-section,
  .feature-strip,
  .note-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-video {
    min-height: 300px;
    max-height: none;
  }

  .product-grid,
  .shelf-grid {
    grid-template-columns: 1fr;
  }

  .shelf-grid .wide-card {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 2.8rem;
  }

  .button {
    width: 100%;
  }
}
