/* ==========================================================================
   Hutland Packaging – Logo theme: dark teal + orange/amber
   ========================================================================== */

:root {
  /* Logo colors: dark teal (primary), orange/amber (accent) */
  --teal-dark: #0e4d4d;
  --teal-medium: #1a6b6b;
  --teal-light: #2d8a8a;
  --accent: #e67e22;
  --accent-hover: #d35400;
  --accent-light: rgba(230, 126, 34, 0.12);
  --bg: #ffffff;
  --bg-cream: #f5f9f9;
  --bg-coffee: #f7f2eb;
  --bg-coffee-dark: #ede5da;
  --bg-dark: #0e4d4d;
  --cream-text: #f0f7f7;
  --text: #0e4d4d;
  --text-muted: #3d7a7a;
  --spill-color: #0e4d4d;
  --container: min(94vw, 1280px);
  --section-pad: clamp(2.25rem, 5vw, 3.5rem);
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-big: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  overflow-y: scroll;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

/* ----- Decorative: coffee spill blobs (used as bg elements) ----- */
.spill-blob {
  position: absolute;
  border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
  background: var(--spill-color);
  opacity: 0.06;
  pointer-events: none;
}
.spill-blob--1 { width: min(400px, 80vw); height: min(280px, 56vw); top: -80px; right: -100px; }
.spill-blob--2 { width: min(320px, 60vw); height: min(200px, 40vw); bottom: -60px; left: -80px; border-radius: 40% 60% 50% 50% / 50% 50% 60% 50%; }
.spill-blob--3 { width: min(200px, 45vw); height: min(140px, 32vw); top: 40%; left: -60px; opacity: 0.05; }
.drip-shape {
  position: absolute;
  width: 60px;
  height: 90px;
  background: url('../img/coffee-drip.svg') no-repeat center / contain;
  opacity: 0.2;
  pointer-events: none;
}
.drip-shape--1 { top: 15%; right: 18%; transform: rotate(-15deg); }
.drip-shape--2 { bottom: 25%; left: 10%; transform: rotate(12deg); opacity: 0.15; }
.drip-shape--3 { top: 60%; right: 8%; transform: rotate(8deg); opacity: 0.12; }

/* ========== Topbar – dark strip ========== */
.topbar {
  background: var(--bg-dark);
  color: var(--cream-text);
  font-size: 0.875rem;
  padding: 0.6rem 0;
}
.topbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; }
.topbar__contact { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.topbar__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(240, 247, 247, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar__link:hover { color: var(--cream-text); }
.topbar__icon { flex-shrink: 0; }
.topbar__btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.topbar__btn:hover { background: var(--accent-hover); color: #fff; transform: scale(1.02); }
@media (max-width: 768px) {
  .topbar { background: var(--accent); }
  .topbar__cta { display: none; }
}
@media (max-width: 640px) {
  .topbar__contact { gap: 0.75rem; }
}

/* ========== Header – minimal, sticky ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 77, 77, 0.08);
  contain: layout style;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  text-decoration: none;
}
.site-header__logo-img,
.site-header__logo img {
  height: 52px;
  width: auto;
  min-height: 48px;
  max-height: 64px;
  display: block;
  transition: opacity 0.2s;
  object-fit: contain;
  /* Remove white background so logo fits header */
  mix-blend-mode: multiply;
}
.site-header__logo:hover .site-header__logo-img,
.site-header__logo:hover img { opacity: 0.9; }
@media (min-width: 768px) {
  .site-header__logo-img,
  .site-header__logo img { height: 62px; max-height: 68px; }
}
.site-header__nav-toggle {
  display: none;
  flex-direction: column;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.site-header__nav-toggle:hover { background: rgba(14, 77, 77, 0.06); }
.site-header__nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.site-header__nav-toggle[aria-expanded="true"] .site-header__nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header__nav-toggle[aria-expanded="true"] .site-header__nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header__nav-toggle[aria-expanded="true"] .site-header__nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-header__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.5rem;
}
.site-header__nav-list a {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  min-height: 44px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--teal-dark);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.site-header__nav-list a:hover,
.site-header__nav-list a.is-active { color: var(--accent); background: var(--accent-light); }
.site-header__nav-cta {
  background: var(--teal-dark) !important;
  color: var(--cream-text) !important;
  margin-left: 0.5rem;
}
.site-header__nav-cta:hover { background: var(--teal-medium) !important; color: var(--cream-text) !important; }

@media (max-width: 900px) {
  .site-header__nav-toggle { display: flex; }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(14, 77, 77, 0.1);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--ease), opacity 0.25s;
  }
  .site-header__nav.is-open { max-height: 85vh; opacity: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .site-header__nav-list { flex-direction: column; align-items: stretch; }
  .site-header__nav-list a { padding: 0.85rem 1rem; }
  .site-header__nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* ========== Main ========== */
.main { min-height: 60vh; max-width: 100%; overflow-x: hidden; }

/* ========== HERO – modern: coffee feel + photo in shape ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}
.hero--light {
  background: var(--bg);
  color: var(--text);
}
.hero--modern {
  background: linear-gradient(135deg, var(--bg-coffee) 0%, var(--bg) 50%, var(--bg-coffee-dark) 100%);
  color: var(--text);
}
/* Reference style: clean white/cream, black text, dark brown button */
.hero--reference {
  background: #fff;
  color: #1a1a1a;
}
.hero--reference .hero__title { color: #1a1a1a; }
.hero--reference .hero__title span { color: var(--teal-dark); }
.hero--reference .hero__text { color: #444; }
.hero--reference .hero__recommend { color: #444; }

/* ========== HERO DIAGONAL – new concept: split panel + full-height photo ========== */
.hero--diagonal {
  display: flex;
  min-height: 85vh;
  padding: 0;
  overflow: hidden;
  contain: layout style paint;
  width: 100%;
  max-width: 100%;
}
.hero__panel {
  min-height: 85vh;
}
.hero__panel--content {
  flex: 0 0 50%;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a3d3d 50%, #083535 100%);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2rem, 6vw, 4rem) clamp(2rem, 8vw, 5rem);
  -webkit-clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.hero__content-inner {
  max-width: 420px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
}
.hero__tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(240, 247, 247, 0.9);
  margin: 0 0 1.75rem;
}
.hero__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn--hero-solid {
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}
.btn--hero-solid:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); }
.btn--hero-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
}
.btn--hero-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }
.hero__panel--image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 0;
}
@media (max-width: 900px) {
  .hero--diagonal { flex-direction: column; min-height: auto; }
  .hero__panel { min-height: auto; }
  .hero__panel--content {
    flex: none;
    clip-path: none;
    -webkit-clip-path: none;
    min-height: auto;
    padding: clamp(3rem, 8vw, 4rem) clamp(1.5rem, 5vw, 2rem);
    text-align: center;
  }
  .hero__content-inner { max-width: 100%; margin: 0 auto; }
  .hero__cta-wrap { justify-content: center; }
  .hero__panel--image {
    flex: 0 0 auto;
    min-height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-coffee);
  }
}

/* ========== Photo marquee – small cards looping right to left ========== */
.photo-marquee {
  padding: 1.25rem 0;
  background: var(--bg-cream);
  overflow: hidden;
  contain: layout style paint;
  width: 100%;
  max-width: 100%;
}
.photo-marquee__track {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  contain: layout style paint;
}
.photo-marquee__inner {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: photo-marquee 40s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.photo-marquee__card {
  flex: 0 0 auto;
  width: 140px;
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-coffee);
  box-shadow: 0 4px 16px rgba(14, 77, 77, 0.08);
  position: relative;
  overflow: hidden;
}
.photo-marquee__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-dark);
  opacity: 0.35;
  border-radius: 12px;
  pointer-events: none;
}
@keyframes photo-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .photo-marquee__inner { animation: none; }
  .photo-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ========== LANDING STYLE – modern coffee landing (theme colors) ========== */
.hero--landing {
  background: linear-gradient(160deg, var(--teal-dark) 0%, #0a3d3d 50%, #083030 100%);
  color: var(--cream-text);
  min-height: 88vh;
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 70% 20%, rgba(230, 126, 34, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.hero__glow--orange {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}
.hero__container--landing {
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
}
.hero__content--landing { max-width: 520px; }
.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(230, 126, 34, 0.2);
  border-radius: 999px;
}
.hero__title--landing {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__title--landing span { color: var(--accent); }
.hero__text--landing {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(240, 247, 247, 0.9);
  margin-bottom: 1.75rem;
}
.btn--landing-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
}
.btn--landing-cta:hover { background: var(--accent-hover) !important; color: #fff !important; transform: translateY(-2px); }
.btn--landing-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  padding: 1rem 2rem;
  border-radius: 999px;
}
.btn--landing-outline:hover { border-color: #fff !important; background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.hero__floating-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}
.hero__stat {
  font-size: 0.95rem;
  color: rgba(240, 247, 247, 0.85);
}
.hero__stat strong { color: var(--accent); margin-right: 0.25rem; }
.hero__visual--landing {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual--landing .hero__graphic-svg,
.hero__visual--landing .hero__screenshot-img {
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.25));
  max-width: 340px;
}
@media (max-width: 900px) {
  .hero--landing .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero--landing .hero__content { margin: 0 auto; }
  .hero--landing .hero__actions { justify-content: center; }
  .hero--landing .hero__floating-stats { justify-content: center; }
  .hero__visual--landing { order: -1; min-height: 280px; }
}

/* Strip – welcome block with gradient (theme) */
.strip--landing {
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal-medium) 100%);
  color: var(--cream-text);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin: 0 0 1rem;
}
.strip__text {
  color: rgba(240, 247, 247, 0.9);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.btn--strip {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
}
.btn--strip:hover { background: var(--accent-hover); color: #fff; }
.strip__visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-big);
  background: center/cover no-repeat;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .strip__inner { grid-template-columns: 1fr; }
  .strip__visual { order: -1; aspect-ratio: 16/10; }
}

/* Bento product grid */
.products--bento .section__title { margin-bottom: 2rem; }
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento__main {
  grid-row: span 2;
  border-radius: var(--radius-big);
  overflow: hidden;
  background: var(--bg-cream);
  text-decoration: none;
  color: var(--teal-dark);
  box-shadow: 0 8px 32px rgba(14, 77, 77, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bento__main:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(14, 77, 77, 0.12); }
.bento__card {
  border-radius: var(--radius-big);
  overflow: hidden;
  background: var(--bg);
  text-decoration: none;
  color: var(--teal-dark);
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 4px 20px rgba(14, 77, 77, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14, 77, 77, 0.1); }
.bento__img {
  aspect-ratio: 4/3;
  background: center/cover no-repeat;
  background-color: var(--bg-cream);
}
.bento__main .bento__img { aspect-ratio: 4/4; }
.bento__cap {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bento__cap h3 { margin: 0; font-size: 1.15rem; font-weight: 600; }
.bento__cap span { font-weight: 500; color: var(--accent); font-size: 0.9rem; }
@media (max-width: 768px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento__main { grid-row: span 1; }
  .bento__main .bento__img { aspect-ratio: 16/10; }
}

/* Quote / testimonial block */
.quote-section {
  background: var(--bg-cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-radius: var(--radius-big);
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 32px rgba(14, 77, 77, 0.06);
}
.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--teal-dark);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.quote-block__footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero__coffee-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 80% 50%, rgba(14, 77, 77, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(230, 126, 34, 0.08) 0%, transparent 40%);
}
.hero__bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: var(--bg-coffee-dark);
  border-radius: 40% 0 0 40%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.btn--hero-primary {
  background: #3d2818 !important;
  color: #fff !important;
  border-radius: 12px;
  padding: 0.9rem 1.75rem;
}
.btn--hero-primary:hover { background: #2c1810 !important; color: #fff !important; }
.btn--hero-outline {
  background: #fff !important;
  color: #1a1a1a !important;
  border: 2px solid #1a1a1a !important;
  border-radius: 12px;
  padding: 0.9rem 1.75rem;
}
.btn--hero-outline:hover { background: #f5f5f5 !important; color: #1a1a1a !important; }
.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { max-width: 540px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--teal-dark);
}
.hero__title span { color: var(--accent); }
.hero__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.btn--outline {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
}
.btn--outline:hover { background: rgba(14, 77, 77, 0.06); color: var(--teal-dark); }
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__avatars { display: flex; margin-right: 0.25rem; }
.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
  border: 2px solid var(--bg);
  margin-left: -10px;
  flex-shrink: 0;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__recommend { margin: 0; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.hero__best-selling { margin-top: 1.5rem; }
.hero--reference .hero__best-selling-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0;
  text-transform: none;
}
.hero__best-cards { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__best-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(14, 77, 77, 0.08);
  text-decoration: none;
  color: var(--teal-dark);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-width: 120px;
  box-shadow: 0 4px 16px rgba(14, 77, 77, 0.06);
}
.hero__best-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(14, 77, 77, 0.12); }
.hero__best-card-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  background: var(--bg-coffee) center/cover no-repeat;
}
.hero__best-card-img--photo { border: 3px solid var(--bg); }
.hero__best-card-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.hero__best-card-cta { font-size: 0.75rem; color: var(--accent); font-weight: 500; }
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 2rem 0;
}
.hero__visual--photo {
  background: center/cover no-repeat;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  min-height: 420px;
  box-shadow: 0 24px 56px rgba(14, 77, 77, 0.15);
}
.hero__visual--graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 0;
}
.hero__graphic-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}
.hero__screenshot-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero__shape-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 77, 77, 0.05) 100%);
  pointer-events: none;
}
/* Best Selling – reference style: cream cards with image, name, price */
.hero__best-card--ref {
  background: #f7f2eb !important;
  min-width: 140px;
  padding: 1rem 1rem 1.25rem;
  border: 1px solid #e8ddd0;
}
.hero__best-card--ref .hero__best-card-img {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  margin-bottom: 0.6rem;
  background-color: #ede5da;
}
.hero__best-card--ref .hero__best-card-name {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #1a1a1a;
}
.hero__best-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.hero__best-selling-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.75rem;
}
.hero__cup-with-spill {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(14, 77, 77, 0.2));
  position: relative;
  z-index: 2;
}
.hero__beans { position: absolute; border-radius: 50%; background: var(--teal-dark); opacity: 0.35; pointer-events: none; }
.hero__beans--1 { width: 12px; height: 12px; top: 18%; right: 22%; }
.hero__beans--2 { width: 10px; height: 10px; bottom: 32%; right: 8%; }
.hero__beans--3 { width: 8px; height: 8px; bottom: 20%; left: 15%; }
@media (max-width: 900px) {
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: none; margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__social-proof { justify-content: center; }
  .hero__best-cards { justify-content: center; }
  .hero__visual { order: -1; min-height: 300px; }
  .hero__visual--photo { min-height: 320px; border-radius: 24% 76% 76% 24% / 24% 24% 76% 76%; }
  .hero__visual--graphic { min-height: 280px; }
  .hero__graphic-svg { max-width: 280px; margin: 0 auto; }
  .hero__cup-with-spill { max-width: 240px; margin: 0 auto; }
  .hero__bg-curve { width: 100%; border-radius: 0 0 50% 50% / 0 0 15% 15%; }
}
@media (max-width: 480px) {
  .hero__best-cards { flex-direction: column; align-items: stretch; }
  .hero__best-card { flex-direction: row; justify-content: flex-start; gap: 1rem; min-width: 0; text-align: left; }
  .hero__best-card-img { width: 48px; height: 48px; margin-bottom: 0; margin-right: 0; flex-shrink: 0; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
  text-decoration: none;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); }
.btn--secondary { background: var(--cream-text); color: var(--teal-dark); }
.btn--secondary:hover { background: #fff; color: var(--teal-dark); transform: translateY(-2px); }

/* ========== Section defaults ========== */
.section { padding: var(--section-pad) 0; position: relative; }
.section--dark { background: var(--bg-dark); color: var(--cream-text); }
.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section--dark .section__label { color: rgba(245, 240, 232, 0.7); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.section--dark .section__title { color: var(--cream-text); }
.section__intro { max-width: 40rem; margin-bottom: 2rem; color: var(--text-muted); font-size: 1.05rem; }
.section--dark .section__intro { color: rgba(240, 247, 247, 0.85); }

/* ========== About Intro – two-column, script heading + five arched segments with gaps ========== */
.about-intro {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
}
.about-intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.about-intro__title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.about-intro__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s var(--ease);
}
.btn--accent:hover { background: var(--accent-hover); color: #fff; }
.about-intro__visual { position: relative; }
/* Three photo columns: each its own image, middle one raised (staggered) */
.about-intro__cols {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  min-height: 320px;
}
.about-intro__col {
  flex: 1;
  min-width: 0;
  max-width: 32%;
  height: 280px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-coffee);
  box-shadow: 0 12px 40px rgba(14, 77, 77, 0.15);
}
.about-intro__col--2 {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 2.5rem;
  height: 300px;
}
@media (max-width: 900px) {
  .about-intro__container { grid-template-columns: 1fr; }
  .about-intro__visual { order: -1; }
  .about-intro__cols { min-height: 260px; gap: 0.5rem; }
  .about-intro__col { height: 220px; max-width: 33.33%; }
  .about-intro__col--2 { height: 240px; margin-bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .about-intro__cols { flex-wrap: wrap; justify-content: center; min-height: auto; align-items: stretch; }
  .about-intro__col { max-width: 48%; height: 200px; }
  .about-intro__col--2 { order: -1; width: 100%; max-width: 100%; height: 220px; margin-bottom: 0.5rem; }
}

/* ========== Features – cards with spill accent ========== */
.features { background: #fff; }
.features .spill-blob--1 { top: 10%; right: 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-big);
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 4px 20px rgba(14, 77, 77, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(14, 77, 77, 0.1); border-color: rgba(14, 77, 77, 0.12); }
.feature-card:hover::before { opacity: 1; }
.feature-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.feature-card__title { font-weight: 600; font-size: 1.1rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.feature-card__text { margin: 0; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; }

/* Features – dark variant (script heading + icons, white text) */
.features--dark {
  background: var(--teal-dark);
  color: var(--cream-text);
  padding: var(--section-pad) 0;
}
.features__script-title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--cream-text);
  text-align: center;
  margin: 0 0 2.5rem;
}
.features__grid--icons { margin-top: 0; }
.feature-card--dark {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1.5rem 1rem;
  text-align: center;
}
.feature-card--dark::before { display: none; }
.feature-card--dark:hover { transform: none; }
.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-text);
}
.feature-card__icon svg { width: 32px; height: 32px; }
.feature-card--dark .feature-card__title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.feature-card--dark .feature-card__text {
  color: rgba(240, 247, 247, 0.85);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Features – cards variant (light section + box cards) */
.features--cards {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
}
.features--cards .features__script-title {
  color: var(--teal-dark);
  margin-bottom: 2rem;
}
.features__grid--cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.feature-card--box {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-big);
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 6px 24px rgba(14, 77, 77, 0.06);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.feature-card--box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(14, 77, 77, 0.12);
  border-color: rgba(14, 77, 77, 0.12);
}
.feature-card--box::before {
  background: linear-gradient(90deg, var(--accent), var(--teal-light));
  opacity: 0;
}
.feature-card--box:hover::before { opacity: 1; }
.feature-card__icon--teal {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 77, 77, 0.08);
  color: var(--teal-dark);
  border-radius: 50%;
}
.feature-card__icon--teal svg { width: 28px; height: 28px; }
.feature-card--box .feature-card__title {
  color: var(--teal-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.feature-card--box .feature-card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .features__grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .features__grid--cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features__grid { grid-template-columns: 1fr; } }

/* ========== About strip – teal with drip ========== */
.about-strip {
  background: var(--teal-dark);
  color: var(--cream-text);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.about-strip .drip-shape { opacity: 0.12; }
.about-strip .section__title { color: #fff; }
.about-strip p { color: rgba(240, 247, 247, 0.9); margin: 0 0 1.5rem; max-width: 42rem; font-size: 1.05rem; }
.about-strip .btn--secondary { background: var(--cream-text); color: var(--teal-dark); }
.about-strip .btn--secondary:hover { background: #fff; color: var(--teal-dark); }

/* About strip – with 3 photos in shapes on the left */
.about-strip--with-photos .about-strip__container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about-strip__photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.about-strip__shape {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.about-strip__shape--circle { border-radius: 50%; }
.about-strip__shape--rounded { border-radius: var(--radius-big); }
.about-strip__shape--blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.about-strip__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.about-strip__big {
  display: block;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.about-strip__big--blob {
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .about-strip--with-photos .about-strip__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-strip__photos {
    flex-direction: row;
    justify-content: center;
    order: -1;
  }
  .about-strip__shape { width: 100px; height: 100px; }
  .about-strip__right { align-items: center; }
  .about-strip__big { margin-left: 0; margin-right: 0; }
  .about-strip--with-photos p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .about-strip__shape { width: 80px; height: 80px; }
  .about-strip__photos { gap: 0.5rem; }
}

/* ========== Trust – card style ========== */
.trust {
  padding: var(--section-pad) 0;
  background: var(--bg-cream);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-big);
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 4px 20px rgba(14, 77, 77, 0.04);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14, 77, 77, 0.08); }
.trust-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}
.trust-card__title { font-weight: 600; font-size: 1.05rem; margin: 0 0 0.35rem; color: var(--teal-dark); }
.trust-card__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.trust__item { padding: 0 1rem; }
.trust__title { font-weight: 600; font-size: 1.05rem; margin: 0 0 0.35rem; color: var(--teal-dark); }
.trust__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.trust--with-media .trust__item { padding: 0; text-align: center; }
.trust--with-media .trust__img-wrap {
  border-radius: var(--radius-big);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/10;
  background: var(--bg-cream);
}
.trust--with-media .trust__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) { .trust__grid { grid-template-columns: 1fr; } }

/* ========== Products – grid with cup imagery ========== */
.products { background: #fff; }
.products .spill-blob--2 { bottom: 20%; left: 0; }
.products__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.products__filter a {
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  background: var(--bg-cream);
  color: var(--teal-dark);
  border: 2px solid transparent;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.products__filter a:hover,
.products__filter a.is-active { background: var(--teal-dark); color: var(--cream-text); border-color: var(--teal-dark); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius-big);
  overflow: hidden;
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 4px 24px rgba(14, 77, 77, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(14, 77, 77, 0.12); }
.product-card__image {
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(14, 77, 77, 0.04) 0%, rgba(45, 138, 138, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.product-card__image img { width: 65%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(14, 77, 77, 0.15)); }
.product-card__image--shape {
  background: center/cover no-repeat;
}
.product-card__image--coming-soon {
  background: rgba(14, 77, 77, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__coming-soon {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
  border-radius: var(--radius-big) var(--radius-big) 0 0;
}
.product-card--photo { text-decoration: none; color: inherit; display: block; }
.product-card--photo .product-card__body { padding: 1.5rem; }
.product-card--photo .product-card__link { font-weight: 600; color: var(--accent); }
.products--modern { background: var(--bg-coffee); position: relative; }
.products__bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(14, 77, 77, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.product-card__body { padding: 1.5rem; }
.product-card__title { font-weight: 600; font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.product-card__link { font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
.product-card__link:hover { gap: 0.6rem; }
@media (max-width: 768px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .products__filter { justify-content: center; }
}
@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .products__filter { margin-bottom: 1.5rem; }
}

/* ========== Gallery – photos in shapes ========== */
.gallery {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-coffee) 100%);
  padding: var(--section-pad) 0;
}
.gallery__container { position: relative; z-index: 1; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}
.gallery__item {
  aspect-ratio: 1;
  border-radius: var(--radius-big);
  box-shadow: 0 16px 48px rgba(14, 77, 77, 0.12);
  transition: transform 0.35s var(--ease);
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__item:hover { transform: scale(1.03); }
.gallery__item--circle { border-radius: 50%; }
.gallery__item--rounded { border-radius: var(--radius-big); }
.gallery__item--blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery__item { max-width: 320px; margin: 0 auto; }
}

/* ========== Process cards (how it works steps) ========== */
.process { background: var(--bg); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.process-card {
  background: var(--bg-cream);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-big);
  border: 1px solid rgba(14, 77, 77, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-card::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
.process-card:last-child::after { display: none; }
.process-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14, 77, 77, 0.08); }
.process-card__step {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--teal-dark);
  color: var(--cream-text);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card__title { font-weight: 600; font-size: 1.05rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.process-card__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process-card::after { display: none; }
}
@media (max-width: 480px) { .process__grid { grid-template-columns: 1fr; } }

/* ========== Services cards ========== */
.services-cards { background: var(--bg-cream); }
.services-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-big);
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 4px 20px rgba(14, 77, 77, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(14, 77, 77, 0.1); }
.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(230, 126, 34, 0.2) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card__title { font-weight: 600; font-size: 1.1rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.service-card__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 900px) { .services-cards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-cards__grid { grid-template-columns: 1fr; } }

/* ========== Why us – card style ========== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-big);
  border: 1px solid rgba(14, 77, 77, 0.08);
  box-shadow: 0 4px 20px rgba(14, 77, 77, 0.04);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14, 77, 77, 0.08); }
.why-card__title { font-weight: 600; font-size: 1.05rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.why-card__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.why-card__value { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin: 0 0 0.25rem; color: var(--accent); }
.why-card__label { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 768px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why__grid { grid-template-columns: 1fr; } }

/* ========== CTA card (single prominent) ========== */
.cta-card-wrap { padding: var(--section-pad) 0; background: var(--bg-cream); }
.cta-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-medium) 100%);
  color: var(--cream-text);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-big);
  text-align: center;
  box-shadow: 0 24px 56px rgba(14, 77, 77, 0.2);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.5rem; position: relative; z-index: 1; }
.cta-card__text { margin: 0 0 1.5rem; opacity: 0.9; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-card .btn { position: relative; z-index: 1; }
@media (max-width: 480px) {
  .cta-card { padding: 2rem 1.25rem; }
}
.cta-card .btn--primary { background: var(--accent); color: #fff; }
.cta-card .btn--primary:hover { background: var(--accent-hover); color: #fff; }

/* ========== Stats – dark ========== */
.stats {
  background: var(--bg-dark);
  color: var(--cream-text);
  padding: var(--section-pad) 0;
  position: relative;
}
.stats .spill-blob { background: var(--cream-text); opacity: 0.03; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stats__value { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 700; margin: 0 0 0.25rem; color: var(--accent); }
.stats__label { font-size: 0.9rem; opacity: 0.85; margin: 0; }
@media (max-width: 640px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== Footer ========== */
.site-footer {
  background: var(--teal-dark);
  color: rgba(240, 247, 247, 0.9);
  padding: var(--section-pad) 0 2rem;
  margin-top: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}
.site-footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}
.site-footer__logo-accent { color: var(--accent); }
.site-footer__about { margin: 0; font-size: 0.9375rem; line-height: 1.7; max-width: 36rem; opacity: 0.9; }
.site-footer__heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 1rem;
}
.site-footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__links a { color: rgba(245, 240, 232, 0.9); }
.site-footer__links a:hover { color: #fff; }
.site-footer__address { font-style: normal; margin: 0; font-size: 0.9375rem; }
.site-footer__address p { margin: 0 0 0.5rem; }
.site-footer__address a { color: rgba(245, 240, 232, 0.95); }
.site-footer__address a:hover { color: #fff; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer__copy { margin: 0; font-size: 0.875rem; opacity: 0.75; }
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a { color: rgba(245, 240, 232, 0.75); font-size: 0.875rem; }
.site-footer__legal a:hover { color: #fff; }
@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ========== WhatsApp floating button ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.04); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
.whatsapp-float__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.whatsapp-float__text { white-space: nowrap; }
@media (max-width: 480px) {
  .whatsapp-float__text { display: none; }
  .whatsapp-float { padding: 0.85rem; }
  .whatsapp-float__icon svg { width: 32px; height: 32px; }
}

/* ========== Page header (inner) ========== */
.page-header {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--bg-dark);
  color: var(--cream-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  width: min(280px, 50vw);
  height: min(180px, 35vw);
  top: -40px;
  right: -60px;
  border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
  background: var(--cream-text);
  opacity: 0.05;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  width: min(200px, 40vw);
  height: min(120px, 25vw);
  bottom: -30px;
  left: -40px;
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 50%;
  background: var(--cream-text);
  opacity: 0.04;
  pointer-events: none;
}
.page-header .spill-blob { background: var(--cream-text); opacity: 0.04; }
.page-header__breadcrumb { font-size: 0.875rem; color: rgba(245, 240, 232, 0.7); margin: 0 0 0.5rem; }
.page-header__breadcrumb a { color: var(--accent); }
.page-header__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 0; position: relative; z-index: 1; }
.page-header__breadcrumb { position: relative; z-index: 1; }
.page-header--with-img { padding: 0; min-height: 220px; display: flex; align-items: flex-end; }
.page-header--with-img .container { padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-header__img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  z-index: 0;
}
.page-header__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 77, 77, 0.85) 0%, rgba(14, 77, 77, 0.4) 50%, transparent 100%);
  z-index: 1;
}

/* ========== Content page ========== */
.content-page { padding: var(--section-pad) 0; }
.content-page .container { max-width: 720px; }
.content-page__lead { font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem; color: var(--teal-dark); }
.content-page__lead strong { color: var(--teal-dark); }
.content-page h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 2rem 0 0.75rem; color: var(--teal-dark); }
.content-page h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.content-page p { margin: 0 0 1rem; color: var(--text-muted); }
.content-page--coming-soon .container { text-align: center; }
.content-page--coming-soon .coming-soon { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.content-page__media { margin: 2rem 0; }
.content-page__media img { width: 100%; height: auto; display: block; border-radius: var(--radius-big); box-shadow: 0 12px 40px rgba(14, 77, 77, 0.1); }
.content-page__media--triple { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.content-page__media--triple img:first-child { grid-column: 1 / -1; max-width: 100%; }
.content-page__media--double { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.content-page__media--double img { max-width: 100%; }
.content-page__media--single img { max-width: 100%; }
@media (max-width: 640px) {
  .content-page__media--triple { grid-template-columns: 1fr; }
}

/* ========== About page (about-us.php) ========== */
.about-page__intro { background: var(--bg-cream); padding: var(--section-pad) 0; }
.about-page__intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-page__intro-content { min-width: 0; }
.about-page__intro .section__title { margin-bottom: 1rem; }
.about-page__lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 1rem; }
.about-page__intro-content p { color: var(--text-muted); margin: 0 0 1rem; }
.about-page__intro-visual { border-radius: var(--radius-big); overflow: hidden; box-shadow: 0 16px 48px rgba(14, 77, 77, 0.12); }
.about-page__intro-visual img { width: 100%; height: auto; display: block; }

.about-page__cups { padding: var(--section-pad) 0; }
.about-page__cups-intro { margin-bottom: 2.5rem; }
.about-page__cups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-page__cup-card {
  background: #fff;
  border-radius: var(--radius-big);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14, 77, 77, 0.08);
  border: 1px solid rgba(14, 77, 77, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.about-page__cup-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14, 77, 77, 0.12); }
.about-page__cup-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-coffee);
}
.about-page__cup-card-body { padding: 1.25rem 1.5rem; }
.about-page__cup-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.about-page__cup-card-body p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; }

.about-page__why { background: var(--bg-cream); padding: var(--section-pad) 0; }
.about-page__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-page__commitment { padding: var(--section-pad) 0; }
.about-page__commitment-container {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-page__commitment-visual { border-radius: var(--radius-big); overflow: hidden; box-shadow: 0 16px 48px rgba(14, 77, 77, 0.12); }
.about-page__commitment-visual img { width: 100%; height: auto; display: block; }
.about-page__commitment-content .section__title { margin-bottom: 1rem; }
.about-page__commitment-content p { color: var(--text-muted); margin: 0 0 1.25rem; }
.about-page__commitment-content .btn { margin-top: 0.5rem; }

@media (max-width: 900px) {
  .about-page__intro-container { grid-template-columns: 1fr; }
  .about-page__intro-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .about-page__cups-grid { grid-template-columns: 1fr; }
  .about-page__why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page__commitment-container { grid-template-columns: 1fr; }
  .about-page__commitment-visual { order: -1; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .about-page__why-grid { grid-template-columns: 1fr; }
}

/* ========== Coffee cups page (coffee-cups.php) ========== */
.page-header--tall { min-height: 280px; }
.page-header__sub { font-size: 1rem; color: rgba(245, 240, 232, 0.9); margin: 0.5rem 0 0; max-width: 28rem; position: relative; z-index: 1; }

.cups-page__intro { background: var(--bg-cream); padding: var(--section-pad) 0; }
.cups-page__intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cups-page__intro-content { min-width: 0; }
.cups-page__intro .section__title { margin-bottom: 1rem; }
.cups-page__lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 1rem; }
.cups-page__intro-content p { color: var(--text-muted); margin: 0 0 1rem; }
.cups-page__intro-visual { border-radius: var(--radius-big); overflow: hidden; box-shadow: 0 16px 48px rgba(14, 77, 77, 0.12); }
.cups-page__intro-visual img { width: 100%; height: auto; display: block; }

.cups-page__offer { padding: var(--section-pad) 0; }
.cups-page__offer .section__intro { margin-bottom: 2rem; }
.cups-page__card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cups-page__card {
  background: #fff;
  border-radius: var(--radius-big);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14, 77, 77, 0.08);
  border: 1px solid rgba(14, 77, 77, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cups-page__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14, 77, 77, 0.12); }
.cups-page__card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-coffee);
}
.cups-page__card-body { padding: 1.25rem 1.5rem; }
.cups-page__card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--teal-dark); }
.cups-page__card-body p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; }

.cups-page__show { background: var(--bg-cream); padding: var(--section-pad) 0; }
.cups-page__show .section__intro { margin-bottom: 2rem; }
.cups-page__show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cups-page__show-img { border-radius: var(--radius-big); overflow: hidden; box-shadow: 0 12px 40px rgba(14, 77, 77, 0.1); }
.cups-page__show-img img { width: 100%; height: auto; display: block; }

.cups-page__gallery { padding: var(--section-pad) 0; }
.cups-page__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.cups-page__gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(14, 77, 77, 0.08); }
.cups-page__gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; }

.cups-page__why { background: var(--bg-cream); padding: var(--section-pad) 0; }
.cups-page__why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.cups-page__cta { padding: var(--section-pad) 0; }
.cups-page__cta-container {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.cups-page__cta-visual { border-radius: var(--radius-big); overflow: hidden; box-shadow: 0 16px 48px rgba(14, 77, 77, 0.12); }
.cups-page__cta-visual img { width: 100%; height: auto; display: block; }
.cups-page__cta-content .section__title { margin-bottom: 1rem; }
.cups-page__cta-content p { color: var(--text-muted); margin: 0 0 1.25rem; }
.cups-page__cta-content .btn { margin-top: 0.5rem; }

@media (max-width: 900px) {
  .cups-page__intro-container { grid-template-columns: 1fr; }
  .cups-page__intro-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .cups-page__card-grid { grid-template-columns: 1fr; }
  .cups-page__show-grid { grid-template-columns: 1fr; }
  .cups-page__gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cups-page__why-grid { grid-template-columns: 1fr; }
  .cups-page__cta-container { grid-template-columns: 1fr; }
  .cups-page__cta-visual { order: -1; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .cups-page__gallery-grid { grid-template-columns: 1fr; }
  .cups-page__gallery-item img { height: 200px; }
}

/* ========== Contact form ========== */
.contact-form { max-width: 32rem; margin: 2rem 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.35rem; color: var(--teal-dark); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 2px solid rgba(14, 77, 77, 0.15);
  border-radius: var(--radius);
  background: #fff;
  color: var(--teal-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(14, 77, 77, 0.12); }
.contact-info p { margin: 0 0 0.5rem; }
.contact-info h2 { margin-top: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
