/* ==========================================================================
   SYMEN FOODS — Design System
   Premium B2B corporate identity for workplace food & beverage solutions.
   ========================================================================== */

:root {
  /* Neutrals */
  --sy-cream: #faf6f0;
  --sy-cream-alt: #f3ece1;
  --sy-white: #ffffff;
  --sy-ink: #201a14;
  --sy-charcoal: #34291f;
  --sy-stone: #6e6255;
  --sy-stone-light: #948a7d;
  --sy-border: #e6ddcf;
  --sy-border-strong: #d8cbb6;

  /* Brand accent — warm terracotta/amber, used sparingly */
  --sy-accent: #b5622a;
  --sy-accent-dark: #8f4a1e;
  --sy-accent-light: #f0d9c4;
  --sy-accent-tint: #fbeee1;

  /* Secondary earthy tone for Tuckshop distinction */
  --sy-tuckshop: #4c6b4f;
  --sy-tuckshop-dark: #37502f;
  --sy-tuckshop-tint: #eaf0e6;

  --sy-shadow-sm: 0 1px 2px rgba(32, 26, 20, 0.06);
  --sy-shadow-md: 0 8px 24px -8px rgba(32, 26, 20, 0.16);
  --sy-shadow-lg: 0 24px 48px -16px rgba(32, 26, 20, 0.22);

  --sy-radius-sm: 8px;
  --sy-radius-md: 14px;
  --sy-radius-lg: 24px;

  --sy-container: 1180px;
  --sy-nav-height: 84px;

  --sy-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --sy-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

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

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sy-font-body);
  color: var(--sy-charcoal);
  background: var(--sy-cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2.5px solid var(--sy-accent-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sy-ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: var(--sy-container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--alt {
  background: var(--sy-cream-alt);
}

.section--ink {
  background: var(--sy-ink);
  color: var(--sy-cream);
}

.section--tuckshop {
  background: var(--sy-tuckshop-dark);
  color: var(--sy-cream);
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section--tight {
    padding: 48px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sy-accent-dark);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--sy-accent);
  display: inline-block;
}

.section--ink .eyebrow,
.section--tuckshop .eyebrow {
  color: var(--sy-accent-light);
}

.section--tuckshop .eyebrow::before {
  background: #cfe3c9;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--sy-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sy-ink);
}

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--tuckshop h1,
.section--tuckshop h2,
.section--tuckshop h3 {
  color: var(--sy-white);
}

h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}

.lede {
  font-size: 1.15rem;
  color: var(--sy-stone);
  max-width: 620px;
}

.section--ink .lede,
.section--tuckshop .lede {
  color: #d8d2c6;
}

.body-text {
  color: var(--sy-stone);
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--sy-ease), background 0.25s var(--sy-ease), border-color 0.25s var(--sy-ease), color 0.25s var(--sy-ease);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.btn-primary {
  background: var(--sy-ink);
  color: var(--sy-white);
}

.btn-primary:hover {
  background: var(--sy-accent-dark);
}

.btn-accent {
  background: var(--sy-accent);
  color: var(--sy-white);
}

.btn-accent:hover {
  background: var(--sy-accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--sy-border-strong);
  color: var(--sy-ink);
}

.btn-outline:hover {
  border-color: var(--sy-ink);
}

.section--ink .btn-outline,
.section--tuckshop .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--sy-white);
}

.section--ink .btn-outline:hover,
.section--tuckshop .btn-outline:hover {
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--sy-accent-dark);
  padding: 10px 4px;
}

.btn-ghost:hover {
  color: var(--sy-ink);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- Navbar ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--sy-ease), border-color 0.3s var(--sy-ease), padding 0.3s var(--sy-ease);
}

.site-header.is-scrolled {
  border-color: var(--sy-border);
  box-shadow: var(--sy-shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--sy-nav-height);
  transition: height 0.3s var(--sy-ease);
}

.site-header.is-scrolled .nav-inner {
  height: 66px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sy-font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--sy-ink);
  flex-shrink: 0;
}

.brand-logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--sy-accent), var(--sy-accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sy-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand-logo small {
  display: block;
  font-family: var(--sy-font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sy-stone-light);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--sy-charcoal);
  transition: background 0.2s var(--sy-ease), color 0.2s var(--sy-ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--sy-cream-alt);
  color: var(--sy-accent-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--sy-ink);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .nav-cta .btn-outline {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--sy-cream);
  z-index: 900;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s var(--sy-ease);
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu nav a {
  padding: 18px 8px;
  font-family: var(--sy-font-display);
  font-size: 1.6rem;
  border-bottom: 1px solid var(--sy-border);
  color: var(--sy-ink);
}

.mobile-menu .cta-row {
  margin-top: 32px;
  flex-direction: column;
  align-items: stretch;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--sy-ink);
  padding: 8px;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 76px 0 90px;
  overflow: hidden;
  background: radial-gradient(circle at 82% 12%, var(--sy-accent-tint) 0%, transparent 55%), var(--sy-cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy p.lede {
  margin-top: 20px;
  margin-bottom: 32px;
}

.hero-meta {
  margin-top: 44px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-meta-item {
  border-left: 2px solid var(--sy-border-strong);
  padding-left: 14px;
}

.hero-meta-item strong {
  display: block;
  font-family: var(--sy-font-display);
  font-size: 1.05rem;
  color: var(--sy-ink);
}

.hero-meta-item span {
  font-size: 0.85rem;
  color: var(--sy-stone);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--sy-radius-lg);
  background: linear-gradient(160deg, var(--sy-charcoal) 0%, var(--sy-ink) 65%);
  overflow: hidden;
  box-shadow: var(--sy-shadow-lg);
}

.hero-visual .glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 98, 42, 0.55), transparent 70%);
  top: -60px;
  right: -60px;
  filter: blur(2px);
}

.hero-visual .glow--green {
  background: radial-gradient(circle, rgba(76, 107, 79, 0.5), transparent 70%);
  top: auto;
  bottom: -80px;
  left: -80px;
  right: auto;
}

.vending-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.vending-illustration svg {
  width: 100%;
  height: auto;
}

.hero-card-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(250, 246, 240, 0.96);
  border-radius: var(--sy-radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sy-shadow-md);
}

.hero-card-float .icon-badge {
  background: var(--sy-accent-tint);
  color: var(--sy-accent-dark);
}

.hero-card-float strong {
  display: block;
  font-family: var(--sy-font-display);
  font-size: 1rem;
  color: var(--sy-ink);
}

.hero-card-float span {
  font-size: 0.82rem;
  color: var(--sy-stone);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    aspect-ratio: 16 / 11;
    order: -1;
  }
}

/* ---------- Icon badges ---------- */

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sy-cream-alt);
  color: var(--sy-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-badge--lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.icon-badge--lg svg {
  width: 30px;
  height: 30px;
}

.icon-badge--tuckshop {
  background: var(--sy-tuckshop-tint);
  color: var(--sy-tuckshop-dark);
}

.icon-badge--inverse {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sy-accent-light);
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  gap: 28px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--sy-white);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-md);
  padding: 32px;
  transition: transform 0.3s var(--sy-ease), box-shadow 0.3s var(--sy-ease), border-color 0.3s var(--sy-ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sy-shadow-md);
  border-color: var(--sy-border-strong);
}

.card h3 {
  margin: 20px 0 10px;
}

.card p {
  color: var(--sy-stone);
  font-size: 0.96rem;
}

.card .card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sy-accent-dark);
}

.card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s var(--sy-ease);
}

.card:hover .card-link svg {
  transform: translateX(3px);
}

.card--tuckshop {
  border-color: rgba(76, 107, 79, 0.22);
}

.card--tuckshop .card-link {
  color: var(--sy-tuckshop-dark);
}

.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.card--dark p {
  color: #cfc7b8;
}

/* ---------- Solution split rows ---------- */

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.solution-row + .solution-row {
  margin-top: 88px;
}

.solution-row.is-reversed .solution-copy {
  order: 2;
}

.solution-visual {
  border-radius: var(--sy-radius-lg);
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sy-shadow-md);
}

.solution-visual svg {
  width: 100%;
  height: 100%;
}

.solution-copy .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.tag-pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sy-cream-alt);
  color: var(--sy-charcoal);
  border: 1px solid var(--sy-border);
}

.tag-pill--tuckshop {
  background: var(--sy-tuckshop-tint);
  border-color: rgba(76, 107, 79, 0.25);
  color: var(--sy-tuckshop-dark);
}

@media (max-width: 900px) {
  .solution-row,
  .solution-row.is-reversed .solution-copy {
    grid-template-columns: 1fr;
    order: initial;
  }
  .solution-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process steps ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px 24px;
  border-radius: var(--sy-radius-md);
  border: 1px solid var(--sy-border);
  background: var(--sy-white);
}

.process-step .step-number {
  font-family: var(--sy-font-display);
  font-size: 2.4rem;
  color: var(--sy-accent-light);
  font-weight: 600;
  line-height: 1;
}

.process-step h3 {
  margin-top: 14px;
}

.process-step p {
  margin-top: 10px;
  color: var(--sy-stone);
  font-size: 0.94rem;
}

.process-connector {
  display: none;
}

@media (min-width: 981px) {
  .process-grid {
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44px;
    right: -26px;
    width: 24px;
    height: 1px;
    background: var(--sy-border-strong);
  }
}

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

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

/* ---------- Brand ecosystem ---------- */

.ecosystem-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ecosystem-node {
  background: var(--sy-white);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-md);
  padding: 28px 40px;
  text-align: center;
  box-shadow: var(--sy-shadow-sm);
}

.ecosystem-node.is-parent {
  background: var(--sy-ink);
  color: var(--sy-white);
  padding: 32px 52px;
}

.ecosystem-node.is-parent .font-display {
  color: var(--sy-white);
}

.ecosystem-node span.role {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sy-stone-light);
  margin-top: 6px;
}

.ecosystem-node.is-parent span.role {
  color: var(--sy-accent-light);
}

.ecosystem-connector {
  width: 1px;
  height: 44px;
  background: var(--sy-border-strong);
}

.ecosystem-branches {
  display: flex;
  gap: 40px;
  margin-top: 0;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.ecosystem-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 640px) {
  .ecosystem-branches {
    flex-direction: column;
  }
}

/* ---------- Industry list ---------- */

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border-radius: var(--sy-radius-md);
  background: var(--sy-white);
  border: 1px solid var(--sy-border);
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--sy-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sy-font-display);
  font-size: 1.08rem;
  color: var(--sy-ink);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--sy-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--sy-ease), background 0.3s var(--sy-ease);
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--sy-ink);
}

.faq-question .plus::before {
  width: 10px;
  height: 1.5px;
}

.faq-question .plus::after {
  width: 1.5px;
  height: 10px;
  transition: opacity 0.2s var(--sy-ease);
}

.faq-item.is-open .plus {
  background: var(--sy-ink);
  transform: rotate(180deg);
}

.faq-item.is-open .plus::before,
.faq-item.is-open .plus::after {
  background: #fff;
}

.faq-item.is-open .plus::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--sy-ease);
}

.faq-answer p {
  padding: 0 4px 24px;
  color: var(--sy-stone);
  max-width: 680px;
}

/* ---------- Contact ---------- */

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: var(--sy-radius-lg);
  overflow: hidden;
  box-shadow: var(--sy-shadow-lg);
}

.contact-info {
  background: var(--sy-ink);
  color: var(--sy-white);
  padding: 56px 44px;
}

.contact-info .font-display {
  color: #fff;
}

.contact-info ul {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: #d8d2c6;
}

.contact-form-wrap {
  background: var(--sy-white);
  padding: 56px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--sy-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--sy-radius-sm);
  border: 1.5px solid var(--sy-border-strong);
  font-family: var(--sy-font-body);
  font-size: 0.96rem;
  background: var(--sy-cream);
  color: var(--sy-ink);
  transition: border-color 0.2s var(--sy-ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sy-accent);
}

.form-errors {
  color: #a4341e;
  font-size: 0.82rem;
  margin-top: 6px;
}

.form-success {
  background: var(--sy-tuckshop-tint);
  color: var(--sy-tuckshop-dark);
  border: 1px solid rgba(76, 107, 79, 0.25);
  border-radius: var(--sy-radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 500;
}

.form-alert {
  background: #fbeae5;
  color: #a4341e;
  border: 1px solid #f0c9bd;
  border-radius: var(--sy-radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form-wrap {
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Final CTA band ---------- */

.cta-band {
  background: linear-gradient(150deg, var(--sy-ink), var(--sy-charcoal));
  border-radius: var(--sy-radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  max-width: 520px;
}

@media (max-width: 768px) {
  .cta-band {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--sy-ink);
  color: #cfc7b8;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--sy-font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid a {
  font-size: 0.94rem;
  color: #cfc7b8;
  transition: color 0.2s var(--sy-ease);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #a89d8c;
  max-width: 320px;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #8d8272;
}

.footer-bottom a {
  color: #8d8272;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 64px 0 56px;
  background: var(--sy-cream-alt);
  border-bottom: 1px solid var(--sy-border);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--sy-stone);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--sy-accent-dark);
  font-weight: 600;
}

/* ---------- Reveal-on-scroll ---------- */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Utility ---------- */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.divider {
  height: 1px;
  background: var(--sy-border);
  border: none;
  margin: 0;
}

.prose h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--sy-stone);
  margin-bottom: 16px;
  max-width: 760px;
}

.prose ul {
  margin: 0 0 20px 20px;
  list-style: disc;
  color: var(--sy-stone);
}

.prose li {
  margin-bottom: 8px;
}
