/* ─────────────────────────────────────────
   TERRA FORMA — Brand Identity Kit
   Typography: Cormorant Garamond + Cabinet Grotesk
   Palette: Terracotta Studio
───────────────────────────────────────── */

:root {
  --kiln:      #B5563E;
  --clay:      #D4896A;
  --linen:     #F2E6D9;
  --earth:     #3D2B1F;
  --porcelain: #FAF8F5;
  --mid:       #8C6B58;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cabinet Grotesk', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--porcelain);
  color: var(--earth);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── COVER ─────────────────────────────── */
.cover {
  position: relative;
  min-height: 100vh;
  background: var(--earth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.cover__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Decorative large ring */
.cover::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(181, 86, 62, 0.2);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}
.cover::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212, 137, 106, 0.15);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}

.cover__nav {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark.small svg { width: 40px; height: 40px; }
.logo-mark.large svg { width: 64px; height: 64px; }

.nav__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 230, 217, 0.5);
}

.cover__content {
  padding: 0 3rem;
  max-width: 700px;
  animation: fadeUp 1.2s var(--ease-out) both;
}

.cover__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

.cover__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--linen);
  margin-bottom: 1rem;
}

.cover__title em {
  font-style: italic;
  color: var(--clay);
}

.cover__sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242, 230, 217, 0.5);
  margin-bottom: 2.5rem;
}

.cover__divider {
  width: 60px;
  height: 1px;
  background: var(--kiln);
  margin-bottom: 2rem;
}

.cover__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(242, 230, 217, 0.65);
  max-width: 420px;
  line-height: 1.7;
}

.cover__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(242, 230, 217, 0.35);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ── SECTIONS ───────────────────────────── */
.section {
  padding: 7rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kiln);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--clay);
  opacity: 0.4;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.section__title em {
  font-style: italic;
  color: var(--kiln);
}

.section__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 4rem;
}

/* ── BRAND STORY ────────────────────────── */
.brand-story { background: var(--porcelain); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.story__heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--earth);
  position: sticky;
  top: 3rem;
}

.story__heading h2 em {
  font-style: italic;
  color: var(--kiln);
}

.story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story__card {
  background: white;
  border: 1px solid rgba(181, 86, 62, 0.1);
  padding: 2rem;
  border-radius: 2px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.story__card:hover {
  border-color: var(--clay);
  transform: translateY(-3px);
}

.story__icon {
  display: block;
  font-size: 1.4rem;
  color: var(--kiln);
  margin-bottom: 1rem;
}

.story__card h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.75rem;
}

.story__card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── LOGO SECTION ───────────────────────── */
.logo-section { background: var(--porcelain); }

.logo__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.logo__card {
  padding: 3.5rem 3rem;
  border-radius: 2px;
  position: relative;
}

.logo__card--light { background: var(--porcelain); border: 1px solid rgba(181,86,62,0.15); }
.logo__card--dark  { background: var(--earth); }
.logo__card--cream { background: var(--linen); border: 1px solid rgba(181,86,62,0.15); }

.logo__card-label {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

.logo__lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.logo__name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
}

.logo__name--large {
  font-size: 1.6rem;
  letter-spacing: 0.28em;
}

.logo__text--light .logo__name { color: var(--linen); }
.logo__text--light .logo__tagline { color: rgba(242,230,217,0.5); }

.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
}

.logo__icon-only {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.logo__icon-only svg { width: 100px; height: 100px; }

.logo__wordmark-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

/* Logo Rules */
.logo__rules {
  background: white;
  border: 1px solid rgba(181,86,62,0.1);
  padding: 2.5rem;
  border-radius: 2px;
}

.logo__rules h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.rules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rule__item {
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rule__item--do  { background: rgba(181,86,62,0.05); border-left: 3px solid var(--kiln); }
.rule__item--dont { background: rgba(61,43,31,0.04); border-left: 3px solid var(--earth); }

.rule__badge {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rule__badge.do   { color: var(--kiln); }
.rule__badge.dont { color: var(--earth); }

.rule__item p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── COLOR PALETTE ──────────────────────── */
.color-section { background: white; }

.palette__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.swatch {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(181,86,62,0.1);
  transition: transform 0.3s var(--ease-out);
}

.swatch:hover { transform: translateY(-4px); }

.swatch__block {
  height: 160px;
  width: 100%;
}

.swatch__info {
  padding: 1.25rem;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.swatch__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--earth);
}

.swatch__role {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kiln);
  margin-bottom: 0.5rem;
}

.swatch__codes {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.swatch__codes span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 400;
}

/* Color Usage Bar */
.color__usage {
  margin-top: 2rem;
}

.color__usage h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
}

.usage__bar {
  display: flex;
  height: 56px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(181,86,62,0.1);
}

.usage__segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: flex 0.4s ease;
}

/* ── TYPOGRAPHY ─────────────────────────── */
.type-section { background: var(--porcelain); }

.type__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.type__specimen {
  padding: 3rem;
  border-radius: 2px;
}

.type__specimen--display { background: var(--earth); }
.type__specimen--body    { background: white; border: 1px solid rgba(181,86,62,0.1); }

.type__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.type__font-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
}

.type__usage {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(242,230,217,0.45);
}

.type__specimen--body .type__usage { color: var(--mid); }

.type__d1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--linen);
  margin-bottom: 2rem;
}

.type__d1 em { font-style: italic; color: var(--clay); }

.type__body-sample {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.type__scale { display: flex; flex-direction: column; gap: 0.75rem; }

.scale__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(181,86,62,0.1);
}

.type__specimen--display .scale__row { border-top-color: rgba(242,230,217,0.08); }

.scale__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(242,230,217,0.35);
  text-transform: uppercase;
  flex-shrink: 0;
}

.type__specimen--body .scale__label { color: var(--mid); }

.scale__ex { color: var(--earth); }
.type__specimen--display .scale__ex { color: var(--linen); }

/* Type Pairing Demo */
.type__pairing {
  background: var(--linen);
  border-radius: 2px;
  overflow: hidden;
}

.pairing__label {
  background: var(--earth);
  padding: 0.75rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.5);
}

.pairing__demo {
  padding: 4rem 3rem;
  max-width: 640px;
}

.pairing__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kiln);
  margin-bottom: 1.25rem;
}

.pairing__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.pairing__headline em { font-style: italic; color: var(--kiln); }

.pairing__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

.pairing__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kiln);
  text-decoration: none;
  border-bottom: 1px solid var(--kiln);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.pairing__cta:hover { color: var(--earth); border-color: var(--earth); }

/* ── SOCIAL MEDIA ───────────────────────── */
.social-section { background: white; }

.social__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.social__template-wrap--wide {
  grid-column: 1 / -1;
}

.social__platform-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}

.social__frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61,43,31,0.12);
}

.social__frame--square  { aspect-ratio: 1/1; }
.social__frame--story   { aspect-ratio: 9/16; max-height: 420px; }
.social__frame--banner  { aspect-ratio: 4/1; }
.social__frame--product { aspect-ratio: 3/4; }

/* Instagram Post */
.ig-post {
  width: 100%;
  height: 100%;
  background: var(--earth);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  overflow: hidden;
}

.ig-post__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(181,86,62,0.25) 0%, transparent 60%);
}

.ig-post__mark {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70%;
  opacity: 0.15;
}

.ig-post__mark svg { width: 100%; height: 100%; }

.ig-post__content { position: relative; z-index: 1; }

.ig-post__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.ig-post__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--linen);
  margin-bottom: 0.5rem;
}

.ig-post__title em { font-style: italic; color: var(--clay); }

.ig-post__desc {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(242,230,217,0.5);
  margin-bottom: 1rem;
}

.ig-post__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(242,230,217,0.1);
}

.ig-post__brand {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
}

.ig-post__handle {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(242,230,217,0.4);
}

/* Instagram Story */
.ig-story {
  width: 100%;
  height: 100%;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.ig-story::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,86,62,0.12) 0%, transparent 70%);
}

.ig-story__top { position: relative; z-index: 1; }

.story-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-logo svg { width: 28px; height: 28px; }

.story-logo span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
}

.ig-story__mid { position: relative; z-index: 1; }

.story__eyebrow {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kiln);
  margin-bottom: 0.5rem;
}

.story__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--earth);
  margin-bottom: 0.75rem;
}

.story__title em { font-style: italic; color: var(--kiln); }

.story__divider {
  width: 30px;
  height: 1px;
  background: var(--kiln);
  margin-bottom: 0.75rem;
}

.story__body {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--mid);
  line-height: 1.65;
}

.ig-story__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.story__swipe {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--kiln);
}

.story__dots { display: flex; gap: 0.35rem; }

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(61,43,31,0.2);
}

.dot--active { background: var(--kiln); }

/* LinkedIn Banner */
.li-banner {
  width: 100%;
  height: 100%;
  background: var(--earth);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.li-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(181,86,62,0.2) 0%, transparent 50%);
}

.li-banner__left { position: relative; z-index: 1; flex-shrink: 0; }
.li-banner__mark { width: 80px; height: 80px; }

.li-banner__center { position: relative; z-index: 1; flex: 1; }

.li-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.4rem;
}

.li-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--linen);
  margin-bottom: 0.4rem;
}

.li-banner__title em { font-style: italic; color: var(--clay); }

.li-banner__sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(242,230,217,0.45);
  font-weight: 300;
}

.li-banner__right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.li-banner__divider {
  width: 1px;
  height: 40px;
  background: rgba(242,230,217,0.15);
}

.li-banner__stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }

.stat__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.4);
  text-align: center;
}

/* Product Card */
.product-card {
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(181,86,62,0.1);
}

.product-card__img {
  flex: 1;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card__img-placeholder svg { width: 120px; height: 120px; }

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--kiln);
  color: white;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}

.product-card__info { padding: 1.25rem; }

.product-card__cat {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.4rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 1rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--earth);
}

.product-card__btn {
  background: var(--earth);
  color: var(--linen);
  border: none;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.product-card__btn:hover { background: var(--kiln); }

/* ── PATTERNS ───────────────────────────── */
.pattern-section { background: var(--porcelain); }

.pattern__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pattern__card {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(181,86,62,0.1);
  transition: transform 0.3s var(--ease-out);
}

.pattern__card:hover { transform: translateY(-4px); }

.pattern__preview {
  height: 180px;
  overflow: hidden;
}

.pattern__preview svg { width: 100%; height: 100%; }

.pattern__preview--rings  { background: var(--porcelain); }
.pattern__preview--grid   { background: var(--porcelain); }
.pattern__preview--lines  { background: var(--linen); }
.pattern__preview--dark   { background: var(--earth); }

.pattern__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--earth);
  padding: 1rem 1.25rem 0.25rem;
  background: white;
}

.pattern__use {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--mid);
  padding: 0 1.25rem 1rem;
  background: white;
}

/* ── APPLICATIONS ───────────────────────── */
.applications-section { background: white; }

.apps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.app__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}

/* Business Card */
.biz-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.biz-card__front,
.biz-card__back {
  aspect-ratio: 1.75/1;
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.biz-card__front {
  background: var(--earth);
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.biz-card__mark svg { width: 36px; height: 36px; }

.biz-card__name-brand {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
}

.biz-card__tagline-brand {
  display: block;
  font-family: var(--font-body);
  font-size: 0.45rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.4);
  margin-top: 0.2rem;
}

.biz-card__back {
  background: var(--linen);
  justify-content: center;
  gap: 0.3rem;
}

.biz-card__person {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--earth);
}

.biz-card__role {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--kiln);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.biz-card__divider {
  width: 20px;
  height: 1px;
  background: var(--clay);
  margin: 0.3rem 0;
}

.biz-card__contact {
  font-family: var(--font-body);
  font-size: 0.52rem;
  color: var(--mid);
  line-height: 1.6;
}

/* Stamp */
.stamp__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--linen);
  border-radius: 2px;
  border: 1px solid rgba(181,86,62,0.1);
}

.stamp svg { width: 160px; height: 160px; }

/* Hang Tag */
.hangtag__wrap {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background: var(--porcelain);
  border-radius: 2px;
  border: 1px solid rgba(181,86,62,0.1);
}

.hangtag {
  width: 120px;
  background: var(--linen);
  border-radius: 4px 4px 2px 2px;
  border: 1px solid rgba(181,86,62,0.15);
  position: relative;
  box-shadow: 0 4px 20px rgba(61,43,31,0.1);
}

.hangtag__hole {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(181,86,62,0.3);
  background: var(--porcelain);
  margin: 0.75rem auto 0;
}

.hangtag__front {
  padding: 0.75rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.hangtag__mark { width: 36px; height: 36px; margin-bottom: 0.25rem; }

.hangtag__brand {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
}

.hangtag__sub {
  font-family: var(--font-body);
  font-size: 0.42rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.25rem;
}

.hangtag__line {
  width: 20px;
  height: 1px;
  background: var(--clay);
  margin: 0.4rem auto;
}

.hangtag__item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--earth);
}

.hangtag__detail {
  font-family: var(--font-body);
  font-size: 0.45rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

.hangtag__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--kiln);
  margin-top: 0.25rem;
}

/* ── FOOTER ─────────────────────────────── */
.brand-footer {
  background: var(--earth);
  padding: 5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.brand-footer::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(181,86,62,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer__mark svg { width: 48px; height: 48px; position: relative; z-index: 1; }

.footer__brand {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--linen);
  position: relative;
  z-index: 1;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(242,230,217,0.35);
  position: relative;
  z-index: 1;
}

.footer__note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(242,230,217,0.25);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.7; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .palette__grid { grid-template-columns: repeat(3, 1fr); }
  .social__grid  { grid-template-columns: 1fr 1fr; }
  .pattern__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 5rem 2rem; }
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .story__heading h2 { position: static; }
  .logo__showcase { grid-template-columns: 1fr; }
  .type__grid { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: 1fr; }
  .cover__nav { left: 2rem; right: 2rem; }
  .cover__content { padding: 0 2rem; }
}

@media (max-width: 640px) {
  .palette__grid { grid-template-columns: 1fr 1fr; }
  .story__content { grid-template-columns: 1fr; }
  .rules__grid { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: 1fr; }
  .pattern__grid { grid-template-columns: 1fr 1fr; }
  .biz-card { grid-template-columns: 1fr; }
}