:root {
  --bg: #f8eae2;
  --bg-soft: #fff8f4;
  --surface: rgba(255, 250, 247, 0.82);
  --surface-strong: #ffffff;
  --text: #2a221f;
  --muted: #73635d;
  --brand: #7b5b62;
  --brand-strong: #5f444a;
  --accent: #c98e7d;
  --accent-soft: #e7c2b8;
  --line: rgba(42, 34, 31, 0.08);
  --shadow: 0 20px 58px rgba(42, 34, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 142, 125, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(123, 91, 98, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf7 0%, var(--bg) 46%, #f3dbd1 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(32, 31, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--brand), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-strong);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  border: 1px solid rgba(123, 91, 98, 0.18);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(95, 68, 74, 0.2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(123, 91, 98, 0.09);
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--brand-strong);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  display: grid;
  gap: 1.5rem;
}

.home-main {
  padding-bottom: 0.5rem;
}

section {
  scroll-margin-top: 6.5rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
  min-height: calc(100vh - 120px);
  padding: 1rem 0 0.5rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1rem 0 0.5rem;
}

.page-hero-copy,
.page-hero-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-hero-copy {
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-copy .lede {
  margin-top: 1rem;
}

.page-hero-card {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-hero-card ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-hero-card li {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 250, 247, 0.8);
  border: 1px solid rgba(42, 34, 31, 0.06);
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy,
.hero-card,
.panel,
.product-card,
.blog-card,
.contact-card,
.sustainability-card,
.objective {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.9rem;
}

.lede,
.story-panel p,
.panel p,
.product-card p,
.blog-card p,
.contact-card p,
.objective p,
.sustainability-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.lede {
  max-width: 58ch;
  margin: 1.3rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(95, 68, 74, 0.2);
}

.button-secondary {
  border: 1px solid rgba(123, 91, 98, 0.16);
  background: rgba(255, 250, 247, 0.84);
}

.hero-card {
  overflow: hidden;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #846e68;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-art {
  position: relative;
  min-height: 420px;
  margin: 1rem 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(123, 91, 98, 0.96), rgba(95, 68, 74, 0.96) 54%, rgba(201, 142, 125, 0.96));
}

.hero-art::before,
.hero-art::after,
.pattern {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.hero-art::before {
  width: 240px;
  height: 240px;
  right: -40px;
  top: -30px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-art::after {
  width: 180px;
  height: 180px;
  left: -30px;
  bottom: -40px;
  background: rgba(255, 255, 255, 0.08);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 180px;
  height: 180px;
  right: 14%;
  top: 14%;
  background: radial-gradient(circle at 35% 35%, #f1d2c8, rgba(241, 210, 200, 0.08));
  opacity: 0.88;
}

.orb-two {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05));
  opacity: 0.62;
}

.pattern {
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.07) 40% 41%, transparent 41% 100%),
    linear-gradient(300deg, transparent 0 53%, rgba(255, 255, 255, 0.05) 53% 54%, transparent 54% 100%);
  opacity: 0.7;
}

.hero-card-bottom h2 {
  color: var(--brand-strong);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.hero-card-bottom p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.content-grid,
.vision-mission {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.panel,
.product-card,
.blog-card,
.contact-card,
.sustainability-card,
.objective {
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.panel-accent {
  background:
    linear-gradient(135deg, rgba(201, 142, 125, 0.1), rgba(255, 255, 255, 0.76)),
    var(--surface);
}

.metrics {
  display: grid;
  gap: 1rem;
}

.metrics div {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 250, 247, 0.84);
  border: 1px solid rgba(42, 34, 31, 0.06);
}

.metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.metrics span {
  color: var(--muted);
  line-height: 1.6;
}

.story,
.products,
.sustainability,
.blog,
.contact {
  display: grid;
  gap: 1.2rem;
}

.section-heading {
  max-width: 58rem;
}

.section-heading h2 {
  max-width: 15ch;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
}

.story-panel {
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-highlight {
  background: linear-gradient(160deg, rgba(123, 91, 98, 0.98), rgba(95, 68, 74, 0.98));
}

.story-highlight p {
  color: rgba(255, 255, 255, 0.86);
}

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

.product-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.product-card h3,
.objective h3,
.blog-card h3 {
  margin-bottom: 0.75rem;
}

.vision-mission .panel h2 {
  max-width: 15ch;
}

.sustainability-card {
  background: linear-gradient(135deg, rgba(201, 142, 125, 0.12), rgba(255, 250, 247, 0.84));
}

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

.objective {
  background: rgba(255, 250, 247, 0.84);
}

.blog-card,
.contact-card {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}

.contact-card {
  align-items: start;
}

.home-links {
  display: grid;
  gap: 1.2rem;
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-link-card {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.84);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-link-card:hover,
.home-link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(42, 34, 31, 0.12);
}

.home-link-card span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-link-card strong {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .hero,
  .page-hero,
  .content-grid,
  .story-layout,
  .vision-mission,
  .product-grid,
  .objective-grid,
  .home-link-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero {
    min-height: auto;
  }

  .section-heading h2 {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 0.5rem;
  }

  .site-header {
    flex-wrap: wrap;
    top: 0.5rem;
    padding: 0.85rem;
    border-radius: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 0.75rem;
  }

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

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-top: 1px solid rgba(42, 34, 31, 0.08);
  }

  .nav-cta {
    text-align: center;
    border-top: 0;
    margin-top: 0.25rem;
  }

  .hero-art {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.7rem);
  }
}
