:root {
  --coffee-950: #24140f;
  --coffee-900: #321c15;
  --coffee-800: #4b2f23;
  --coffee-700: #684333;
  --coffee-500: #9a6a4e;
  --cream-100: #fffaf3;
  --cream-200: #f6eadb;
  --cream-300: #ead8c2;
  --sage-500: #74805d;
  --sage-700: #566044;
  --text: #33231c;
  --muted: #75645b;
  --white: #ffffff;
  --shadow: 0 24px 65px rgba(55, 31, 22, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--cream-100);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--coffee-950);
  border-radius: 10px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid rgba(75, 47, 35, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coffee-900);
  box-shadow: 0 8px 25px rgba(50, 28, 21, 0.18);
}

.bean {
  position: absolute;
  width: 13px;
  height: 21px;
  border: 2px solid var(--cream-200);
  border-radius: 50%;
  transform: rotate(34deg);
}

.bean::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 1px;
  background: var(--cream-200);
  transform: translateX(-50%) rotate(12deg);
}

.bean-one {
  left: 11px;
  top: 10px;
}

.bean-two {
  right: 10px;
  bottom: 9px;
  transform: rotate(-34deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--coffee-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #5b4a41;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--coffee-900);
  background: var(--cream-200);
  transform: translateY(-1px);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(75, 47, 35, 0.14);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--coffee-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  padding: 86px 0 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(116, 128, 93, 0.18), transparent 30%),
    radial-gradient(circle at 10% 0%, rgba(154, 106, 78, 0.13), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #f8eedf 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 243, 0.82));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 70px;
  background: rgba(116, 128, 93, 0.15);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  left: -110px;
  top: 170px;
  background: rgba(154, 106, 78, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.delivery-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 700px;
  color: var(--coffee-950);
  font-size: clamp(3.45rem, 7vw, 6.65rem);
  line-height: 0.93;
}

.hero h1 span {
  color: var(--coffee-700);
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: #66544a;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--coffee-900);
  box-shadow: 0 14px 30px rgba(50, 28, 21, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coffee-800);
  box-shadow: 0 18px 34px rgba(50, 28, 21, 0.22);
}

.button-secondary {
  color: var(--coffee-900);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(75, 47, 35, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.note-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sage-700);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.coffee-scene {
  position: relative;
  width: min(430px, 88vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.95) 0 5%, transparent 5.5%),
    radial-gradient(circle at center, #efe0ca 0 50%, #e6d0b4 50.5% 68%, transparent 68.5%);
  box-shadow: inset 0 0 0 1px rgba(75, 47, 35, 0.07), 0 40px 80px rgba(75, 47, 35, 0.11);
}

.cup {
  position: relative;
  z-index: 4;
  width: 220px;
  height: 200px;
  margin-top: 46px;
  border-radius: 30px 30px 76px 76px;
  background: linear-gradient(145deg, #513225, #2f1a13);
  box-shadow: inset 12px 0 22px rgba(255,255,255,0.035), 0 28px 35px rgba(45, 24, 17, 0.23);
}

.coffee-surface {
  position: absolute;
  top: -17px;
  left: 7px;
  right: 7px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle at 44% 42%, #8d5d43 0 18%, #67402e 19% 48%, #3a2118 49% 100%);
  box-shadow: inset 0 4px 8px rgba(255,255,255,0.06), 0 1px 0 #b99072;
}

.cup-handle {
  position: absolute;
  right: -62px;
  top: 51px;
  width: 82px;
  height: 85px;
  border: 18px solid #392018;
  border-left-width: 15px;
  border-radius: 0 48px 48px 0;
  z-index: -1;
}

.cup-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f4e7d6;
  transform: translateY(9px);
}

.cup-label span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cup-label small {
  margin-top: -4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.saucer {
  position: absolute;
  z-index: 3;
  width: 310px;
  height: 82px;
  bottom: 66px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffdf8, #dfc8a8);
  box-shadow: 0 18px 24px rgba(59, 34, 25, 0.14);
}

.steam {
  position: absolute;
  z-index: 6;
  width: 30px;
  height: 115px;
  top: 30px;
  border-left: 4px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  filter: blur(0.3px);
  opacity: 0.78;
  animation: floatSteam 4s ease-in-out infinite;
}

.steam-a { left: 45%; }
.steam-b { left: 53%; height: 92px; top: 49px; animation-delay: -1.2s; }
.steam-c { left: 59%; height: 102px; top: 42px; animation-delay: -2.1s; }

.loose-bean {
  position: absolute;
  width: 24px;
  height: 38px;
  border-radius: 50%;
  background: #5e3928;
  transform: rotate(32deg);
  box-shadow: inset -4px -3px 8px rgba(0,0,0,0.16);
}

.loose-bean::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  bottom: 5px;
  width: 2px;
  border-radius: 999px;
  background: #be8b68;
  transform: translateX(-50%) rotate(9deg);
}

.loose-bean-a { left: 48px; bottom: 103px; transform: rotate(58deg); }
.loose-bean-b { right: 50px; bottom: 118px; transform: rotate(-31deg); }
.loose-bean-c { right: 89px; top: 82px; transform: rotate(21deg) scale(0.78); }

@keyframes floatSteam {
  0%, 100% { transform: translateY(6px) scaleX(0.9); opacity: 0.35; }
  50% { transform: translateY(-7px) scaleX(1.05); opacity: 0.85; }
}

.hero-strip {
  position: relative;
  z-index: 4;
  min-height: 122px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 26px 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(75, 47, 35, 0.08);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -8px 35px rgba(75, 47, 35, 0.045);
  backdrop-filter: blur(10px);
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.strip-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strip-item strong {
  color: var(--coffee-900);
  font-size: 1.04rem;
}

.strip-divider {
  width: 1px;
  height: 44px;
  background: var(--cream-300);
}

.section {
  padding: 108px 0;
}

.presentations {
  background: var(--cream-100);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.delivery-copy h2,
.contact-copy h2 {
  color: var(--coffee-950);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.03;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid rgba(75, 47, 35, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(74, 45, 34, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.featured-card {
  color: var(--white);
  background: linear-gradient(145deg, #684333, #321c15);
}

.card-number {
  position: absolute;
  top: 26px;
  left: 30px;
  color: rgba(75, 47, 35, 0.32);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.featured-card .card-number {
  color: rgba(255,255,255,0.45);
}

.product-card h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--coffee-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

.product-card p {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin: 13px 0 20px;
  color: var(--muted);
}

.featured-card h3,
.featured-card p,
.featured-card .text-link {
  color: var(--white);
}

.featured-card p {
  color: rgba(255,255,255,0.76);
}

.text-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--coffee-800);
  font-weight: 900;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.mini-cup {
  position: absolute;
  top: 42px;
  right: 48px;
  width: 138px;
  height: 126px;
  transform: rotate(-5deg);
}

.mini-cup-body {
  position: absolute;
  left: 8px;
  top: 18px;
  width: 100px;
  height: 88px;
  border-radius: 12px 12px 34px 34px;
  background: linear-gradient(145deg, var(--coffee-700), var(--coffee-900));
  box-shadow: 0 16px 30px rgba(50, 28, 21, 0.17);
}

.mini-cup-body::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 4px;
  width: 92px;
  height: 18px;
  border-radius: 50%;
  background: #3b2118;
}

.mini-cup-handle {
  position: absolute;
  right: 9px;
  top: 45px;
  width: 40px;
  height: 40px;
  border: 10px solid var(--coffee-900);
  border-left-width: 7px;
  border-radius: 0 28px 28px 0;
}

.packet-stack {
  position: absolute;
  top: 30px;
  right: 26px;
  width: 180px;
  height: 150px;
}

.packet-stack span {
  position: absolute;
  width: 78px;
  height: 122px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, #c6a17f, #7d513b);
  box-shadow: 0 15px 28px rgba(0,0,0,0.16);
}

.packet-stack span::after {
  content: "DXN";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff5ea;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}

.packet-stack span:nth-child(1) { right: 61px; top: 16px; transform: rotate(-10deg); }
.packet-stack span:nth-child(2) { right: 24px; top: 8px; transform: rotate(4deg); }
.packet-stack span:nth-child(3) { right: 0; top: 26px; transform: rotate(13deg); }

.delivery {
  background: #f4e8d8;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.delivery-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
}

.location-card {
  position: relative;
  width: min(410px, 88vw);
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  border: 1px solid rgba(75, 47, 35, 0.08);
  border-radius: 40px;
  background:
    linear-gradient(35deg, transparent 44%, rgba(116, 128, 93, 0.18) 45% 54%, transparent 55%),
    linear-gradient(-25deg, transparent 33%, rgba(154, 106, 78, 0.16) 34% 41%, transparent 42%),
    #fffaf3;
  box-shadow: var(--shadow);
}

.location-card::before,
.location-card::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 1px;
  left: -20%;
  background: #e5d4bf;
  transform: rotate(-18deg);
}

.location-card::before { top: 35%; }
.location-card::after { top: 67%; transform: rotate(18deg); }

.pin {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 45%;
  width: 74px;
  height: 74px;
  background: var(--coffee-900);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 18px 30px rgba(50, 28, 21, 0.24);
}

.pin span {
  position: absolute;
  inset: 23px;
  border-radius: 50%;
  background: var(--cream-200);
}

.route-line {
  position: absolute;
  z-index: 2;
  height: 5px;
  border-radius: 999px;
  background: var(--sage-500);
  opacity: 0.6;
}

.route-one { width: 145px; left: 28px; bottom: 76px; transform: rotate(14deg); }
.route-two { width: 118px; right: 24px; top: 74px; transform: rotate(-16deg); }

.route-dot {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coffee-700);
  box-shadow: 0 0 0 7px rgba(104, 67, 51, 0.12);
}

.dot-one { left: 54px; bottom: 61px; }
.dot-two { right: 46px; top: 62px; }

.delivery-copy h2 {
  max-width: 620px;
}

.delivery-location {
  margin: 24px 0 30px;
  color: var(--coffee-700);
  font-size: 1.12rem;
  font-weight: 800;
}

.contact {
  padding-top: 90px;
  background: var(--cream-100);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  padding: 54px 58px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #3b2219, #25140f);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.contact-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -120px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,0.03), 0 0 0 76px rgba(255,255,255,0.025);
}

.eyebrow-light {
  color: #d9c0a5;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
}

.contact-actions {
  position: relative;
  z-index: 2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-label {
  color: rgba(255,255,255,0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phone-number {
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.phone-number:hover,
.phone-number:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
  outline: none;
}

.contact-place {
  margin-top: 6px;
  color: #d9c0a5;
  font-weight: 700;
}

.site-footer {
  padding: 30px 0 40px;
  background: var(--cream-100);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(75, 47, 35, 0.11);
}

.footer-wrap > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-wrap span,
.footer-wrap a {
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(75,47,35,0.1);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(50,28,21,0.14);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .strip-divider {
    width: 54px;
    height: 1px;
    justify-self: center;
  }

  .cards-grid,
  .delivery-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .delivery-grid {
    gap: 38px;
  }

  .delivery-copy {
    text-align: center;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.67rem;
  }

  .main-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.45rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .coffee-scene {
    width: min(340px, 92vw);
  }

  .cup {
    width: 170px;
    height: 155px;
    margin-top: 35px;
    border-radius: 25px 25px 58px 58px;
  }

  .cup-handle {
    right: -49px;
    top: 39px;
    width: 66px;
    height: 68px;
    border-width: 14px;
    border-left-width: 11px;
  }

  .cup-label span {
    font-size: 2.1rem;
  }

  .coffee-surface {
    top: -13px;
    height: 34px;
  }

  .saucer {
    width: 240px;
    height: 65px;
    bottom: 52px;
  }

  .steam {
    top: 18px;
    height: 90px;
  }

  .steam-b { top: 34px; height: 75px; }
  .steam-c { top: 30px; height: 80px; }

  .loose-bean-a { left: 35px; bottom: 80px; }
  .loose-bean-b { right: 38px; bottom: 88px; }
  .loose-bean-c { right: 70px; top: 65px; }

  .hero-strip {
    margin-top: 12px;
    padding: 24px 18px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .product-card {
    min-height: 350px;
    padding: 28px;
    border-radius: 28px;
  }

  .mini-cup {
    top: 42px;
    right: 28px;
    transform: scale(0.82) rotate(-5deg);
    transform-origin: top right;
  }

  .packet-stack {
    top: 34px;
    right: 18px;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .delivery-visual {
    min-height: 300px;
  }

  .contact {
    padding-top: 70px;
  }

  .contact-panel {
    padding: 38px 26px;
    border-radius: 28px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
