:root {
  --ink: #233640;
  --brown: #68452f;
  --brown-2: #7b563c;
  --cream: #eff7fb;
  --paper: #fbfdfe;
  --orange: #2f87c8;
  --orange-dark: #216da6;
  --olive: #9fcce0;
  --navy: #173f5b;
  --gold: #c69a58;
  --line: rgba(35, 75, 98, 0.14);
  --shadow: 0 24px 60px rgba(35, 86, 116, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.announcement {
  position: relative;
  z-index: 30;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  background: #d9b676;
  color: #32434b;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement button {
  position: absolute;
  right: 18px;
  border: 0;
  background: none;
  color: #32434b;
  cursor: pointer;
  font-size: 22px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(47, 135, 200, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #78909c;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-logo + span {
  transform: translateY(1px);
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding-block: 27px;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: width 180ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
}

.cart-count {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.icon-button,
.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(730px, calc(100vh - 110px));
  overflow: hidden;
  background:
    linear-gradient(105deg, #f9fcfe 0 53%, #dceff7 53% 100%);
  color: var(--ink);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 48%),
    radial-gradient(circle at 78% 43%, rgba(255, 255, 255, 0.8), transparent 27%);
}

.hero-decor {
  position: absolute;
  border: 1px solid rgba(47, 135, 200, 0.18);
  border-radius: 50%;
}

.hero-decor-one {
  top: -190px;
  right: -100px;
  width: 580px;
  height: 580px;
}

.hero-decor-two {
  right: 25%;
  bottom: -230px;
  width: 460px;
  height: 460px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(730px, calc(100vh - 110px));
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-block: 90px;
}

.hero-copy-wrap {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow.dark {
  color: var(--orange-dark);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 690px;
  color: var(--navy);
  font-size: clamp(55px, 6vw, 88px);
  line-height: 0.98;
}

.hero h1 em {
  color: var(--brown);
  font-weight: 600;
}

.hero-copy {
  max-width: 540px;
  margin: 32px 0;
  color: #58707d;
  font-size: 16px;
  line-height: 1.75;
}

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

.hero-product-halo {
  position: absolute;
  width: min(470px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #b8ddeb);
  box-shadow: 0 35px 80px rgba(37, 108, 146, 0.2);
}

.hero-product > img:not(.hero-emblem) {
  position: relative;
  z-index: 2;
  width: min(350px, 74%);
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(38, 64, 77, 0.2));
  mix-blend-mode: multiply;
  transform: rotate(2deg);
}

.hero-emblem {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 6%;
  width: 150px;
  filter: drop-shadow(0 12px 20px rgba(80, 55, 38, 0.18));
}

.hero-note {
  position: absolute;
  z-index: 4;
  top: 13%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(47, 135, 200, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 35px rgba(35, 86, 116, 0.12);
  backdrop-filter: blur(10px);
}

.hero-note strong {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 25px;
}

.hero-note span {
  color: #657c88;
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: white;
}

.button-primary:hover {
  background: var(--orange-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(35, 54, 64, 0.3);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  font-size: 17px;
}

.text-link.light {
  margin-top: 12px;
  color: #e9d9ca;
}

.hero-stat {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
}

.hero-stat strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 30px;
}

.hero-stat span {
  display: block;
  width: 90px;
  max-width: 90px;
  color: #708792;
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

.trust-grid article {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 18px;
  padding: 24px 38px;
  border-right: 1px solid var(--line);
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid article > span {
  color: #c08a68;
  font-family: var(--serif);
  font-size: 20px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 17px;
}

.trust-grid p {
  margin: 0;
  color: #7d6b60;
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

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

.section-heading h2,
.story-copy h2,
.newsletter h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.products-section {
  position: relative;
  scroll-margin-top: 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(205, 233, 245, 0.55), transparent 31%),
    linear-gradient(180deg, #fbfdfe, #f3f9fc);
}

.single-product {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.single-product-orbit {
  position: absolute;
  border: 1px solid rgba(47, 135, 200, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: 90px;
  left: -270px;
  width: 700px;
  height: 700px;
}

.orbit-two {
  right: -180px;
  bottom: -280px;
  width: 560px;
  height: 560px;
}

.single-product-stage {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.stage-caption {
  position: absolute;
  z-index: 3;
  top: 3%;
  left: 0;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.stage-halo {
  position: absolute;
  width: min(530px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, #fff 0 29%, transparent 30%),
    linear-gradient(145deg, #d8eef7, #a8d5e8);
  box-shadow:
    0 45px 90px rgba(48, 111, 145, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.stage-halo::before,
.stage-halo::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  content: "";
}

.stage-halo::before {
  inset: 8%;
}

.stage-halo::after {
  inset: 21%;
}

.single-product-image {
  position: relative;
  z-index: 2;
  width: min(405px, 72%);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 32px 30px rgba(38, 73, 91, 0.21));
  mix-blend-mode: multiply;
  transform: rotate(-2deg);
}

.origin-stamp,
.floating-note {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(35, 86, 116, 0.13);
  backdrop-filter: blur(10px);
}

.origin-stamp {
  top: 17%;
  right: 1%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 17px;
  border: 1px solid rgba(47, 135, 200, 0.14);
}

.origin-stamp strong {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 26px;
}

.origin-stamp span,
.floating-note span {
  color: #718895;
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.floating-note {
  min-width: 126px;
  padding: 13px 16px;
  border-left: 2px solid var(--gold);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note strong {
  margin-top: 4px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 17px;
}

.note-aroma {
  top: 36%;
  left: -1%;
}

.note-finish {
  right: 5%;
  bottom: 16%;
}

.single-product-copy h2 {
  color: var(--navy);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
}

.single-product-copy h2 em {
  color: var(--brown);
  font-weight: 600;
}

.single-product-lead {
  max-width: 560px;
  margin: 28px 0;
  color: #637985;
  font-size: 15px;
  line-height: 1.8;
}

.flavor-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 32px 0;
  border-block: 1px solid var(--line);
}

.flavor-profile > div {
  padding: 20px 15px 20px 0;
  border-right: 1px solid var(--line);
}

.flavor-profile > div:not(:first-child) {
  padding-left: 15px;
}

.flavor-profile > div:last-child {
  border-right: 0;
}

.flavor-profile span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.flavor-profile strong,
.flavor-profile small {
  display: block;
}

.flavor-profile strong {
  font-family: var(--serif);
  font-size: 16px;
}

.flavor-profile small {
  margin-top: 5px;
  color: #8799a1;
  font-size: 9px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.product-specs span,
.product-specs strong {
  display: block;
}

.product-specs span {
  margin-bottom: 5px;
  color: #8b9ba3;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-specs strong {
  font-size: 11px;
}

.single-product-purchase {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(47, 135, 200, 0.16);
  background: white;
  box-shadow: 0 22px 50px rgba(35, 86, 116, 0.1);
}

.single-price {
  min-width: 105px;
}

.single-price span,
.single-price strong {
  display: block;
}

.single-price span {
  margin-bottom: 3px;
  color: #8899a1;
  font-size: 9px;
}

.single-price strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
}

.featured-quantity {
  display: flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid var(--line);
}

.featured-quantity button {
  width: 34px;
  height: 50px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.featured-quantity span {
  min-width: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.featured-buy {
  width: 100%;
}

.featured-buy-now {
  grid-column: 3;
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.purchase-note {
  margin: 12px 0 0;
  color: #8a9aa2;
  font-size: 9px;
  text-align: right;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 8px;
}

.filter-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fffdf8;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 20px 45px rgba(53, 35, 23, 0.1);
  transform: translateY(-5px);
}

.product-visual {
  position: relative;
  display: grid;
  height: 330px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.95) 0 31%, transparent 32%),
    linear-gradient(145deg, color-mix(in srgb, var(--accent), white 72%), #edf6fa);
}

.product-visual::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  content: "";
}

.coffee-bag {
  position: relative;
  z-index: 1;
  display: flex;
  width: 155px;
  height: 218px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 20% 80%, rgba(0, 0, 0, 0.08)),
    var(--accent);
  box-shadow: 8px 20px 30px rgba(54, 31, 20, 0.2);
  color: white;
  clip-path: polygon(4% 3%, 96% 0, 100% 95%, 91% 100%, 7% 98%, 0 8%);
  text-align: center;
  transform: rotate(-2deg);
}

.product-packshot {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(47, 83, 101, 0.15));
  mix-blend-mode: multiply;
  transition: transform 220ms ease;
}

.product-card:hover .product-packshot {
  transform: translateY(-4px) scale(1.025);
}

.coffee-bag::before {
  position: absolute;
  top: 14px;
  right: 12px;
  left: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}

.bag-brand {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.bag-name {
  max-width: 110px;
  margin: 25px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 0.95;
}

.bag-origin {
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weight {
  position: absolute;
  right: 13px;
  bottom: 12px;
  font-size: 10px;
  font-weight: 700;
}

.product-info {
  padding: 24px 20px 21px;
}

.product-info > p {
  margin: 0 0 8px;
  color: #8a786d;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
}

.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 49px;
  padding: 13px 0;
}

.taste-notes span {
  color: #735e52;
  font-size: 10px;
}

.taste-notes span:not(:last-child)::after {
  margin-left: 5px;
  color: #b9a99e;
  content: "·";
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.product-buy strong {
  font-size: 14px;
}

.product-buy button {
  border: 0;
  padding: 5px 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.product-buy button:hover {
  color: var(--orange-dark);
}

.story {
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 9vw;
}

.story-art {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 55% 45%, rgba(123, 196, 226, 0.48), transparent 24%),
    radial-gradient(ellipse at 50% 84%, #c69a58 0 3%, transparent 3.5%),
    repeating-radial-gradient(ellipse at 50% 85%, transparent 0 32px, rgba(170, 218, 237, 0.18) 33px 34px),
    linear-gradient(145deg, #275d7d, #102e42);
}

.story-art::before,
.story-art::after {
  position: absolute;
  width: 145px;
  height: 260px;
  border: 1px solid rgba(173, 218, 237, 0.42);
  border-radius: 100% 0 100% 0;
  content: "";
  transform: rotate(35deg);
}

.story-art::after {
  width: 90px;
  height: 185px;
  transform: translate(95px, -55px) rotate(68deg);
}

.story-number {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
  font-size: 116px;
  letter-spacing: -0.08em;
}

.story-art-copy {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 35px;
  max-width: 270px;
}

.story-art-copy span,
.story-art-copy strong {
  display: block;
}

.story-art-copy span {
  margin-bottom: 9px;
  color: #b9e0f0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.story-art-copy strong {
  color: white;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}

.altitude {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #b9e0f0;
  font-family: var(--serif);
  font-size: 20px;
  text-align: right;
}

.altitude span {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.story-copy h2 {
  margin-bottom: 30px;
}

.story-copy > p:not(.eyebrow) {
  color: #cdbfb5;
  font-size: 14px;
  line-height: 1.9;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 20px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.story-values > div {
  padding: 18px 15px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.story-values > div:not(:first-child) {
  padding-left: 15px;
}

.story-values > div:last-child {
  border-right: 0;
}

.story-values strong,
.story-values span {
  display: block;
}

.story-values strong {
  margin-bottom: 6px;
  color: white;
  font-family: var(--serif);
  font-size: 15px;
}

.story-values span {
  color: #9eb9c7;
  font-size: 9px;
  line-height: 1.55;
}

.centered {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 345px;
  padding: 40px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #aa9587;
  font-family: var(--serif);
}

.line-art {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 5px auto 25px;
  border: 1px solid #b88c6b;
  border-radius: 50%;
}

.bean-art::after {
  position: absolute;
  inset: 31px 38px;
  border: 1px solid var(--orange-dark);
  border-radius: 55% 45% 55% 45%;
  content: "";
  transform: rotate(35deg);
}

.roast-art::before,
.roast-art::after {
  position: absolute;
  width: 28px;
  height: 48px;
  border: 1px solid var(--orange-dark);
  border-radius: 50%;
  content: "";
}

.roast-art::before {
  top: 36px;
  left: 31px;
  transform: rotate(-35deg);
}

.roast-art::after {
  top: 36px;
  right: 31px;
  transform: rotate(35deg);
}

.brew-art::after {
  position: absolute;
  top: 32px;
  left: 29px;
  width: 54px;
  height: 48px;
  border: 1px solid var(--orange-dark);
  border-radius: 4px 4px 24px 24px;
  content: "";
}

.process-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 25px;
}

.process-grid p {
  max-width: 260px;
  margin: auto;
  color: #78675c;
  font-size: 13px;
  line-height: 1.7;
}

.newsletter {
  padding: 80px 0;
  background: #3e98c9;
  color: white;
}

.product-thumbnails {
  position: absolute; z-index: 5; bottom: 3%; left: 50%; display: flex; max-width: 82%;
  gap: 9px; overflow-x: auto; transform: translateX(-50%);
}
.product-thumbnails:empty { display: none; }
.product-thumbnails button {
  flex: 0 0 58px; width: 58px; height: 58px; border: 1px solid rgba(47,135,200,.18);
  padding: 4px; background: rgba(255,255,255,.86); cursor: pointer;
}
.product-thumbnails button.active { border-color: var(--orange); box-shadow: 0 6px 18px rgba(35,86,116,.14); }
.product-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.journal { background: #f8fcfe; scroll-margin-top: 90px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.split-heading > p { max-width: 430px; margin: 0; color: #637985; line-height: 1.8; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.journal-card { border: 1px solid var(--line); background: white; }
.journal-image { display: grid; width: 100%; aspect-ratio: 1; place-items: center; overflow: hidden; background: var(--cream); color: var(--orange); font-size: 10px; letter-spacing: .18em; }
.journal-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.journal-card:hover .journal-image img { transform: scale(1.03); }
.journal-card > div { padding: 22px; }
.journal-card time { color: #8a9ba3; font-size: 9px; }
.journal-card h3 { margin: 10px 0; font-family: var(--serif); font-size: 25px; line-height: 1.2; }
.journal-card p { min-height: 60px; color: #637985; font-size: 12px; line-height: 1.7; }
.journal-link { color: var(--orange-dark); font-size: 11px; font-weight: 700; }
.journal-empty { border: 1px solid var(--line); padding: 45px; color: #718895; text-align: center; }
.article-page { min-height: 70vh; padding: 85px 0 120px; background: #f8fcfe; }
.article-shell { max-width: 850px; }
.article-header { max-width: 760px; margin: 0 auto 45px; text-align: center; }
.article-header h1 { color: var(--navy); font-size: clamp(45px, 7vw, 78px); line-height: 1.05; }
.article-header > p:not(.eyebrow) { color: #637985; font-size: 16px; line-height: 1.8; }
.article-header time { color: #8a9ba3; font-size: 10px; }
.article-cover { display: block; width: min(100%, 720px); aspect-ratio: 1; margin-inline: auto; object-fit: cover; }
.article-body { max-width: 700px; margin: 55px auto 0; color: #485e69; font-size: 16px; line-height: 1.9; }
.article-body h1, .article-body h2, .article-body h3 { margin: 1.4em 0 .55em; color: var(--navy); font-family: var(--serif); }
.article-body h1 { font-size: 38px; }.article-body h2 { font-size: 30px; }.article-body h3 { font-size: 23px; }
.article-body a { color: var(--orange-dark); text-decoration: underline; }
.article-body code { padding: 2px 6px; background: var(--cream); }
.article-loading { padding: 100px 0; color: #718895; text-align: center; }

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10vw;
}

.newsletter .eyebrow {
  color: #123e59;
}

.newsletter form label {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter form > div {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.newsletter input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 14px 0;
  background: transparent;
  color: white;
  font-size: 18px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.newsletter button {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 30px;
}

.newsletter small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

footer {
  padding: 75px 0 25px;
  background: #102e42;
  color: #d9edf5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 55px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid p {
  margin: 0;
  color: #94b7c8;
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: #9bbccc;
  font-size: 12px;
}

.footer-grid a:hover {
  color: white;
}

.footer-brand {
  margin-bottom: 15px;
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #77665d;
  font-size: 10px;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(24, 13, 8, 0.65);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 250ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: none;
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.checkout-modal h2 {
  font-size: 38px;
}

.drawer-header .eyebrow,
.checkout-form-wrap > .eyebrow {
  margin-bottom: 7px;
}

.close-drawer,
.close-checkout {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
}

.cart-items {
  overflow-y: auto;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 20px 22px 20px 0;
  border-bottom: 1px solid var(--line);
}

.mini-bag {
  display: grid;
  width: 48px;
  height: 65px;
  place-items: center;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent), white 70%);
}

.mini-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 17px;
}

.cart-item p {
  margin: 0 0 9px;
  color: #8a796f;
  font-size: 10px;
}

.cart-item > strong {
  font-size: 12px;
}

.quantity {
  display: flex;
  width: max-content;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity button {
  width: 27px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity span {
  min-width: 20px;
  text-align: center;
  font-size: 11px;
}

.remove-item {
  position: absolute;
  top: 12px;
  right: 0;
  border: 0;
  background: transparent;
  color: #a9978c;
  cursor: pointer;
}

.cart-empty {
  margin: auto;
  text-align: center;
}

.empty-cup {
  font-size: 48px;
  filter: grayscale(1);
}

.cart-empty h3 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: 24px;
}

.cart-empty p {
  max-width: 270px;
  color: #827168;
  font-size: 13px;
}

.cart-summary {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.cart-summary p {
  margin: 8px 0 18px;
  color: #8a796e;
  font-size: 10px;
}

.checkout-button {
  width: 100%;
}

.modal-backdrop {
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 30px;
}

.modal-backdrop[hidden],
.drawer-backdrop[hidden] {
  display: none;
}

.checkout-modal {
  position: relative;
  display: grid;
  width: min(980px, 100%);
  max-height: calc(100dvh - 60px);
  grid-template-columns: 1.45fr 0.8fr;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.close-checkout {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
}

.checkout-form-wrap {
  padding: 50px;
}

.checkout-form-wrap h2 {
  margin-bottom: 28px;
}

.checkout-form-wrap form > label,
.form-grid label {
  display: block;
  margin-bottom: 15px;
  color: #6f5d53;
  font-size: 11px;
  font-weight: 600;
}

.checkout-form-wrap input:not([type="radio"]),
.checkout-form-wrap textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  padding: 12px;
  background: white;
}

.checkout-form-wrap input:focus,
.checkout-form-wrap textarea:focus {
  border-color: var(--orange);
}

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

fieldset {
  margin: 10px 0 20px;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  padding: 13px;
  cursor: pointer;
}

.payment-option span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.payment-option strong {
  font-size: 12px;
}

.payment-option small {
  color: #88766c;
  font-size: 10px;
}

.submit-order {
  width: 100%;
}

.submit-order:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-message {
  color: var(--orange-dark);
  font-size: 12px;
  line-height: 1.6;
}

.form-message strong {
  display: block;
  color: #537148;
  font-size: 15px;
}

.payment-result {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
  padding: 14px;
  background: white;
  color: var(--ink);
}

.payment-result img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.payment-result div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-result span {
  margin-top: 6px;
  color: #82949d;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-result div strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
}

.payment-result small {
  margin-top: 8px;
  color: #768a94;
  font-size: 9px;
}

.checkout-summary {
  padding: 70px 35px 35px;
  background: #ede4d8;
}

.checkout-summary h3 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: 24px;
}

.checkout-item,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(44, 28, 19, 0.1);
  font-size: 11px;
}

.summary-row.total {
  align-items: center;
  border: 0;
  font-size: 14px;
}

.summary-row.total strong {
  font-family: var(--serif);
  font-size: 22px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 14px 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: white;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 200ms ease;
}

.toast.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .single-product {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
  }

  .single-product-stage {
    min-height: 620px;
  }

  .single-product-copy h2 {
    font-size: 52px;
  }

  .flavor-profile small {
    min-height: 24px;
  }

  .single-product-purchase {
    grid-template-columns: 1fr auto;
  }

  .featured-buy {
    grid-column: 1 / 3;
  }

  .featured-buy-now {
    grid-column: 1 / 3;
  }

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

  .story-grid {
    gap: 6vw;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .desktop-nav {
    display: none;
  }

  .icon-button,
  .menu-button {
    display: flex;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 5px;
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: var(--ink);
  }

  .mobile-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    overflow: hidden;
    background: white;
    box-shadow: 0 18px 35px rgba(35, 86, 116, 0.13);
    transition: max-height 220ms ease;
  }

  .mobile-nav.open {
    max-height: 280px;
  }

  .mobile-nav a {
    padding: 15px 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }

  .cart-button {
    font-size: 0;
  }

  .hero {
    min-height: 960px;
    background: linear-gradient(180deg, #f9fcfe 0 57%, #dceff7 57% 100%);
  }

  .hero-overlay {
    background: radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.8), transparent 29%);
  }

  .hero-content {
    min-height: 960px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 10px;
    padding: 65px 0 90px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero h1 em {
    display: block;
    max-width: 100%;
    white-space: normal;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin: 25px 0;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

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

  .hero-product-halo {
    width: 330px;
  }

  .hero-product > img:not(.hero-emblem) {
    width: 230px;
    max-height: 375px;
  }

  .hero-emblem {
    display: none;
  }

  .hero-note {
    top: 11%;
    left: 0;
  }

  .hero-stat {
    right: 18px;
    bottom: 20px;
  }

  .trust-grid,
  .story-grid,
  .process-grid,
  .newsletter-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:first-child {
    min-height: 90px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 75px 0;
  }

  .single-product {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-product-stage {
    min-height: 520px;
  }

  .stage-caption {
    top: 0;
    writing-mode: initial;
  }

  .stage-halo {
    width: 370px;
  }

  .single-product-image {
    width: 260px;
    max-height: 430px;
  }

  .origin-stamp {
    top: 15%;
    right: 0;
    padding: 10px 12px;
  }

  .origin-stamp strong {
    font-size: 20px;
  }

  .floating-note {
    min-width: 105px;
    padding: 10px 12px;
  }

  .note-aroma {
    top: 42%;
  }

  .note-finish {
    right: 1%;
    bottom: 10%;
  }

  .single-product-copy h2 {
    font-size: 43px;
  }

  .single-product-lead {
    font-size: 14px;
  }

  .flavor-profile {
    grid-template-columns: 1fr;
  }

  .flavor-profile > div,
  .flavor-profile > div:not(:first-child) {
    display: grid;
    grid-template-columns: 35px 1fr 1fr;
    align-items: center;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flavor-profile > div:last-child {
    border-bottom: 0;
  }

  .flavor-profile span {
    margin: 0;
  }

  .flavor-profile small {
    min-height: 0;
    margin: 0;
    text-align: right;
  }

  .product-specs {
    grid-template-columns: 1fr 1fr;
  }

  .product-specs > div:last-child {
    grid-column: 1 / 3;
  }

  .single-product-purchase {
    grid-template-columns: 1fr auto;
    padding: 15px;
  }

  .featured-buy,
  .featured-buy-now {
    grid-column: 1 / 3;
  }

  .purchase-note {
    text-align: left;
    line-height: 1.5;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
  .journal-grid { grid-template-columns: 1fr; }

  .product-visual {
    height: 350px;
  }

  .story-grid {
    gap: 55px;
  }

  .story-art {
    min-height: 390px;
  }

  .story-number {
    font-size: 88px;
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .story-values > div,
  .story-values > div:not(:first-child) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .story-values > div:last-child {
    border-bottom: 0;
  }

  .process-grid article {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .newsletter-inner {
    gap: 45px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .checkout-modal {
    display: block;
    max-height: none;
  }

  .modal-backdrop {
    display: block;
    padding: 0;
  }

  .checkout-form-wrap {
    padding: 65px 20px 35px;
  }

  .checkout-summary {
    padding: 35px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .payment-result {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Immersive landing sequence */
main {
  display: flex;
  flex-direction: column;
}

.hero { order: 1; }
.trust-strip { order: 2; }
.story { order: 3; }
.process { order: 4; }
.products-section { order: 5; }
.journal { order: 6; }
.contact-section { order: 7; }

.brand-intro {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-content: center;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 45%, rgba(82, 168, 211, .25), transparent 28%),
    #102e42;
  color: white;
  text-align: center;
  transition: opacity .7s ease, visibility .7s ease, transform .8s cubic-bezier(.7, 0, .2, 1);
}

.brand-intro.leaving {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4%);
}

.brand-intro-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(181, 225, 242, .18);
  border-radius: 50%;
  animation: intro-ring 2.8s cubic-bezier(.2, .7, .2, 1) both;
  transform: translate(-50%, -50%);
}

.brand-intro-ring::before,
.brand-intro-ring::after {
  position: absolute;
  border: 1px solid rgba(181, 225, 242, .12);
  border-radius: inherit;
  content: "";
}

.brand-intro-ring::before { inset: 11%; }
.brand-intro-ring::after { inset: 24%; }

.brand-intro img {
  position: relative;
  width: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: white;
  animation: intro-rise .8s .2s both;
}

.brand-intro p {
  position: relative;
  margin: 0 0 18px;
  color: #b9e0f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  animation: intro-rise .8s .45s both;
}

.brand-intro h2 {
  position: relative;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  animation: intro-rise .9s .65s both;
}

.brand-intro h2 em { color: #86c9e5; font-weight: 600; }

.intro-progress {
  position: relative;
  width: min(300px, 65vw);
  height: 1px;
  margin: 35px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.intro-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #b9e0f0;
  animation: intro-progress 2.5s .35s linear both;
  transform-origin: left;
}

.brand-intro button {
  position: absolute;
  right: 28px;
  bottom: 25px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding: 6px 0;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  font-size: 10px;
}

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes intro-ring {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.72) rotate(-12deg); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
}

@keyframes intro-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(23, 63, 91, .1);
  background: rgba(249, 252, 254, .82);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 35px rgba(23, 63, 91, .08);
}

.nav-wrap {
  width: 100%;
  min-height: 82px;
  padding: 0 34px;
}

.desktop-nav { align-self: stretch; gap: 0; }

.desktop-nav a {
  display: flex;
  min-width: 125px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid rgba(23, 63, 91, .09);
  padding: 0 22px;
  font-size: 11px;
}

.desktop-nav a:last-child { border-right: 1px solid rgba(23, 63, 91, .09); }
.desktop-nav a::after { display: none; }
.desktop-nav a span { color: #8ea5b1; font-family: var(--serif); font-size: 9px; }
.desktop-nav a:hover { background: rgba(47, 135, 200, .05); color: var(--orange-dark); }

.header-contact {
  border-bottom: 1px solid rgba(23, 63, 91, .32);
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
}

.cart-button {
  min-height: 42px;
  padding: 0 6px 0 16px;
  border-left: 1px solid rgba(23, 63, 91, .12);
}

.hero {
  min-height: 100svh;
  background:
    linear-gradient(112deg, #f9fcfe 0 58%, #dceff7 58% 100%);
}

.hero-content {
  min-height: 100svh;
  padding-top: 130px;
}

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

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

.coffee-illustration {
  position: relative;
  z-index: 3;
  width: min(500px, 88%);
  height: 445px;
  animation: brand-float 5s ease-in-out infinite;
}

.coffee-art {
  position: absolute;
  z-index: 4;
  top: 90px;
  left: 50%;
  width: 112%;
  max-width: none;
  filter: drop-shadow(0 30px 22px rgba(34, 87, 115, .2));
  transform: translateX(-50%);
}

.coffee-glow {
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 50%;
  width: 390px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.92) 0 34%, rgba(198,230,243,.54) 56%, transparent 74%);
  filter: blur(5px);
  transform: translateX(-50%);
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: .78; transform: translateX(-50%) scale(1.06); }
}

.coffee-shadow {
  position: absolute;
  z-index: 2;
  top: 374px;
  left: 50%;
  width: 355px;
  height: 42px;
  border-radius: 50%;
  background: rgba(29, 82, 110, .22);
  filter: blur(20px);
  transform: translateX(-50%);
  animation: shadow-pulse 5s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
  50%      { opacity: .72; transform: translateX(-50%) scaleX(1.06); }
}

/* The hero uses animated coffee liquid instead of smoke. */

.hero-brand-orbit {
  position: absolute;
  border: 1px solid rgba(47, 135, 200, .18);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.orbit-a { width: 470px; height: 470px; }
.orbit-b { width: 570px; height: 570px; animation-direction: reverse; animation-duration: 26s; }

.hero-brand-orbit::after {
  position: absolute;
  top: 12%;
  left: 8%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(47, 135, 200, .1);
  content: "";
}

.hero-word {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid rgba(47, 135, 200, .14);
  background: rgba(255, 255, 255, .76);
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  backdrop-filter: blur(8px);
}

.word-one { top: 20%; left: 1%; }
.word-two { top: 37%; right: -2%; }
.word-three { right: 10%; bottom: 15%; }

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: #78909c;
  font-size: 8px;
  letter-spacing: .18em;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(47, 135, 200, .18);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  background: var(--orange);
  content: "";
  animation: scroll-line 1.7s ease-in-out infinite;
  transform: translateY(-100%);
}

@keyframes brand-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* Smoke was intentionally removed from the hero treatment. */

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes scroll-line { 55%, 100% { transform: translateY(100%); } }

.reveal-section > .container,
.reveal-section .hero-content,
.reveal-section .trust-grid {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity .85s ease, transform 1s cubic-bezier(.2, .7, .2, 1);
}

.reveal-section.is-visible > .container,
.reveal-section.is-visible .hero-content,
.reveal-section.is-visible .trust-grid {
  opacity: 1;
  transform: none;
}

.story { min-height: 100svh; display: flex; align-items: center; }
.process { background: #f8fcfe; }
.products-section { padding-top: 145px; padding-bottom: 145px; }

.contact-section {
  padding: 110px 0;
  background: #173f5b;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  align-items: center;
  gap: 9vw;
}

.contact-copy h2 { font-size: clamp(45px, 6vw, 72px); line-height: 1.03; }
.contact-copy > p:not(.eyebrow) { max-width: 570px; color: #b7ccd7; font-size: 14px; line-height: 1.9; }

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-details > * { padding: 20px 12px 0 0; }
.contact-details span, .contact-details strong { display: block; }
.contact-details span { margin-bottom: 7px; color: #86a8b9; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong { font-size: 11px; }

.contact-card {
  padding: 38px;
  background: #f7fbfd;
  box-shadow: 0 30px 70px rgba(4, 24, 36, .22);
  color: var(--ink);
}

.contact-card > p { margin: 0 0 10px; color: var(--orange-dark); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.contact-card h3 { margin: 0 0 35px; font-family: var(--serif); font-size: 32px; }
.contact-card label { display: block; margin-bottom: 10px; font-size: 10px; font-weight: 700; }
.contact-card > div { display: flex; border-bottom: 1px solid rgba(23, 63, 91, .24); }
.contact-card input { width: 100%; border: 0; outline: 0; padding: 14px 0; background: transparent; color: var(--ink); }
.contact-card button { border: 0; background: transparent; color: var(--orange); cursor: pointer; font-size: 28px; }
.contact-card small { display: block; margin-top: 13px; color: #81949e; font-size: 9px; }

@media (max-width: 1020px) {
  .desktop-nav a { min-width: auto; padding: 0 14px; }
  .header-contact { display: none; }
  .hero-brand-visual { min-height: 500px; }
  .orbit-b { width: 500px; height: 500px; }
  .contact-grid { gap: 5vw; }
}

@media (max-width: 760px) {
  .nav-wrap { min-height: 72px; padding: 0 16px; }
  .site-header .brand-logo { width: 42px; height: 42px; }
  .site-header .brand span { font-size: 12px; }
  .site-header .brand small { font-size: 6px; }
  .mobile-nav { top: 72px; }
  .nav-actions { gap: 7px; }
  .site-header .brand { min-width: 0; flex-shrink: 1; }
  .site-header .brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-actions { flex-shrink: 0; }
  .cart-button { min-height: 34px; padding-left: 8px; font-size: 0; }

  .hero { min-height: 930px; background: linear-gradient(180deg, #f9fcfe 0 57%, #dceff7 57%); }
  .hero-content { min-height: 930px; padding-top: 115px; }
  .hero-brand-visual { min-height: 420px; }
  .coffee-illustration { left: -5px; width: 350px; height: 380px; scale: .78; }
  .coffee-art { top: 90px; }
  .coffee-liquid { top: 156px; width: 250px; height: 70px; }
  .coffee-glow { width: 310px; height: 250px; }
  .orbit-a { width: 320px; height: 320px; }
  .orbit-b { width: 385px; height: 385px; }
  .hero-word { font-size: 7px; }
  .word-one { left: 0; }.word-two { right: 0; }.word-three { right: 2%; }
  .hero-scroll { display: none; }

  .brand-intro h2 { font-size: 39px; }
  .brand-intro img { width: 75px; }
  .story { min-height: auto; }
  .products-section { padding-top: 85px; padding-bottom: 85px; }
  .contact-grid, .contact-details { grid-template-columns: 1fr; }
  .contact-grid { gap: 55px; }
  .contact-details > * { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .contact-card { padding: 28px 22px; }
}

@media (max-width: 430px) {
  .site-header .brand { gap: 7px; }
  .site-header .brand-logo { width: 39px; height: 39px; }
  .site-header .brand span { font-size: 11px; letter-spacing: .1em; }
  .site-header .brand small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro { display: none; }
  .coffee-illustration,
  .hero-brand-orbit,
  .hero-scroll i::after,
  .coffee-glow,
  .coffee-shadow,
  .coffee-liquid,
  .liq-wave-layer,
  .liq-ripple,
  .liq-sheen,
  .liq-rim-light { animation: none !important; }
  .reveal-section > .container,
  .reveal-section .hero-content,
  .reveal-section .trust-grid { opacity: 1; transform: none; }
}
