:root {
  --ink: #1b1a18;
  --muted: #6b645e;
  --paper: #fff8ef;
  --surface: #ffffff;
  --soft: #f5e8d6;
  --line: #e1d0bd;
  --accent: #c3406b;
  --accent-dark: #8f2149;
  --green: #28765e;
  --gold: #b9872b;
  --shadow: 0 24px 70px rgba(79, 45, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 248, 239, 0.92);
  border-bottom: 1px solid rgba(225, 208, 189, 0.85);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: #3e3832;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-shop {
  padding: 10px 16px !important;
  color: #fff !important;
  background: var(--accent);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 83px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) 56px;
  background:
    linear-gradient(120deg, rgba(255, 248, 239, 0.98), rgba(245, 232, 214, 0.72)),
    radial-gradient(circle at 88% 20%, rgba(195, 64, 107, 0.12), transparent 30%);
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-copy p,
.page-hero p,
.lead,
.split-copy,
.category-card p,
.values-grid p,
.timeline span,
.product-panel p,
.business-grid p,
.director-aside li,
.contact-cards span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow),
.page-hero p,
.lead {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(79, 45, 22, 0.14);
}

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

.button.secondary {
  background: var(--surface);
}

.hero-products {
  position: relative;
  min-height: 630px;
}

.feature-img {
  position: absolute;
  object-fit: cover;
  background: var(--surface);
  border: 10px solid var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-img.large {
  left: 5%;
  top: 0;
  width: 58%;
  height: 600px;
}

.feature-img.small {
  right: 0;
  width: 46%;
  height: 230px;
}

.feature-img.top {
  top: 42px;
}

.feature-img.bottom {
  bottom: 42px;
}

.section-pad,
.band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--surface);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.section-heading {
  max-width: 820px;
}

.category-grid,
.values-grid,
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.values-grid article,
.business-grid article,
.contact-cards article,
.note-card,
.director-aside,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 34px rgba(79, 45, 22, 0.06);
}

.category-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.category-card span {
  margin-bottom: auto;
  color: var(--green);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #203d35;
}

.proof-strip div {
  padding: 30px clamp(18px, 4vw, 54px);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.split-copy p {
  margin-bottom: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--accent-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.page-hero {
  padding: clamp(74px, 11vw, 130px) clamp(18px, 5vw, 72px) clamp(52px, 8vw, 86px);
  background:
    linear-gradient(120deg, rgba(255, 248, 239, 0.95), rgba(245, 232, 214, 0.78)),
    linear-gradient(45deg, rgba(40, 118, 94, 0.12), transparent 52%);
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.values-band {
  background: #f0e6d8;
}

.values-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-grid article,
.business-grid article {
  padding: 24px;
}

.timeline ol,
.director-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline ol {
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  font-size: 1.2rem;
}

.director-hero {
  background: #203d35;
  color: #fff;
}

.director-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.36fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.director-photo {
  width: min(360px, 100%);
  justify-self: end;
  background: #fff;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.director-photo svg {
  display: block;
  width: 100%;
  height: auto;
}

.director-hero .eyebrow,
.director-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.director-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.director-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.director-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 5vw, 62px);
}

.note-card,
.director-aside {
  padding: clamp(24px, 4vw, 42px);
}

.note-card p {
  color: #4e463e;
  font-size: 1.05rem;
  line-height: 1.78;
}

.director-aside li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.director-aside .text-link {
  margin-top: 22px;
}

.product-showcase {
  display: grid;
  gap: 28px;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(79, 45, 22, 0.08);
}

.product-panel.reverse {
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
}

.product-panel.reverse img {
  order: 2;
}

.product-panel img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  background: #faf4eb;
  border-radius: 12px;
}

.business-grid {
  margin-top: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

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

.contact-cards article {
  min-height: 190px;
  padding: 24px;
}

.contact-cards a,
.contact-cards span {
  display: block;
  margin-top: 8px;
}

.contact-cards a {
  color: var(--accent-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #3e3832;
  font-weight: 900;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(195, 64, 107, 0.16);
  border-color: var(--accent);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #1b1a18;
  color: #fff;
}

.site-footer img {
  width: 130px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  justify-items: end;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(310px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .nav-shop {
    margin-top: 6px;
    text-align: center;
  }

  .hero,
  .intro-band,
  .split,
  .director-profile-hero,
  .director-note,
  .contact-layout,
  .product-panel,
  .product-panel.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-products {
    min-height: 520px;
  }

  .feature-img.large {
    left: 0;
    width: 56%;
    height: 500px;
  }

  .feature-img.small {
    width: 48%;
  }

  .product-panel.reverse img {
    order: 0;
  }

  .director-photo {
    justify-self: start;
  }

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

@media (max-width: 680px) {
  .brand img {
    width: 124px;
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .hero-products {
    display: grid;
    min-height: 0;
    gap: 14px;
  }

  .feature-img,
  .feature-img.large,
  .feature-img.small {
    position: static;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
  }

  .category-grid,
  .values-grid,
  .business-grid,
  .proof-strip,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer,
  .site-footer div:last-child {
    display: grid;
    justify-items: start;
  }
}
