:root {
  --bg: #fff8f4;
  --bg-soft: #fff4ee;
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: rgba(255, 255, 255, 0.95);
  --ink: #231713;
  --muted: #6f5950;
  --line: rgba(155, 84, 52, 0.14);
  --brand: #b33c28;
  --brand-deep: #7a2518;
  --brand-soft: rgba(179, 60, 40, 0.1);
  --warm: #8b5a3c;
  --warm-dark: #553321;
  --shadow-soft: 0 24px 55px rgba(100, 51, 30, 0.1);
  --shadow-strong: 0 30px 80px rgba(96, 41, 19, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 190, 0.75), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 234, 224, 0.96), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, #fff7f2 40%, #fff4ef 100%);
}

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

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

.site-shell {
  overflow: clip;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 245, 0.82);
  border-bottom: 1px solid rgba(179, 60, 40, 0.1);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(179, 60, 40, 0.16), rgba(139, 90, 60, 0.16)),
    var(--paper-strong);
  border: 1px solid rgba(179, 60, 40, 0.14);
  font-family: "Noto Serif SC", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-deep);
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(35, 23, 19, 0.72);
}

.nav-links a:hover,
.nav-cta:hover,
.button:hover,
.product-card a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--brand), #c95e42);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(179, 60, 40, 0.18);
}

.hero-section {
  position: relative;
  padding: 68px 0 56px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-orb--left {
  left: -120px;
  top: 120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 211, 190, 0.85);
}

.hero-orb--right {
  right: -80px;
  top: 48px;
  width: 300px;
  height: 300px;
  background: rgba(255, 232, 222, 0.92);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 40px;
  align-items: start;
}

.hero-copy h1,
.section-heading h2,
.about-title h2,
.hero-facts-copy h2,
.contact-copy h2 {
  font-family: "Noto Serif SC", serif;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.46;
}

.eyebrow--compact {
  margin-bottom: 10px;
}

.eyebrow--light {
  color: rgba(255, 235, 230, 0.9);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.hero-copy h1 span {
  display: block;
  margin-top: 10px;
  color: var(--brand);
}

.hero-text {
  margin: 26px 0 0;
  max-width: 32rem;
  font-size: 1.08rem;
  line-height: 2;
  color: var(--muted);
}

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

.button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 0.98rem;
  font-weight: 900;
}

.button--primary {
  background: linear-gradient(135deg, var(--brand), #cd694d);
  color: #fff;
  box-shadow: 0 18px 32px rgba(179, 60, 40, 0.18);
}

.button--ghost {
  border: 1px solid rgba(179, 60, 40, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-deep);
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.hero-intro-grid article,
.about-card,
.hero-visual-card,
.hero-facts-card,
.product-card,
.process-card,
.advantage-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-intro-grid article {
  min-height: 150px;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.hero-intro-grid strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
}

.hero-intro-grid p {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-showcase {
  display: grid;
  gap: 18px;
}

.hero-visual-card,
.hero-facts-card {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 240, 0.96)),
    var(--paper);
}

.hero-visual-card {
  min-height: 410px;
  padding: 14px;
  box-shadow: var(--shadow-strong);
}

.hero-visual-card::before,
.hero-facts-card::before,
.about-card::before,
.products-section::before,
.advantages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 34%),
    repeating-linear-gradient(
      135deg,
      rgba(154, 104, 78, 0.028) 0 2px,
      transparent 2px 10px
    );
  pointer-events: none;
}

.hero-visual-stage {
  position: relative;
  min-height: 382px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #5e3a2d, #b7795c 55%, #6f4434);
}

.hero-visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 11, 8, 0.1), rgba(22, 11, 8, 0.2)),
    radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.08);
  transition:
    opacity 820ms ease,
    transform 3600ms ease;
}

.hero-visual-frame--workshop {
  object-position: center 28%;
}

.hero-visual-frame--book {
  object-position: left center;
}

.hero-visual-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-visual-dots {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    width 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
}

.hero-visual-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
}

.visual-watermark {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(4rem, 9vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

.visual-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: min(72%, 270px);
  min-height: 42px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 24px rgba(35, 23, 19, 0.12);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--warm-dark);
}

.visual-tag--top-left {
  left: 28px;
  top: 26px;
}

.visual-tag--top-right {
  right: 28px;
  top: 30px;
}

.visual-tag--bottom-left {
  left: 24px;
  bottom: 94px;
}

.visual-tag--bottom-right {
  right: 24px;
  bottom: 94px;
}

.visual-tag--center-right {
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-facts-card {
  padding: 28px;
}

.hero-facts-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.hero-facts-copy p {
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.fact-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(179, 60, 40, 0.12);
}

.fact-card strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-deep);
}

.fact-card span {
  display: block;
  margin-top: 2px;
  font-size: 0.88rem;
  font-weight: 900;
}

.fact-card p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--muted);
}

.about-section,
.products-section,
.advantages-section,
.contact-section {
  padding: 40px 0 0;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 240, 0.94)),
    var(--paper);
}

.about-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.title-divider {
  display: inline-flex;
  width: 88px;
  height: 5px;
  margin-top: 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand), #e48f74);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p,
.section-heading p,
.advantage-card p,
.contact-copy p,
.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.section-heading p {
  margin-top: 16px;
  font-size: 1rem;
}

.products-section {
  position: relative;
}

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

.product-card {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 242, 0.96)),
    var(--paper);
}

.product-swatch {
  height: 176px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.product-card--pig-top .product-swatch {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(135deg, #6f4130, #b1674d 48%, #7a4637);
}

.product-card--pig-split .product-swatch {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(135deg, #8c5e42, #d5b091 52%, #9e6d4b);
}

.product-card--sheep .product-swatch {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #c89f8b, #f0d7cf 44%, #d9b29d);
}

.product-card--cow .product-swatch {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(135deg, #3f2720, #865845 44%, #4c3027);
}

.product-card h3,
.advantage-card h3,
.process-overlay h3 {
  margin: 18px 0 0;
  font-size: 1.22rem;
  font-weight: 900;
}

.product-card p {
  margin-top: 12px;
  font-size: 0.93rem;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.product-card a:hover {
  background: var(--brand-deep);
}

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

.process-card {
  min-height: 300px;
  border-radius: 30px;
  background: #1f1613;
}

.process-card img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.process-card--samples img {
  object-position: left center;
}

.process-overlay {
  position: absolute;
  inset: auto 18px 18px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(17, 11, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff7f3;
}

.process-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.process-overlay h3 {
  margin-top: 12px;
}

.process-overlay p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 247, 243, 0.82);
}

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

.advantage-card {
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.94)),
    var(--paper);
}

.advantage-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.advantage-card p {
  margin-top: 14px;
  font-size: 0.9rem;
}

.contact-section {
  padding-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, #73281c, #4d1f17 52%, #3b1914),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-strong);
}

.contact-copy {
  color: #fff8f4;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-copy p {
  margin-top: 18px;
  max-width: 34rem;
  color: rgba(255, 239, 233, 0.84);
}

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

.contact-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.55;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.site-footer {
  border-top: 1px solid rgba(179, 60, 40, 0.08);
  background: rgba(255, 251, 248, 0.9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 28px;
}

.footer-inner strong,
.footer-inner span,
.footer-inner p {
  display: block;
}

.footer-inner strong {
  font-size: 1rem;
}

.footer-inner span,
.footer-inner p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-showcase {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .nav-bar,
  .nav-links,
  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-intro-grid,
  .hero-facts-grid,
  .process-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .visual-tag {
    max-width: calc(100% - 48px);
    font-size: 0.78rem;
  }

  .visual-tag--top-right,
  .visual-tag--center-right,
  .visual-tag--bottom-right {
    right: 18px;
  }

  .visual-tag--top-left,
  .visual-tag--bottom-left {
    left: 18px;
  }

  .visual-tag--center-right {
    top: auto;
    bottom: 144px;
    transform: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 20px, 100%);
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-visual-card,
  .hero-facts-card,
  .about-card,
  .contact-grid {
    border-radius: 26px;
  }

  .hero-visual-card {
    padding: 10px;
    min-height: 360px;
  }

  .hero-visual-stage {
    min-height: 338px;
    border-radius: 22px;
  }

  .hero-visual-dots {
    left: 18px;
    bottom: 18px;
  }

  .about-card,
  .hero-facts-card,
  .contact-grid {
    padding: 24px 18px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
