/* Yaratu — brand identity 2026
   Colors: olive #2F391C · cream #FFF0D9 · white · gold accent #A17513
   Logo: Circe Contrast (as SVG). Body: public sans substitute for TT Norms Pro. */

:root {
  --olive: #2f391c;
  --olive-deep: #1f2612;
  --olive-soft: #4e5337;
  --cream: #fff0d9;
  --cream-dim: #f5e4c4;
  --white: #ffffff;
  --gold: #a17513;
  --ink: #2f391c;
  --muted: rgba(47, 57, 28, 0.68);
  --line: rgba(47, 57, 28, 0.14);
  --radius: 0;
  --max: 1120px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-soft);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 38rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 240, 217, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 2.1rem;
  width: auto;
}

.nav__links {
  display: none;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav__links a {
  text-decoration: none;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  background: var(--olive);
  color: var(--cream) !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav__cta:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
}

@media (min-width: 860px) {
  .nav__links {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero- ken 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(31, 38, 18, 0.25) 0%, rgba(31, 38, 18, 0.55) 45%, rgba(31, 38, 18, 0.88) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(161, 117, 19, 0.22), transparent 55%);
}

.hero__content {
  padding: clamp(5rem, 12vh, 7rem) 0 3.5rem;
}

.hero__brand {
  height: clamp(2.4rem, 5vw, 3.2rem);
  width: auto;
  margin-bottom: 1.4rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  animation: rise 0.9s ease both;
}

.hero h1 {
  max-width: 12ch;
  color: var(--cream);
  animation: rise 1s ease 0.08s both;
}

.hero .lede {
  color: rgba(255, 240, 217, 0.86);
  margin: 1.1rem 0 1.8rem;
  animation: rise 1s ease 0.16s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1s ease 0.24s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
  animation: rise 1s ease 0.32s both;
}

.badge {
  border: 1px solid rgba(255, 240, 217, 0.35);
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 240, 217, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--cream);
  color: var(--olive) !important;
}

.btn--ghost {
  border-color: rgba(255, 240, 217, 0.55);
  color: var(--cream) !important;
  background: transparent;
}

.btn--olive {
  background: var(--olive);
  color: var(--cream) !important;
}

.btn--outline {
  border-color: var(--olive);
  color: var(--olive) !important;
  background: transparent;
}

/* Sections */
section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.band-olive {
  background: var(--olive);
  color: var(--cream);
}

.band-olive .section-head p,
.band-olive .lede,
.band-olive .muted {
  color: rgba(255, 240, 217, 0.78);
}

.band-olive .eyebrow {
  color: rgba(255, 240, 217, 0.7);
}

.band-dim {
  background: var(--cream-dim);
}

/* Story */
.story {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.story__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--olive);
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.story__quote {
  margin: 1.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--olive);
}

/* Advantages */
. pros {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  .pros {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .pros {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pros article {
  background: var(--cream);
  padding: 1.5rem 1.35rem 1.6rem;
  min-height: 100%;
}

.band-olive .pros article {
  background: var(--olive-deep);
}

.pros__n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.pros h3 {
  margin-bottom: 0.45rem;
}

.pros p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.band-olive .pros p {
  color: rgba(255, 240, 217, 0.72);
}

/* Macro strip */
.macro-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .macro-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.macro-strip div {
  border-top: 1px solid rgba(255, 240, 217, 0.25);
  padding-top: 1rem;
}

.macro-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
}

.macro-strip span {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 240, 217, 0.7);
}

/* Products */
.products {
  display: grid;
  gap: 1.25rem;
}

.product {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.35s ease;
}

.product:hover {
  border-color: rgba(47, 57, 28, 0.35);
  transform: translateY(-3px);
}

@media (min-width: 860px) {
  .product {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product--flip {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .product--flip .product__media {
    order: 2;
  }
}

.product__media {
  background: var(--olive);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.product__body {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  background: var(--cream);
  color: var(--olive);
  border: 1px solid var(--line);
}

.product p {
  margin: 0;
  color: var(--muted);
}

.kbju {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.kbju div {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}

.kbju strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.kbju span {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.note {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 46rem;
}

/* Quality / retail / contacts */
.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checklist li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 0.85rem;
}

.contact-box a {
  font-weight: 600;
  text-decoration: none;
}

.contact-box dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-box dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-box dd {
  margin: 0.15rem 0 0;
}

.legal-mini {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.footer__logo {
  height: 1.7rem;
  width: auto;
  margin-bottom: 0.7rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer a {
  text-decoration: none;
  font-weight: 500;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ken {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__media img,
  .hero__brand,
  .hero h1,
  .hero .lede,
  .hero__actions,
  .hero__badges,
  .product {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Legal page */
.page-legal {
  padding: 5rem 0 4rem;
}

.page-legal h1 {
  margin: 0.6rem 0 1.5rem;
}

.page-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.page-legal th,
.page-legal td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.page-legal th {
  width: 34%;
  background: var(--cream-dim);
  font-weight: 600;
}
