/* ============================================
   Parvarish Food Processing LLP — parvarishfood.com
   Stylesheet · Heritage-modern editorial design
   ============================================ */

:root {
  --ink: #1a1410;
  --ink-soft: #2a2118;
  --cream: #f5ede1;
  --paper: #faf6ee;
  --terracotta: #b8451f;
  --terracotta-deep: #8e2f12;
  --saffron: #d97706;
  --olive: #5c5a3a;
  --gold: #b8860b;
  --rule: #e8dcc8;
  --muted: #6b5e4f;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", system-ui, sans-serif;

  --container: 1200px;
  --container-narrow: 920px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper-grain background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 350; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 450; }
h4 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 350; }

p { color: var(--ink-soft); }
p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--terracotta);
}

/* ============================================
   Layout helpers
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

.section-pad { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 1rem;
  color: var(--terracotta);
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 5rem;
}

/* ============================================
   Header / Navigation
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--terracotta);
  color: var(--paper);
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text small {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.2rem 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s var(--ease);
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    background: var(--paper);
    padding: 2rem;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    align-items: flex-start;
    gap: 1.4rem;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--paper);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 55%;
  height: 130%;
  background: radial-gradient(closest-side, rgba(184, 69, 31, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content { animation: fadeUp 0.9s var(--ease) both; }

.hero h1 {
  margin: 1.4rem 0 1.6rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 350;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  display: block;
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  display: block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(184, 69, 31, 0.04) 0%, rgba(217, 119, 6, 0.08) 100%),
    var(--cream);
}

.hero-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 1.4rem 1.8rem;
  border-radius: 2px;
  max-width: 280px;
  box-shadow: 0 12px 40px rgba(26, 20, 16, 0.18);
}
.hero-card .quote-mark {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--saffron);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.4rem;
}
.hero-card p {
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.45;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ============================================
   Mithila-inspired SVG flourishes
   ============================================ */

.flourish {
  display: block;
  margin: 0 auto;
  color: var(--terracotta);
  opacity: 0.7;
}

/* ============================================
   Section: pillars / values
   ============================================ */

.pillars {
  background: var(--cream);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 2.5rem 1.8rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s var(--ease);
}
.pillar:nth-child(4n) { border-right: none; }
.pillar:hover { background: var(--paper); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 1rem;
}
.pillar h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.pillar p {
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-child(4n) { border-right: none; }
}
@media (max-width: 520px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
}

/* ============================================
   Section: Brand showcase
   ============================================ */

.brands-section {
  background: var(--paper);
}
.brand-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.brand-visual {
  aspect-ratio: 5/4;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 2.5rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.brand-visual:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 20, 16, 0.12);
}
.brand-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 69, 31, 0.18);
  pointer-events: none;
  border-radius: 2px;
}
.brand-visual img {
  width: clamp(180px, 60%, 320px);
  height: auto;
  position: relative;
  z-index: 1;
}
.brand-visual .corner-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  z-index: 2;
}

.brand-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(184, 69, 31, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.brand-stat .n {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.brand-stat .l {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  display: block;
}

@media (max-width: 860px) {
  .brand-feature { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   Section: Future brands / pipeline
   ============================================ */

.pipeline {
  background: var(--ink);
  color: var(--cream);
}
.pipeline h2 { color: var(--cream); }
.pipeline .eyebrow { color: var(--saffron); }
.pipeline .eyebrow::before { background: var(--saffron); }
.pipeline p { color: rgba(245, 237, 225, 0.75); }

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pipeline-card {
  background: rgba(245, 237, 225, 0.04);
  border: 1px solid rgba(245, 237, 225, 0.12);
  padding: 2rem;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}
.pipeline-card:hover {
  background: rgba(245, 237, 225, 0.08);
  border-color: rgba(217, 119, 6, 0.5);
  transform: translateY(-2px);
}
.pipeline-card .stage {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
  display: block;
}
.pipeline-card h4 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.pipeline-card p { font-size: 0.92rem; }

@media (max-width: 860px) {
  .pipeline-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section: Leadership / People
   ============================================ */

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.person {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 3px;
  border: 1px solid var(--rule);
}
.person-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--saffron));
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.person h3 {
  margin-bottom: 0.4rem;
}
.person .role {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: block;
}
.person p { font-size: 0.95rem; line-height: 1.6; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 1rem 0;
}
.badge .star {
  color: var(--saffron);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .people-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section: Numbers / credentials
   ============================================ */

.numbers {
  background: var(--cream);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.number-card {
  text-align: left;
  padding: 2rem 0;
  border-top: 2px solid var(--ink);
}
.number-card .big {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 350;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.number-card .label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Section: Promise / Quote block
   ============================================ */

.promise {
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
}
.promise .container-narrow { text-align: center; }
.promise h2 {
  color: var(--cream);
  font-style: italic;
  font-weight: 350;
  margin: 1.5rem auto;
  max-width: 22ch;
}
.promise .eyebrow { color: var(--saffron); justify-content: center; }
.promise .eyebrow::before { background: var(--saffron); }
.promise p { color: rgba(245, 237, 225, 0.85); }
.promise .signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
}

/* ============================================
   Section: CTA strip
   ============================================ */

.cta-strip {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  max-width: 28ch;
}
.cta-strip-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 237, 225, 0.12);
}
.footer-brand h4 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  color: rgba(245, 237, 225, 0.6);
  font-size: 0.9rem;
  max-width: 32ch;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: rgba(245, 237, 225, 0.75);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--saffron); }
.footer-col p {
  color: rgba(245, 237, 225, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 237, 225, 0.5);
}
.footer-bottom .legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(245, 237, 225, 0.7); }
.footer-bottom a:hover { color: var(--saffron); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Inner page hero
   ============================================ */

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 40%;
  height: 100%;
  background: radial-gradient(closest-side, rgba(217, 119, 6, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.page-hero h1 {
  margin: 1.4rem 0 1.5rem;
  max-width: 18ch;
}
.page-hero p.lead { max-width: 60ch; }

/* ============================================
   Article / prose blocks
   ============================================ */

.prose {
  max-width: 65ch;
  margin: 0 auto;
}
.prose h2 { margin: 3rem 0 1.2rem; }
.prose h3 { margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1.2rem; line-height: 1.7; }
.prose blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 350;
  line-height: 1.5;
}
.prose ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose ul li { margin-bottom: 0.6rem; line-height: 1.6; color: var(--ink-soft); }

/* Two-column intro */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.two-col .label-col {
  position: sticky;
  top: 100px;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .two-col .label-col { position: static; }
}

/* ============================================
   Brand portfolio detail page
   ============================================ */

.brand-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
.brand-card-large {
  aspect-ratio: 1/1;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 3rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.brand-card-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(26, 20, 16, 0.14);
}
.brand-card-large::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 69, 31, 0.2);
  pointer-events: none;
  border-radius: 2px;
}
.brand-card-large img {
  width: clamp(220px, 70%, 380px);
  height: auto;
  position: relative;
  z-index: 1;
}
.brand-card-large .tag {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  z-index: 2;
}
.brand-card-large .visit {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
}
.brand-card-large .visit:hover {
  color: var(--terracotta-deep);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.cat-chip {
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: 0.9rem;
}
.cat-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 450;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.cat-chip span {
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .brand-detail { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   Quality page — credentials list
   ============================================ */

.cred-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cred-item {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.8rem;
  border-radius: 3px;
}
.cred-item .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}
.cred-item .val {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 450;
  letter-spacing: -0.01em;
  word-break: break-all;
}
.cred-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .cred-list { grid-template-columns: 1fr; }
}

.process-list {
  list-style: none;
  margin-top: 2rem;
}
.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.process-list .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 350;
  min-width: 3rem;
}
.process-list h4 {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 450;
}
.process-list p { font-size: 0.95rem; }

/* ============================================
   Contact page
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 1.8rem 0 0.6rem;
}
.contact-info h4:first-child { margin-top: 0; }
.contact-info p, .contact-info a {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}
.contact-info a:hover { color: var(--terracotta); }

.form-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 3px;
  border: 1px solid var(--rule);
}
.form-row { margin-bottom: 1.4rem; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 130px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row.two { grid-template-columns: 1fr; }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
