:root {
  --bg: #f4f1ea;
  --panel: #ece7df;
  --panel-soft: #f8f5ef;
  --ink: #151311;
  --muted: #6d655e;
  --line: rgba(21, 19, 17, 0.12);
  --accent: #b96f3d;
  --accent-deep: #9c5d31;
  --logo-green: #149347;
  --logo-green-deep: #0f7437;
  --logo-green-soft: rgba(20, 147, 71, 0.1);
  --dark: #171514;
  --shell: min(100% - 48px, 1280px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  padding: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 252, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 147, 71, 0.12);
}

.header-bar {
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand,
.site-nav,
.header-cta,
.menu-toggle,
.eyebrow,
.section-kicker,
.timeline-number {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.brand::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-green);
  box-shadow: 0 0 0 4px rgba(20, 147, 71, 0.12);
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  gap: 24px;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav a,
.footer-links a {
  transition: color 0.22s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--logo-green-deep);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-icon::before {
  transform: translateY(-6px);
}

.header-cta,
.primary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff8f1;
  border-radius: 999px;
  font-size: 0.82rem;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.header-cta {
  background: var(--logo-green);
  color: #fff8f1;
}

.primary-button:hover,
.light-button:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #000000;
}

.hero-section,
.about-section,
.services-section,
.process-section,
.estimate-section,
.showcase-section {
  padding: 52px 0;
}

.products-section {
  background: #f7f4ee;
  border-top: 1px solid rgba(21, 19, 17, 0.18);
  border-bottom: 1px solid rgba(21, 19, 17, 0.18);
}

.product-heading {
  padding: 48px 18px 34px;
  text-align: center;
}

.product-heading h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
}

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

.product-card {
  min-width: 0;
  background: #fffdf8;
  border-right: 1px solid rgba(21, 19, 17, 0.22);
  border-bottom: 1px solid rgba(21, 19, 17, 0.22);
}

.product-card:nth-child(4n) {
  border-right: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  background: #ded7cc;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: #111111;
  color: #fffdf8;
  font-size: 0.78rem;
}

.product-info {
  min-height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 18px;
}

.product-info h3,
.product-info p {
  margin: 0;
}

.product-info h3 {
  font-size: 0.92rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.product-info p {
  margin-top: 4px;
  color: #111111;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 800;
}

.product-info p span {
  display: block;
  color: rgba(17, 17, 17, 0.68);
  text-decoration: line-through;
  font-weight: 700;
}

.product-cart {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: 6px;
  border: 1px solid rgba(17, 17, 17, 0.34);
  border-radius: 50%;
  color: #111111;
  font-size: 1.1rem;
  line-height: 1;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.product-cart:hover {
  transform: translateY(-2px);
  background: #111111;
  color: #fffdf8;
}

.hero-section {
  padding-top: 0;
}

.hero-banner,
.estimate-panel,
.showcase-card {
  border-radius: 30px;
}

.hero-banner {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.2), rgba(9, 10, 12, 0.5)),
    url("./assets/hero-zuzu-banner.jpg") center 62% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(20, 147, 71, 0.22), transparent 28%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.12), rgba(10, 10, 12, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 84px 40px 40px;
  color: #f8f4ee;
  text-align: center;
}

.eyebrow,
.section-kicker,
.eyebrow-light {
  margin: 0;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow-hero {
  color: rgba(247, 242, 234, 0.68);
}

.hero-kicker {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero-content h1,
.section-heading h2,
.process-heading h2,
.estimate-copy h2,
.footer-grid h2 {
  margin: 14px 0 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.hero-text,
.section-heading p,
.service-card p,
.timeline-step p,
.estimate-copy p,
.showcase-card p:not(.eyebrow) {
  color: var(--muted);
}

.hero-content h1 {
  max-width: 1060px;
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 9.4vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--logo-green);
}

.hero-subtitle {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(248, 244, 238, 0.86);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 147, 71, 0.18);
  color: #171514;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.hero-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
  margin-top: auto;
  padding-top: 110px;
  color: rgba(248, 244, 238, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.about-section {
  background: #2b2928;
  color: #f5f1ea;
  padding: 20px 24px 16px;
}

.about-intro-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  height: 540px;
  padding: 18px 16px 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #f6f4f1;
  color: #1a1817;
}

.about-intro-card h2 {
  max-width: 80%;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.about-card-actions {
  display: grid;
  gap: 14px;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 86%;
}

.about-socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px 0 7px;
  border: 1px solid rgba(26, 24, 23, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(26, 24, 23, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.about-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 147, 71, 0.4);
  color: var(--logo-green-deep);
}

.social-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

.social-facebook {
  background: #1877f2;
}

.social-xhs {
  background: #ff2442;
}

.social-shopee {
  background: #ee4d2d;
}

.social-tiktok {
  background: #111111;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 46%, #515bd4);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 10px 0 12px;
  border: 1px solid rgba(26, 24, 23, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #262321;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about-link:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 147, 71, 0.42);
  background: rgba(20, 147, 71, 0.06);
}

.about-link-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--logo-green);
  color: #f6f4f1;
  font-size: 0.62rem;
  line-height: 1;
}

.about-photo-card {
  margin: 0;
  position: relative;
  min-height: 540px;
  height: 540px;
  align-self: start;
  border-radius: 14px;
  overflow: hidden;
  background: #201f1e;
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}

.about-details {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-label {
  margin: 0;
  color: #f5f1ea;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.about-copy {
  max-width: 720px;
  margin-left: auto;
}

.about-copy p {
  margin: 0;
  color: rgba(245, 241, 234, 0.98);
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.06em;
}

.section-heading,
.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.process-heading h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.section-kicker {
  color: var(--logo-green);
}

.services-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.showcase-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  box-shadow: inset 0 1px 0 var(--logo-green-soft);
}

.service-card h3,
.showcase-card h3,
.timeline-step h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.service-card p,
.showcase-card p:not(.eyebrow),
.timeline-step p {
  margin: 18px 0 0;
  line-height: 1.75;
  font-size: 1rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 18px 0 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent) 0%, var(--logo-green) 100%);
}

.timeline-step {
  position: relative;
  width: calc(50% - 28px);
  padding: 24px 26px;
  border-radius: 26px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.timeline-step.step-right {
  margin-left: auto;
}

.timeline-number {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--logo-green);
  color: #fff8f1;
  font-size: 0.8rem;
  transform: translateY(-50%);
}

.timeline-step.step-left .timeline-number {
  right: -45px;
}

.timeline-step.step-right .timeline-number {
  left: -45px;
}

.estimate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  padding: 42px;
  background: var(--accent);
  color: #fff8f1;
}

.estimate-copy h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.estimate-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 248, 241, 0.82);
  line-height: 1.8;
}

.eyebrow-light {
  color: rgba(255, 248, 241, 0.84);
}

.light-button {
  margin-top: 28px;
  background: #fff8f1;
  color: var(--logo-green-deep);
}

.light-button:hover {
  background: #f2e8de;
}

.device-card {
  position: relative;
  width: clamp(220px, 24vw, 280px);
  justify-self: end;
}

.device-shadow {
  position: absolute;
  inset: auto 18px -24px;
  height: 34px;
  background: rgba(0, 0, 0, 0.16);
  filter: blur(16px);
  border-radius: 999px;
}

.device-body {
  position: relative;
  transform: rotate(10deg);
  padding: 24px 22px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #51392c 0%, #2a1d16 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.25);
}

.bean-scene {
  position: relative;
  width: min(100%, 236px);
  margin: 0 auto;
  aspect-ratio: 1 / 1.02;
}

.bean-scene::before,
.bean-scene::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.bean-scene::before {
  inset: 22px 28px 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 243, 228, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(53, 33, 23, 0.24));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.bean-scene::after {
  width: 66px;
  height: 66px;
  top: 18px;
  right: 14px;
  background: radial-gradient(circle, rgba(20, 147, 71, 0.18), transparent 68%);
}

.coffee-bean {
  position: absolute;
  display: block;
  z-index: 1;
  border-radius: 52% 48% 50% 50% / 60% 42% 58% 40%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 214, 173, 0.24), transparent 24%),
    linear-gradient(145deg, #7b5335 0%, #533321 46%, #2c1a11 100%);
  box-shadow:
    inset -9px -11px 18px rgba(22, 12, 7, 0.46),
    inset 6px 8px 12px rgba(255, 234, 212, 0.1),
    0 12px 20px rgba(0, 0, 0, 0.18);
}

.coffee-bean::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 18%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(22, 12, 7, 0.82), rgba(83, 54, 36, 0.14)),
    radial-gradient(circle at center, rgba(255, 240, 224, 0.14), transparent 70%);
  transform: translateX(-50%) rotate(10deg);
}

.bean-large {
  width: 114px;
  height: 158px;
  top: 24px;
  left: 58px;
  transform: rotate(-18deg);
}

.bean-mid {
  width: 92px;
  height: 130px;
  top: 90px;
  right: 18px;
  transform: rotate(20deg);
}

.bean-small {
  width: 82px;
  height: 112px;
  bottom: 18px;
  left: 24px;
  transform: rotate(8deg);
}

.bean-tiny {
  width: 56px;
  height: 76px;
  bottom: 36px;
  right: 80px;
  transform: rotate(-26deg);
}

.showcase-card {
  background: linear-gradient(180deg, #f8f5ef 0%, #edf3eb 100%);
}

.site-footer {
  padding: 34px 0 44px;
  background: var(--dark);
  border-top: 1px solid rgba(20, 147, 71, 0.22);
  color: #f4efe7;
}

.footer-logo-banner {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 28px;
}

.footer-logo-banner img {
  width: min(100%, 80px);
  display: block;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.footer-title {
  margin: 0;
  color: rgba(244, 239, 231, 0.64);
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-grid h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(244, 239, 231, 0.74);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

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

@media (max-width: 1080px) {
  .about-layout,
  .estimate-panel,
  .services-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card:nth-child(4n) {
    border-right: 1px solid rgba(21, 19, 17, 0.22);
  }

  .product-card:nth-child(2n) {
    border-right: 0;
  }

  .about-section {
    padding: 16px 0 24px;
  }

  .about-layout {
    gap: 14px;
  }

  .about-intro-card {
    min-height: 0;
    height: auto;
    padding: 22px 20px 18px;
  }

  .about-intro-card h2 {
    max-width: 16ch;
    font-size: clamp(1.7rem, 3.8vw, 2.3rem);
    line-height: 1.02;
  }

  .about-photo-card {
    min-height: 340px;
    height: 340px;
  }

  .about-details,
  .about-copy {
    grid-template-columns: 1fr;
  }

  .about-details {
    margin-top: 18px;
    padding-top: 14px;
    padding-bottom: 0;
    gap: 14px;
  }

  .about-copy {
    max-width: none;
    margin-left: 0;
  }

  .about-copy p {
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    line-height: 1.3;
  }

  .device-card {
    width: min(100%, 250px);
    justify-self: start;
  }

  .device-body {
    transform: rotate(8deg);
    padding: 22px 20px;
  }

  .bean-scene {
    width: min(100%, 212px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 16px;
    transform: none;
  }

  .timeline-step {
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  .timeline-step.step-right {
    margin-left: 40px;
  }

  .timeline-step.step-left .timeline-number,
  .timeline-step.step-right .timeline-number {
    left: -41px;
    right: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 24px, 1280px);
  }

  .header-bar {
    grid-template-columns: 1fr auto auto;
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(248, 245, 239, 0.98);
  }

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

  .header-cta {
    justify-self: end;
  }

  .estimate-panel,
  .about-intro-card,
  .service-card,
  .showcase-card {
    padding: 24px;
  }

  .section-heading,
  .process-heading,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-banner {
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .footer-logo-banner img {
    width: min(100%, 150px);
    border-radius: 10px;
  }

  .section-heading,
  .process-heading {
    margin-bottom: 24px;
  }

  .estimate-copy h2,
  .section-heading h2,
  .process-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-banner,
  .hero-content {
    min-height: 620px;
  }

  .about-section {
    padding: 12px 0 20px;
  }

  .product-heading {
    padding: 36px 12px 26px;
  }

  .product-heading h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .product-info {
    min-height: 88px;
    padding: 12px;
  }

  .product-info h3 {
    font-size: 0.84rem;
  }

  .product-info p {
    font-size: 0.78rem;
  }

  .product-cart {
    width: 30px;
    height: 30px;
    margin-top: 4px;
  }

  .about-layout {
    gap: 10px;
  }

  .about-intro-card h2 {
    max-width: none;
    font-size: clamp(1.4rem, 5.2vw, 1.9rem);
    line-height: 1.04;
  }

  .about-socials {
    max-width: none;
    gap: 6px;
  }

  .about-socials a {
    min-height: 30px;
    padding: 0 10px 0 6px;
    font-size: 0.64rem;
  }

  .social-icon {
    width: 20px;
    height: 20px;
    font-size: 0.68rem;
  }

  .about-intro-card {
    min-height: 0;
    height: auto;
    padding: 18px 16px 14px;
  }

  .about-photo-card {
    min-height: 260px;
    height: 260px;
  }

  .about-link {
    min-height: 30px;
    font-size: 0.62rem;
  }

  .about-details {
    margin-top: 12px;
    padding-top: 10px;
    gap: 10px;
  }

  .about-label {
    font-size: 1.05rem;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-content {
    padding: 50px 20px 24px;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 14vw, 5.4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo-row {
    gap: 18px;
    padding-top: 56px;
    font-size: 0.76rem;
  }

  .device-card {
    width: min(100%, 220px);
    justify-self: center;
  }

  .device-body {
    transform: rotate(6deg);
    padding: 18px 16px;
  }

  .bean-scene {
    width: min(100%, 180px);
  }

  .bean-large {
    width: 92px;
    height: 128px;
    top: 16px;
    left: 42px;
  }

  .bean-mid {
    width: 76px;
    height: 108px;
    top: 74px;
    right: 14px;
  }

  .bean-small {
    width: 68px;
    height: 94px;
    bottom: 16px;
    left: 18px;
  }

  .bean-tiny {
    width: 48px;
    height: 66px;
    bottom: 28px;
    right: 58px;
  }
}

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

  .product-card,
  .product-card:nth-child(2n),
  .product-card:nth-child(4n) {
    border-right: 0;
  }

  .product-image {
    aspect-ratio: 1 / 0.92;
  }

  .about-photo-card {
    min-height: 220px;
    height: 220px;
  }

  .about-intro-card {
    padding: 16px 14px 12px;
  }

  .about-intro-card h2 {
    font-size: clamp(1.28rem, 7vw, 1.6rem);
  }

  .about-link {
    min-height: 28px;
    padding: 0 10px;
  }

  .device-card {
    width: min(100%, 190px);
  }

  .device-body {
    transform: none;
    padding: 16px 14px;
    border-radius: 28px;
  }

  .bean-scene {
    width: min(100%, 152px);
  }

  .bean-scene::before {
    inset: 16px 20px 14px;
  }

  .bean-scene::after {
    width: 48px;
    height: 48px;
    top: 12px;
    right: 10px;
  }

  .bean-large {
    width: 76px;
    height: 104px;
    top: 14px;
    left: 34px;
  }

  .bean-mid {
    width: 62px;
    height: 88px;
    top: 62px;
    right: 12px;
  }

  .bean-small {
    width: 56px;
    height: 78px;
    bottom: 12px;
    left: 14px;
  }

  .bean-tiny {
    width: 40px;
    height: 56px;
    bottom: 22px;
    right: 48px;
  }
}
