:root {
  --rose:      #7D1B36;
  --rose-light: #a8284e;
  --cream:     #FAF5EF;
  --cream-deep: #F0E8DF;
  --ink:       #1C1412;
  --ink-soft:  #4A3F38;
  --gold:      #B8955A;
  --border:    rgba(125,27,54,0.15);
  --radius:    4px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.01em;
}
.nav__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__headline em {
  color: var(--rose);
  font-style: italic;
}
.hero__body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 440px;
  line-height: 1.7;
}
.hero__visual {
  position: relative;
}
.hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 24px 64px rgba(125,27,54,0.14);
}
.hero__img-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── CRAFT ── */
.craft {
  background: var(--cream-deep);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.craft__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.craft__item { display: flex; flex-direction: column; gap: 12px; }
.craft__icon {
  color: var(--rose);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.craft__item h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.craft__item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── CATEGORIES ── */
.categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}
.categories__header {
  margin-bottom: 64px;
}
.categories__eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.categories__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--ink);
  max-width: 520px;
  line-height: 1.2;
}
.categories__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.categories__card {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.categories__card--right {
  flex-direction: row;
  align-items: center;
}
.categories__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.categories__card-body {
  padding: 32px;
}
.categories__card-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.categories__card-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.categories__visual-placeholder {
  flex: 1;
  background: linear-gradient(135deg, #f5ede5 0%, #faf5ef 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.categories__visual-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(125,27,54,0.04) 20px,
    rgba(125,27,54,0.04) 21px
  );
}
.categories__visual-label {
  font-family: var(--font-head);
  font-size: 18px;
  font-style: italic;
  color: var(--rose);
  position: relative;
  z-index: 1;
}
.categories__single {
  background: var(--rose);
  border-radius: 2px;
  padding: 40px 48px;
}
.categories__single-body h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: #FAF5EF;
  margin-bottom: 10px;
}
.categories__single-body p {
  font-size: 15px;
  color: rgba(250,245,239,0.75);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  background: var(--ink);
  padding: 100px 48px;
}
.closing__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing__quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  color: #FAF5EF;
  line-height: 1.35;
}
.closing__body {
  font-size: 16px;
  color: rgba(250,245,239,0.65);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--rose);
}
.footer__sub {
  font-size: 13px;
  color: var(--ink-soft);
}
.footer__note {
  font-size: 13px;
  color: var(--ink-soft);
}
.footer__link {
  color: var(--rose);
  text-decoration: none;
}
.footer__link:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px; grid-template-columns: 1fr; gap: 40px; }
  .craft { padding: 56px 24px; }
  .craft__grid { grid-template-columns: 1fr; gap: 40px; }
  .categories { padding: 64px 24px; }
  .categories__row { grid-template-columns: 1fr; }
  .categories__card--right { flex-direction: column; }
  .closing { padding: 64px 24px; }
  .closing__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 24px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}