:root {
  --navy: #071226;
  --navy-2: #0d1b35;
  --navy-3: #14284d;
  --cream: #eef2f7;
  --cream-2: #ffffff;
  --brown: #8a5d35;
  --brown-2: #b6844f;
  --gold: #d3aa72;
  --text: #121933;
  --muted: #74777f;
  --line: rgba(17, 24, 48, .13);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(20, 40, 77, .18), transparent 34%),
    linear-gradient(180deg, #f4f7fb 0%, #edf2f8 42%, #f7f2eb 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

a,
button,
select {
  font: inherit;
}

h1,
h2,
h3,
.logo span {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.container {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}

.topbar {
  height: 42px;
  background: #061024;
  color: rgba(255, 255, 255, .84);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
}

.topbar a {
  color: white;
  text-decoration: none;
}

.header {
  width: min(100%, 1500px);
  min-height: 108px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  background: rgba(238, 242, 247, .78);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span {
  color: #917151;
  font-size: 58px;
  line-height: .8;
  letter-spacing: -4px;
}

.header .logo span {
  font-size: 70px;
}

.header .logo small {
  font-size: 11px;
}

.logo small {
  color: #917151;
  font-size: 10px;
  line-height: 1.22;
  letter-spacing: 3.6px;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #70737b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

nav a:hover {
  color: var(--navy);
}

.btn {
  min-height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 42%, transparent 58%);
  transform: translateX(-130%);
  transition: transform .58s ease;
}

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

.btn:hover::after {
  transform: translateX(130%);
}

.btn:active {
  transform: translateY(0) scale(.99);
}

.btn-outline {
  justify-self: end;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ba8546, #d4a35c);
  color: white;
  box-shadow: 0 16px 32px rgba(67, 38, 15, .22);
}

.btn-hero {
  min-height: 64px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 20px 42px rgba(186, 133, 70, .34),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .32);
  color: white;
  background: rgba(255, 255, 255, .08);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brown-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.hero {
  width: min(100%, 1500px);
  min-height: 690px;
  margin: 0 auto;
  padding: 30px 34px 76px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 44px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(55, 96, 166, .36), transparent 38%),
    linear-gradient(145deg, rgba(7, 18, 38, .99), rgba(12, 29, 58, .99));
  padding: 58px 54px 46px;
  color: white;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 28%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(211, 170, 114, .34);
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: white;
  font-size: clamp(43px, 4vw, 68px);
  line-height: 1.03;
  font-weight: 400;
}

.hero-copy p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .76);
  font-size: 20px;
  line-height: 1.48;
}

.hero-checks {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 30px;
}

.hero-checks span {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .88);
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
}

.hero-copy p.service-area {
  margin-top: -16px;
  margin-bottom: 30px;
  color: #f1d3a5;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-proof span {
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  padding: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 650px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 30px 90px rgba(7, 18, 38, .28);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .hero-video {
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 24, 48, .04), rgba(17, 24, 48, .38));
}

.video-play-card {
  position: absolute;
  z-index: 2;
  left: 26px;
  top: 26px;
  width: min(380px, calc(100% - 52px));
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 20px;
  background: rgba(7, 18, 38, .82);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  box-shadow: 0 18px 42px rgba(7, 18, 38, .28);
}

.video-play-card > span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #917151;
  color: white;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.video-play-card strong,
.video-play-card small {
  display: block;
}

.video-play-card strong {
  font-size: 17px;
}

.video-play-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.35;
}

.quote-card {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  width: min(390px, calc(100% - 52px));
  border-radius: 18px;
  background: rgba(255, 250, 243, .94);
  padding: 22px;
  box-shadow: 0 18px 38px rgba(17, 24, 48, .18);
}

.quote-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.quote-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-strip article {
  border: 1px solid rgba(20, 40, 77, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(7, 18, 38, .06);
}

.clients {
  padding-top: 8px;
  padding-bottom: 42px;
}

.section-heading.compact {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.client-grid article {
  min-height: 142px;
  border: 1px solid rgba(20, 40, 77, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 18px;
}

.client-grid img {
  width: 100%;
  max-width: 132px;
  height: 66px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.client-grid img.round-logo {
  width: 76px;
  height: 76px;
  max-width: 76px;
  border-radius: 50%;
  mix-blend-mode: normal;
}

.client-grid strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 12px;
  margin-bottom: 24px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #071226, #102247);
  box-shadow: 0 26px 70px rgba(7, 18, 38, .18);
}

.metrics article {
  min-height: 132px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

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

.metrics strong {
  display: block;
  color: #f0c27b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.solution-section {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.solution-copy {
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(20, 40, 77, .12);
  padding: 44px;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .07);
}

.solution-primary .solution-copy {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(241, 246, 252, .92));
}

.solution-secondary .solution-copy {
  background:
    linear-gradient(145deg, rgba(7, 18, 38, .98), rgba(13, 32, 64, .98));
  color: white;
}

.solution-copy h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 400;
}

.solution-secondary .solution-copy h2 {
  color: white;
}

.solution-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.solution-secondary .solution-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 46px;
  border-radius: 12px;
  background: rgba(20, 40, 77, .08);
  color: var(--navy);
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-weight: 900;
}

.solution-secondary .benefit-list li {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
}

.solution-image {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 22px 60px rgba(7, 18, 38, .16);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--navy-3);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.trust-strip .benefit-icon {
  margin-top: 0;
  color: white;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 400;
}

.section-heading > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.services {
  padding-top: 84px;
}

.service-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(20, 40, 77, .13);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .08);
}

.service-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-grid h3 {
  padding: 26px 26px 0;
  color: var(--navy);
  font-size: 29px;
  font-weight: 400;
}

.service-grid p {
  margin: 14px 0 0;
  padding: 0 26px 28px;
  color: var(--muted);
  line-height: 1.48;
}

.menu-builder {
  margin-top: 104px;
  padding: 88px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(50, 91, 155, .35), transparent 32%),
    linear-gradient(135deg, #061024 0%, #0d1d3a 48%, #071226 100%);
  color: white;
}

.menu-layout {
  display: grid;
  grid-template-columns: .7fr 1.15fr .62fr;
  gap: 24px;
  align-items: start;
}

.menu-intro h2 {
  color: white;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.08;
  font-weight: 400;
}

.menu-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.5;
}

.menu-note {
  margin-top: 26px;
  border-radius: 16px;
  border: 1px solid rgba(211, 170, 114, .28);
  background: rgba(255, 255, 255, .06);
  padding: 20px;
}

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

.menu-note strong {
  color: var(--gold);
}

.menu-note span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.42;
}

.menu-panel {
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  padding: 18px;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 800;
}

.tab.active {
  border-color: var(--navy-3);
  background: var(--navy-3);
  color: white;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.menu-card {
  min-height: 300px;
  border: 1px solid rgba(20, 40, 77, .13);
  border-radius: 18px;
  background: white;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7, 18, 38, .08);
}

.menu-card img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

.menu-card > div {
  min-height: 170px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.menu-card.featured-item {
  grid-column: span 2;
  min-height: 260px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}

.menu-card.featured-item img {
  height: 100%;
  min-height: 260px;
}

.menu-card.featured-item > div {
  min-height: 260px;
  padding: 24px;
}

.menu-card.is-hidden {
  display: none;
}

.tag {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(20, 40, 77, .1);
  color: var(--navy-3);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.menu-card h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.12;
  font-weight: 400;
}

.menu-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.menu-card button {
  min-height: 42px;
  margin-top: auto;
  border: 1px solid var(--navy-3);
  border-radius: 999px;
  background: transparent;
  color: var(--navy-3);
  cursor: pointer;
  font-weight: 900;
}

.menu-card button.is-selected {
  background: var(--navy-3);
  color: white;
}

.quote-box {
  position: sticky;
  top: 18px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--text);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(7, 18, 38, .22);
}

.quote-box h3 {
  color: var(--navy);
  font-size: 30px;
  font-weight: 400;
}

#selected-list {
  min-height: 96px;
  margin: 18px 0;
  padding-left: 18px;
  color: var(--text);
}

#selected-list li {
  margin: 8px 0;
  line-height: 1.35;
}

#selected-list .empty {
  color: var(--muted);
}

.quote-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
}

.quote-box select {
  width: 100%;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--text);
  padding: 0 12px;
}

.quote-box .btn {
  width: 100%;
}

.clear {
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.plans {
  padding-top: 98px;
}

.plans .section-heading {
  margin: 0 auto;
  text-align: center;
}

.plan-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream-2);
  padding: 30px;
}

.plan span {
  color: var(--brown);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
}

.plan h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 400;
}

.plan ul {
  margin: 24px 0 28px;
  padding-left: 20px;
  color: var(--muted);
}

.plan li {
  margin: 12px 0;
  line-height: 1.45;
}

.plan a {
  color: var(--brown);
  font-weight: 900;
  text-decoration: none;
}

.plan.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(17, 24, 48, .18);
}

.plan.featured h3,
.plan.featured li {
  color: white;
}

.plan.featured a,
.plan.featured span {
  color: var(--gold);
}

.kit-builder {
  padding-top: 98px;
  padding-bottom: 12px;
}

.kit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.kit-heading h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 400;
}

.kit-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.kit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  align-items: start;
}

.kit-config {
  display: grid;
  gap: 18px;
}

.kit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.kit-steps span {
  min-height: 54px;
  border: 1px solid rgba(145, 113, 81, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(17, 24, 48, .06);
}

.kit-steps strong {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #917151;
  color: white;
  font-size: 13px;
}

.kit-card,
.kit-summary {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(250, 246, 239, .9));
  box-shadow: 0 24px 70px rgba(17, 24, 48, .09);
}

.kit-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.kit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #917151, rgba(211, 170, 114, .4), transparent);
}

.kit-people {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.kit-card-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.kit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.kit-card h3,
.kit-summary h3 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 400;
}

.kit-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.kit-people label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 900;
}

.kit-people input {
  width: min(100%, 260px);
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
  color: var(--navy);
  background: white;
  font-size: 22px;
  font-weight: 900;
}

.weekday-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.weekday-btn {
  min-height: 48px;
  border: 1px solid rgba(17, 24, 48, .12);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  padding: 0 18px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.kit-item {
  min-height: 74px;
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 16px;
  background: white;
  color: var(--navy);
  padding: 14px;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "check name"
    "check price";
  gap: 4px 10px;
  align-items: center;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.weekday-btn:hover,
.kit-item:hover {
  transform: translateY(-1px);
  border-color: rgba(182, 132, 79, .5);
  box-shadow: 0 12px 28px rgba(17, 24, 48, .08);
}

.weekday-btn.active,
.kit-item.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  box-shadow: 0 14px 30px rgba(7, 18, 38, .18);
}

.kit-item-check {
  grid-area: check;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(145, 113, 81, .12);
  color: #917151;
  font-weight: 900;
}

.kit-item.active .kit-item-check {
  background: var(--gold);
  color: var(--navy);
}

.kit-item-name {
  grid-area: name;
  font-weight: 900;
  line-height: 1.2;
}

.kit-item-price {
  grid-area: price;
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
}

.kit-item.active .kit-item-price {
  color: var(--gold);
}

.daily-kit-list {
  display: grid;
  gap: 14px;
}

.daily-kit {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72));
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.daily-kit header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.daily-kit strong {
  color: var(--navy);
  font-size: 18px;
}

.daily-kit span {
  border-radius: 999px;
  background: rgba(145, 113, 81, .1);
  color: #917151;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
}

.kit-summary {
  position: sticky;
  top: 18px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .96)),
    var(--navy);
  color: white;
}

.kit-summary .eyebrow,
.kit-summary h3 {
  color: white;
}

.kit-summary h3 {
  margin-bottom: 22px;
}

.summary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 22px;
}

.summary-metrics div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
}

.summary-metrics dt {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.summary-metrics dd {
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.summary-metrics .summary-total {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(211, 170, 114, .38);
  border-radius: 18px;
  background: rgba(211, 170, 114, .12);
}

.summary-metrics .summary-total dd {
  color: var(--gold);
  font-size: 30px;
}

.summary-items {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
}

.summary-items li {
  line-height: 1.45;
}

.summary-note {
  margin: 24px 0 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.kit-summary .btn {
  width: 100%;
}

.process {
  padding-top: 92px;
  padding-bottom: 86px;
}

.testimonials {
  padding-top: 14px;
  padding-bottom: 88px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid article {
  min-height: 260px;
  border: 1px solid rgba(20, 40, 77, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .07);
}

.testimonial-grid article::before {
  content: "“";
  display: block;
  height: 40px;
  color: var(--brown-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: .7;
}

.testimonial-grid p {
  margin: 18px 0 28px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.48;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--navy);
}

.testimonial-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  min-height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(10, 72, 38, .24);
}

.home-hero,
.service-hero {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.home-hero-copy,
.service-hero > div {
  min-height: 640px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(211, 170, 114, .24), transparent 30%),
    linear-gradient(145deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .93)),
    var(--navy);
  color: white;
  padding: clamp(34px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow:
    0 30px 90px rgba(7, 18, 38, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.home-hero-copy::after,
.service-hero > div::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(145, 113, 81, .28);
}

.home-hero-copy > *,
.service-hero > div > * {
  position: relative;
  z-index: 1;
}

.home-hero-copy .eyebrow,
.service-hero .eyebrow {
  color: var(--gold);
}

.home-hero h1,
.service-hero h1 {
  max-width: 780px;
  color: white;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 400;
}

.home-hero p:not(.eyebrow),
.service-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
  line-height: 1.52;
}

.home-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-service-pills span {
  min-height: 48px;
  border: 1px solid rgba(211, 170, 114, .36);
  border-radius: 16px;
  color: rgba(255, 255, 255, .9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-weight: 900;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.home-hero-visual,
.service-hero > img {
  min-height: 640px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(7, 18, 38, .24);
}

.home-hero-visual {
  position: relative;
  background: var(--navy);
}

.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 38, .02), rgba(7, 18, 38, .34)),
    linear-gradient(90deg, rgba(7, 18, 38, .22), transparent 50%);
}

.home-hero-visual img,
.service-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-visual img {
  object-position: center;
  transform: scale(1.01);
}

.home-hero-badge {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
  border-radius: 20px;
  background: rgba(255, 250, 243, .94);
  padding: 20px;
  box-shadow: 0 20px 48px rgba(7, 18, 38, .18);
}

.home-hero-badge strong,
.home-hero-badge span {
  display: block;
}

.home-hero-badge strong {
  color: var(--navy);
}

.home-hero-badge span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.home-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 26px;
}

.home-proof article,
.detail-grid article {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .06);
}

.home-proof strong,
.home-proof span,
.detail-grid span,
.detail-grid h3,
.detail-grid p {
  display: block;
}

.home-proof strong,
.detail-grid h3 {
  color: var(--navy);
  font-size: 22px;
}

.home-proof span,
.detail-grid p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.trusted-companies {
  padding-top: 54px;
}

.trusted-companies .section-heading {
  text-align: center;
}

.trusted-logo-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trusted-logo-grid article {
  min-height: 120px;
  border: 1px solid rgba(17, 24, 48, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(7, 18, 38, .05);
}

.trusted-logo-grid img {
  width: 100%;
  max-width: 138px;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(.82) contrast(.95);
}

.trusted-logo-grid .round-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}

.home-services {
  padding-top: 88px;
  padding-bottom: 86px;
}

.service-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 26px;
  background: white;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 18, 38, .1);
}

.service-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.service-card > div {
  padding: 28px;
}

.service-card span {
  color: #917151;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 400;
}

.service-card p {
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.5;
}

.service-card .btn {
  width: 100%;
}

.home-cta {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .96), rgba(13, 27, 53, .92)),
    var(--navy);
  padding: 86px 0;
  color: white;
  text-align: center;
}

.home-cta .container {
  max-width: 900px;
}

.home-cta .eyebrow {
  color: var(--gold);
}

.home-cta h2 {
  color: white;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 400;
}

.home-cta .btn {
  margin-top: 28px;
}

.how-section,
.important-info,
.production-section {
  padding-top: 82px;
}

.how-grid,
.info-card-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.how-grid article,
.info-card-grid article {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  padding: 26px;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .07);
}

.how-grid article > span,
.info-card-grid article > span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(145, 113, 81, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 18px;
}

.how-grid strong,
.info-card-grid h3 {
  display: block;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.18;
}

.how-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.info-card-grid ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-card-grid li {
  color: var(--muted);
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.info-card-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #917151;
}

.process-line {
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 60px rgba(7, 18, 38, .08);
  overflow: hidden;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 113, 81, .5), transparent);
}

.process-line article {
  position: relative;
  padding: 30px 24px 28px;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.process-line article + article {
  border-left: 1px solid rgba(17, 24, 48, .08);
}

.process-line span {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, #0d1b35, #071226);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  box-shadow: 0 16px 36px rgba(7, 18, 38, .18);
}

.process-line strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.process-line p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.info-premium-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.info-premium-heading h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 400;
}

.info-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-premium-card {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(247, 242, 235, .78));
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 22px 60px rgba(7, 18, 38, .08);
  overflow: hidden;
}

.info-premium-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #917151, rgba(211, 170, 114, .25));
}

.info-premium-card.featured {
  background:
    radial-gradient(circle at 90% 0%, rgba(211, 170, 114, .22), transparent 34%),
    linear-gradient(145deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94));
  color: white;
}

.info-premium-card > span {
  color: #917151;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.info-premium-card.featured > span {
  color: var(--gold);
}

.info-premium-card h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 400;
}

.info-premium-card.featured h3 {
  color: white;
}

.info-premium-card strong {
  display: block;
  margin: 26px 0 14px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.info-premium-card.featured strong {
  color: var(--gold);
}

.info-premium-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.info-premium-card.featured p {
  color: rgba(255, 255, 255, .76);
}

.production-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 22px;
  align-items: stretch;
  padding-bottom: 90px;
}

.production-copy {
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(7, 18, 38, .96), rgba(13, 27, 53, .9)),
    var(--navy);
  color: white;
  padding: clamp(32px, 5vw, 58px);
}

.production-copy .eyebrow {
  color: var(--gold);
}

.production-copy h2 {
  color: white;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 400;
}

.production-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.55;
}

.production-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.production-tags span {
  min-height: 38px;
  border: 1px solid rgba(211, 170, 114, .28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: white;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.production-section > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(7, 18, 38, .12);
}

.why-strena {
  padding-top: 82px;
  padding-bottom: 90px;
}

.why-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.why-heading h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 400;
}

.why-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.quality-highlight {
  max-width: 1080px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(211, 170, 114, .18), transparent 34%),
    linear-gradient(145deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94));
  padding: 28px 32px;
  box-shadow: 0 22px 60px rgba(7, 18, 38, .14);
}

.quality-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.metric-strip {
  max-width: 1080px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric-strip article {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  padding: 20px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(7, 18, 38, .06);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: #917151;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  font-weight: 400;
}

.metric-strip span {
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
}

.why-layout {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-card-grid article {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .07);
}

.why-card-grid article:last-child {
  grid-column: auto;
}

.why-card-grid span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(145, 113, 81, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #917151;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-card-grid h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 400;
}

.why-card-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 56px;
}

.detail-grid span {
  color: #917151;
  font-weight: 900;
}

.menu-options,
.gallery-section {
  padding-top: 86px;
}

.option-grid,
.service-gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.option-grid article,
.service-gallery img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(7, 18, 38, .08);
}

.option-grid article {
  background: white;
}

.option-grid img,
.service-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.option-grid strong {
  display: block;
  padding: 16px;
  color: var(--navy);
}

.service-menu {
  margin-top: 88px;
}

.contract-info {
  padding-top: 48px;
}

.contract-heading {
  margin-bottom: 16px;
}

.contract-heading .eyebrow {
  margin-bottom: 0;
}

.contract-strip {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(247, 242, 235, .72));
  box-shadow: 0 18px 48px rgba(7, 18, 38, .06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.contract-strip article {
  min-height: 128px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contract-strip article + article {
  border-left: 1px solid rgba(17, 24, 48, .09);
}

.contract-strip span {
  color: #917151;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contract-strip strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.12;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.contract-strip p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.standard-section {
  padding-top: 58px;
  padding-bottom: 68px;
}

.standard-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.standard-heading h2 {
  color: var(--navy);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.08;
  font-weight: 400;
}

.standard-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.standard-note {
  max-width: 980px;
  position: relative;
  border: 1px solid rgba(145, 113, 81, .42);
  background: #fff;
  border-radius: 20px;
  padding: 24px 30px 24px 78px;
  margin-bottom: 22px;
  box-shadow: 0 18px 45px rgba(7, 18, 38, .055);
}

.standard-note::before {
  content: "\201C";
  position: absolute;
  left: 26px;
  top: 18px;
  color: #917151;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: .8;
  opacity: .72;
}

.standard-note p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.5;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(7, 18, 38, .06);
}

.standard-grid article {
  min-height: 150px;
  padding: 22px;
}

.standard-grid article + article {
  border-left: 1px solid rgba(17, 24, 48, .08);
}

.standard-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #917151;
  margin-bottom: 18px;
}

.standard-grid h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 400;
}

.standard-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.footer-premium {
  display: grid;
  grid-template-columns: 1.25fr .85fr .9fr 1fr;
  gap: 28px;
  align-items: start;
  border-top: 1px solid rgba(17, 24, 48, .1);
}

.footer-premium p,
.footer-premium span {
  color: var(--muted);
  line-height: 1.5;
}

.footer-premium strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
}

.footer-premium div {
  display: grid;
  gap: 8px;
}

.footer-premium .logo {
  margin-bottom: 10px;
}

.process .section-heading {
  margin: 0 auto;
  text-align: center;
}

.steps {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.steps span {
  color: var(--brown);
  font-weight: 900;
}

.steps h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 400;
}

.steps p {
  color: var(--muted);
  line-height: 1.48;
}

.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  text-align: center;
  padding: 86px 0;
}

.final-cta .container {
  max-width: 900px;
}

.final-cta h2 {
  color: white;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 400;
}

.final-cta .btn {
  margin-top: 28px;
}

.recurring-page .header {
  background: rgba(255, 255, 255, .88);
}

.recurring-hero {
  width: min(100%, 1500px);
  margin: 24px auto 0;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 22px;
}

.recurring-hero-copy,
.recurring-hero-image {
  min-height: 650px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(7, 18, 38, .13);
}

.recurring-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 74px);
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .96), rgba(13, 27, 53, .92)),
    radial-gradient(circle at 78% 18%, rgba(211, 170, 114, .2), transparent 32%);
  color: white;
}

.recurring-hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 48px 48px auto;
  width: 170px;
  height: 1px;
  background: rgba(211, 170, 114, .7);
}

.recurring-hero-copy > * {
  position: relative;
  z-index: 1;
}

.recurring-hero-copy .eyebrow {
  color: var(--gold);
}

.recurring-hero-copy h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.03;
  font-weight: 400;
}

.recurring-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.58;
}

.recurring-hero-copy .hero-subtitle {
  margin: 20px 0 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.24;
}

.recurring-hero-copy .btn {
  width: fit-content;
  margin-top: 14px;
}

.recurring-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.recurring-badges span {
  border: 1px solid rgba(211, 170, 114, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .9);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
}

.recurring-hero-image {
  margin: 0;
  background: #fff;
}

.recurring-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recurring-problem {
  padding-top: 82px;
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 60px;
  align-items: start;
}

.recurring-problem h2 {
  max-width: 540px;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.08;
  font-weight: 400;
}

.recurring-problem p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.recurring-process,
.recurring-standards,
.recurring-audience,
.recurring-faq {
  padding-top: 76px;
}

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

.recurring-standard-grid {
  grid-template-columns: repeat(5, 1fr);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.audience-grid article {
  min-height: 112px;
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 32px rgba(7, 18, 38, .045);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1060px;
}

.faq-list details {
  border: 1px solid rgba(17, 24, 48, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 32px rgba(7, 18, 38, .045);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: #917151;
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.55;
}

.recurring-final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.5;
}

.footer {
  padding-top: 44px;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer div:last-child {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .btn-outline {
    justify-self: start;
  }

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

  .hero-media {
    min-height: 460px;
  }

  .solution-section {
    grid-template-columns: 1fr;
  }

  .solution-secondary .solution-image {
    order: 2;
  }

  .solution-secondary .solution-copy {
    order: 1;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .quote-box {
    position: static;
  }

  .kit-layout {
    grid-template-columns: 1fr;
  }

  .kit-summary {
    position: static;
  }

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

  .menu-card.featured-item {
    grid-column: span 2;
  }

  .home-hero,
  .service-hero,
  .recurring-hero,
  .recurring-problem {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .service-hero > div,
  .home-hero-visual,
  .service-hero > img,
  .recurring-hero-copy,
  .recurring-hero-image {
    min-height: 520px;
  }

  .home-proof,
  .detail-grid,
  .option-grid,
  .service-gallery,
  .trusted-logo-grid,
  .how-grid,
  .process-line,
  .info-card-grid,
  .info-card-grid.two,
  .info-premium-grid,
  .production-section,
  .why-layout,
  .metric-strip,
  .standard-grid,
  .footer-premium {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 900px) {
  .topbar,
  nav {
    display: none;
  }

  .container,
  .header,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    min-height: 92px;
  }

  .logo span {
    font-size: 42px;
    letter-spacing: -3px;
  }

  .header .logo span {
    font-size: 50px;
  }

  .header .logo small {
    font-size: 9px;
  }

  .logo small {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 50px;
  }

  .hero-copy {
    padding: 36px 26px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-checks {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof,
  .trust-strip,
  .client-grid,
  .metrics,
  .service-grid,
  .service-cards,
  .home-proof,
  .detail-grid,
  .option-grid,
  .service-gallery,
  .trusted-logo-grid,
  .how-grid,
  .process-line,
  .info-card-grid,
  .info-card-grid.two,
  .info-premium-grid,
  .production-section,
  .why-strena,
  .metric-strip,
  .footer-premium,
  .menu-items,
  .plan-grid,
  .steps,
  .testimonial-grid,
  .recurring-hero,
  .recurring-problem,
  .recurring-standard-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .recurring-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .recurring-hero-copy,
  .recurring-hero-image {
    min-height: auto;
    border-radius: 24px;
  }

  .recurring-hero-image {
    aspect-ratio: 1.08 / .76;
  }

  .recurring-problem,
  .recurring-process,
  .recurring-standards,
  .recurring-audience,
  .recurring-faq {
    padding-top: 58px;
  }

  .audience-grid article {
    min-height: auto;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .menu-card.featured-item {
    grid-column: span 1;
    display: flex;
  }

  .menu-card.featured-item img {
    height: 180px;
    min-height: 0;
  }

  .menu-card.featured-item > div {
    min-height: 0;
  }

  .hero-media {
    min-height: 360px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -96px 18px 18px;
  }

  .video-play-card {
    left: 18px;
    top: 18px;
    width: calc(100% - 36px);
  }

  .solution-section {
    margin-top: 52px;
  }

  .solution-copy {
    padding: 30px 24px;
  }

  .solution-copy h2 {
    font-size: 32px;
  }

  .solution-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .solution-image {
    min-height: 330px;
  }

  .services,
  .plans,
  .kit-builder,
  .process {
    padding-top: 70px;
  }

  .menu-builder {
    margin-top: 72px;
    padding: 64px 0;
  }

  .plan.featured {
    transform: none;
  }

  .kit-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kit-steps {
    grid-template-columns: 1fr;
  }

  .kit-card,
  .kit-summary {
    border-radius: 20px;
    padding: 22px;
  }

  .kit-people,
  .kit-card-title {
    grid-template-columns: 1fr;
  }

  .kit-icon {
    width: 42px;
    height: 42px;
  }

  .weekday-selector,
  .item-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .weekday-btn,
  .kit-item {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .daily-kit header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer {
    flex-direction: column;
  }

  .footer div:last-child {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero,
  .service-hero {
    padding: 20px;
    gap: 16px;
  }

  .home-hero-copy,
  .service-hero > div {
    min-height: auto;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .home-hero h1,
  .service-hero h1 {
    font-size: 38px;
  }

  .home-hero p:not(.eyebrow),
  .service-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .home-hero-visual,
  .service-hero > img {
    min-height: 330px;
    border-radius: 22px;
  }

  .home-hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    border-radius: 0 0 22px 22px;
  }

  .home-services,
  .trusted-companies,
  .how-section,
  .important-info,
  .production-section,
  .why-strena,
  .contract-info,
  .standard-section,
  .menu-options,
  .gallery-section,
  .service-menu {
    padding-top: 58px;
  }

  .trusted-logo-grid article {
    min-height: 96px;
    padding: 18px;
  }

  .how-grid article,
  .info-card-grid article {
    padding: 22px;
  }

  .process-line {
    border-radius: 22px;
  }

  .process-line::before {
    left: 44px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(145, 113, 81, .45), transparent);
  }

  .process-line article {
    min-height: auto;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px;
  }

  .process-line article + article {
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 48, .08);
  }

  .process-line span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .process-line strong {
    font-size: 19px;
  }

  .process-line p {
    font-size: 15px;
  }

  .info-premium-heading {
    text-align: left;
  }

  .info-premium-card {
    min-height: auto;
    border-radius: 22px;
    padding: 22px;
  }

  .contract-info {
    padding-top: 48px;
  }

  .contract-strip,
  .standard-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .contract-strip article {
    min-height: auto;
    padding: 18px 20px;
  }

  .contract-strip article + article,
  .standard-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 48, .08);
  }

  .standard-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .standard-heading {
    margin-bottom: 18px;
  }

  .standard-note {
    padding: 44px 18px 18px;
    margin-bottom: 16px;
  }

  .standard-note::before {
    left: 18px;
    top: 12px;
    font-size: 54px;
  }

  .standard-note p {
    font-size: 15px;
  }

  .standard-grid article {
    min-height: auto;
    padding: 18px 20px;
  }

  .standard-grid article::before {
    margin-bottom: 12px;
  }

  .production-section {
    padding-bottom: 58px;
  }

  .production-copy {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .production-section > img {
    min-height: 260px;
    border-radius: 22px;
  }

  .why-heading {
    text-align: left;
    margin-bottom: 22px;
  }

  .quality-highlight {
    padding: 22px;
    border-radius: 20px;
  }

  .quality-highlight p {
    text-align: left;
    font-size: 19px;
  }

  .metric-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metric-strip article {
    padding: 16px 12px;
  }

  .why-layout,
  .why-card-grid {
    grid-template-columns: 1fr;
  }

  .why-card-grid article:last-child {
    grid-column: auto;
  }

  .footer-premium {
    gap: 24px;
  }

  .service-card img,
  .option-grid img,
  .service-gallery img {
    height: 210px;
  }

  .service-card > div {
    padding: 22px;
  }

  .home-cta {
    padding: 64px 0;
  }

  .recurring-hero-copy {
    padding: 30px 22px;
  }

  .recurring-hero-copy h1 {
    font-size: 38px;
  }

  .recurring-hero-copy p {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .container,
  .header,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header .logo span,
  .logo span {
    font-size: 40px;
    letter-spacing: 0;
    line-height: .9;
  }

  .header .logo small,
  .logo small {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .header .btn {
    width: 100%;
    min-height: 48px;
  }

  .recurring-hero {
    margin-top: 12px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 14px;
  }

  .recurring-hero-copy {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .recurring-hero-copy::after {
    display: none;
  }

  .recurring-hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .recurring-hero-copy .hero-subtitle {
    font-size: 22px;
  }

  .recurring-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recurring-badges span {
    border-radius: 14px;
  }

  .recurring-hero-image {
    border-radius: 22px;
    aspect-ratio: 4 / 3;
  }

  .recurring-problem {
    gap: 18px;
  }

  .recurring-problem h2 {
    font-size: 30px;
  }

  .recurring-problem p {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 34px;
    gap: 16px;
  }

  .hero-copy {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .hero-copy::after {
    width: 240px;
    height: 240px;
    right: -120px;
    top: -100px;
  }

  .hero-copy h1 {
    font-size: 33px;
    line-height: 1.08;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    min-height: auto;
    border-radius: 22px;
  }

  .hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .quote-card {
    margin: 0;
    border-radius: 0 0 22px 22px;
  }

  .video-play-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 0;
    border-radius: 0;
  }

  .clients {
    padding-top: 42px;
  }

  .client-grid article,
  .metrics article,
  .trust-strip article {
    min-height: auto;
    padding: 20px;
  }

  .solution-section {
    margin-top: 36px;
    border-radius: 22px;
    overflow: hidden;
  }

  .solution-copy {
    padding: 26px 20px;
  }

  .solution-copy h2,
  .section-heading h2,
  .kit-heading h2,
  .final-cta h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .solution-image {
    min-height: 240px;
  }

  .menu-builder {
    margin-top: 48px;
    padding: 48px 0;
  }

  .menu-layout {
    gap: 18px;
  }

  .menu-intro,
  .menu-panel,
  .quote-box {
    padding: 22px;
    border-radius: 22px;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }

  .tab {
    width: 100%;
  }

  .menu-card,
  .menu-card.featured-item {
    display: block;
    min-height: auto;
  }

  .menu-card img,
  .menu-card.featured-item img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .menu-card > div,
  .menu-card.featured-item > div {
    min-height: auto;
    padding: 20px;
  }

  .quote-box {
    top: auto;
  }

  .kit-builder {
    padding-top: 52px;
  }

  .kit-layout,
  .kit-config {
    gap: 16px;
  }

  .kit-card,
  .kit-summary {
    padding: 20px;
  }

  .kit-people input {
    width: 100%;
  }

  .summary-metrics .summary-total dd {
    font-size: 26px;
  }

  .process {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .steps {
    gap: 22px;
  }

  .steps article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .7);
  }

  .final-cta {
    padding: 58px 0;
  }

  .faq-list summary {
    padding: 18px 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .audience-grid article {
    padding: 16px;
    font-size: 18px;
  }

  .footer {
    gap: 24px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
}

.recurring-page .recurring-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: center;
  gap: 28px;
  padding-top: 18px;
}

.recurring-page .recurring-hero-copy,
.recurring-page .recurring-hero-card {
  min-height: auto;
  border: 1px solid rgba(17, 24, 48, .09);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(7, 18, 38, .09);
}

.recurring-page .recurring-hero-copy {
  padding: clamp(42px, 6vw, 86px);
  color: var(--text);
}

.recurring-page .recurring-hero-copy::after {
  display: none;
}

.recurring-page .recurring-hero-copy .eyebrow {
  color: #917151;
}

.recurring-page .recurring-hero-copy h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(42px, 5.4vw, 82px);
}

.recurring-page .recurring-hero-copy p,
.recurring-page .recurring-hero-copy .hero-subtitle {
  max-width: 760px;
  color: var(--muted);
}

.recurring-page .recurring-hero-copy .hero-subtitle {
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.48;
}

.recurring-hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.recurring-hero-checks li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.recurring-hero-checks li::before {
  content: "\2713";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(145, 113, 81, .12);
  color: #917151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.recurring-page .recurring-hero-copy .btn {
  margin-top: 30px;
}

.recurring-hero-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.recurring-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #917151, rgba(211, 170, 114, .28));
}

.recurring-hero-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.recurring-hero-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.02;
  font-weight: 400;
}

.recurring-hero-card ul {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid rgba(17, 24, 48, .09);
  border-bottom: 1px solid rgba(17, 24, 48, .09);
  list-style: none;
}

.recurring-hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-weight: 800;
}

.recurring-hero-card li::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: #917151;
}

.recurring-hero-card .btn {
  width: 100%;
}

.recurring-page .recurring-process {
  padding-top: 34px;
}

.recurring-page .kit-builder {
  padding-top: 54px;
}

.coffee-page .coffee-process {
  padding-top: 34px;
}

.coffee-page .service-menu {
  margin-top: 0;
}

.coffee-page .menu-builder {
  padding-top: 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .45), rgba(247, 242, 235, .7));
}

.coffee-page .menu-intro,
.coffee-page .menu-panel,
.coffee-page .quote-box {
  box-shadow: 0 20px 55px rgba(7, 18, 38, .07);
}

.coffee-page .menu-intro h2 {
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
}

.coffee-page .menu-note {
  border-left: 3px solid #917151;
  background: white;
}

.coffee-page .quote-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 242, 235, .86));
}

.coffee-page .quote-box h3 {
  font-size: 34px;
}

.coffee-page .contract-info,
.coffee-page .recurring-standards,
.coffee-page .gallery-section {
  padding-top: 58px;
}

body.home-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 18, 38, .2), transparent 34%),
    linear-gradient(180deg, #917151 0%, #a88764 28%, #f7f2eb 78%, #f4f7fb 100%);
}

.home-page .topbar {
  background: #7d5f42;
  color: rgba(255, 255, 255, .9);
}

.home-page .header {
  background: rgba(145, 113, 81, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.home-page .logo span,
.home-page .logo small {
  color: var(--navy);
}

.home-page nav a {
  color: rgba(255, 255, 255, .82);
}

.home-page nav a:hover {
  color: white;
}

.home-page .header .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(255, 255, 255, .16);
}

.home-page .home-hero-copy {
  background:
    linear-gradient(135deg, rgba(145, 113, 81, .98), rgba(103, 75, 49, .96)),
    radial-gradient(circle at 78% 18%, rgba(7, 18, 38, .18), transparent 34%);
}

.home-page .home-hero-copy .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.home-page .home-hero-copy::after {
  background: rgba(7, 18, 38, .52);
}

.home-page .home-hero-visual {
  background: #917151;
}

.home-page .home-hero-badge {
  border-color: rgba(145, 113, 81, .18);
}

.home-page .btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 16px 32px rgba(7, 18, 38, .26);
}

.home-page .trusted-logo-grid article,
.home-page .service-card,
.home-page .contract-strip,
.home-page .standard-note,
.home-page .standard-grid {
  background: rgba(255, 255, 255, .9);
}

.home-page .process-line span,
.home-page .standard-grid article::before,
.home-page .contract-strip span,
.home-page .standard-note::before {
  color: var(--navy);
}

.home-page .standard-grid article::before {
  background: var(--navy);
}

.home-page .home-cta {
  background:
    linear-gradient(135deg, rgba(145, 113, 81, .97), rgba(103, 75, 49, .94)),
    radial-gradient(circle at 74% 22%, rgba(7, 18, 38, .22), transparent 34%);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 18, 38, .18), transparent 34%),
    linear-gradient(180deg, #917151 0%, #a88764 32%, #917151 100%);
}

.header {
  background: rgba(145, 113, 81, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.logo span,
.logo small {
  color: var(--navy);
}

nav a {
  color: rgba(255, 255, 255, .82);
}

nav a:hover {
  color: white;
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(255, 255, 255, .16);
}

.section-heading h2,
.contract-strip strong,
.standard-heading h2,
.kit-heading h2,
.menu-intro h2,
.recurring-problem h2,
.recurring-hero-card strong,
.faq-list summary,
.audience-grid article,
.service-card h3,
.process-line strong {
  color: var(--navy);
}

.trusted-logo-grid article,
.service-card,
.process-line,
.contract-strip,
.standard-note,
.standard-grid,
.info-card-grid article,
.info-premium-card,
.menu-intro,
.menu-panel,
.quote-box,
.kit-card,
.kit-summary,
.daily-kit,
.faq-list details,
.audience-grid article {
  background: rgba(145, 113, 81, .18);
  border-color: rgba(255, 255, 255, .24);
}

.home-page .trusted-logo-grid article,
.home-page .service-card,
.home-page .contract-strip,
.home-page .standard-note,
.home-page .standard-grid {
  background: rgba(145, 113, 81, .18);
}

.home-hero-copy,
.service-hero > div,
.home-cta,
.final-cta {
  background:
    linear-gradient(135deg, rgba(145, 113, 81, .98), rgba(103, 75, 49, .95)),
    radial-gradient(circle at 76% 20%, rgba(7, 18, 38, .18), transparent 34%);
}

.home-hero-visual,
.service-hero > img {
  background: #917151;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 16px 32px rgba(7, 18, 38, .26);
}

.contract-strip span,
.standard-note::before,
.standard-grid article::before,
.process-line span,
.kit-icon,
.kit-steps strong {
  color: var(--navy);
}

.standard-grid article::before {
  background: var(--navy);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(145, 113, 81, .24), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(211, 170, 114, .16), transparent 34%),
    linear-gradient(180deg, #071226 0%, #0d1b35 48%, #071226 100%);
}

.topbar,
.header {
  background: rgba(7, 18, 38, .92);
  border-bottom: 1px solid rgba(145, 113, 81, .34);
}

.logo span,
.logo small {
  color: #917151;
}

nav a {
  color: rgba(255, 255, 255, .74);
}

nav a:hover {
  color: #d3aa72;
}

.btn-outline {
  border-color: rgba(145, 113, 81, .72);
  color: #d3aa72;
  background: rgba(145, 113, 81, .08);
}

.btn-primary {
  background: linear-gradient(135deg, #917151, #d3aa72);
  color: white;
  box-shadow: 0 18px 38px rgba(145, 113, 81, .28);
}

.home-hero-copy,
.service-hero > div,
.home-cta,
.final-cta {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94)),
    radial-gradient(circle at 78% 16%, rgba(145, 113, 81, .24), transparent 34%);
}

.home-page .home-hero-copy {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94)),
    radial-gradient(circle at 78% 16%, rgba(145, 113, 81, .24), transparent 34%);
}

.home-hero-copy .eyebrow,
.service-hero .eyebrow,
.home-cta .eyebrow,
.final-cta .eyebrow {
  color: #d3aa72;
}

.home-hero-copy::after,
.service-hero > div::after {
  background: rgba(145, 113, 81, .72);
}

.home-hero-visual,
.service-hero > img {
  background: #071226;
}

.home-hero-badge,
.trusted-logo-grid article,
.service-card,
.process-line,
.contract-strip,
.standard-note,
.standard-grid,
.info-card-grid article,
.info-premium-card,
.menu-intro,
.menu-panel,
.quote-box,
.kit-card,
.daily-kit,
.faq-list details,
.audience-grid article {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(145, 113, 81, .24);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
}

.kit-summary {
  background:
    linear-gradient(145deg, #071226, #0d1b35);
  border-color: rgba(145, 113, 81, .28);
}

.section-heading h2,
.contract-strip strong,
.standard-heading h2,
.kit-heading h2,
.menu-intro h2,
.recurring-problem h2,
.recurring-hero-card strong,
.faq-list summary,
.audience-grid article,
.service-card h3,
.process-line strong,
.home-hero-badge strong {
  color: var(--navy);
}

.section-heading .eyebrow,
.contract-strip span,
.standard-heading .eyebrow,
.menu-intro .eyebrow,
.trusted-companies .eyebrow,
.home-services .eyebrow,
.process-line span {
  color: #917151;
}

.process-line span,
.kit-icon,
.kit-steps strong {
  background: rgba(145, 113, 81, .12);
  border-color: rgba(145, 113, 81, .22);
  color: #917151;
}

.standard-note {
  border-color: rgba(145, 113, 81, .42);
}

.standard-note::before {
  color: #917151;
}

.standard-grid article::before {
  background: #917151;
}

.contract-strip,
.standard-grid {
  overflow: hidden;
}

.home-page .topbar,
.home-page .header {
  background: rgba(7, 18, 38, .92);
}

.home-page .logo span,
.home-page .logo small {
  color: #917151;
}

.home-page nav a {
  color: rgba(255, 255, 255, .74);
}

.home-page nav a:hover {
  color: #d3aa72;
}

.home-page .header .btn-outline {
  border-color: rgba(145, 113, 81, .72);
  color: #d3aa72;
  background: rgba(145, 113, 81, .08);
}

.home-page .home-cta {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94)),
    radial-gradient(circle at 78% 16%, rgba(145, 113, 81, .24), transparent 34%);
}

body,
body.home-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(145, 113, 81, .16), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(211, 170, 114, .1), transparent 32%),
    linear-gradient(180deg, #071226 0%, #0d1b35 46%, #071226 100%);
}

.topbar,
.header,
.home-page .topbar,
.home-page .header {
  background: rgba(7, 18, 38, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.home-hero-copy,
.service-hero > div,
.home-page .home-hero-copy,
.home-cta,
.home-page .home-cta,
.final-cta {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .95)),
    radial-gradient(circle at 78% 16%, rgba(145, 113, 81, .18), transparent 34%);
}

.home-hero-visual,
.service-hero > img {
  background: #071226;
}

.home-page .service-card {
  background:
    linear-gradient(145deg, rgba(145, 113, 81, .98), rgba(116, 86, 57, .96));
  border-color: rgba(211, 170, 114, .38);
  box-shadow: 0 24px 60px rgba(7, 18, 38, .22);
}

.home-page .service-card span,
.home-page .service-card h3,
.home-page .service-card p {
  color: white;
}

.home-page .service-card span {
  color: rgba(255, 255, 255, .72);
}

.home-page .service-card .btn-primary {
  background: linear-gradient(135deg, #071226, #14284d);
  color: white;
  box-shadow: 0 16px 32px rgba(7, 18, 38, .28);
}

.home-page .service-card img {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.coffee-page .service-gallery {
  margin-top: 24px;
}

.coffee-page .service-gallery {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.coffee-page .menu-card,
.coffee-page .menu-card.featured-item {
  min-height: 230px;
  display: flex;
  grid-column: auto;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 242, 235, .9));
  border: 1px solid rgba(145, 113, 81, .2);
  padding: 0;
}

.coffee-page .menu-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #917151, rgba(211, 170, 114, .28));
}

.coffee-page .menu-card::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(7, 18, 38, .08);
  color: #071226;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.coffee-page .menu-card:has(button.is-selected)::after {
  content: "\2713";
  background: #071226;
  color: white;
}

.coffee-page .menu-card img,
.coffee-page .menu-card.featured-item img {
  display: none;
}

.coffee-page .menu-card > div,
.coffee-page .menu-card.featured-item > div {
  min-height: 230px;
  padding: 24px;
}

.coffee-page .menu-card .tag {
  background: rgba(145, 113, 81, .12);
  color: #917151;
}

.coffee-page .menu-card h3 {
  max-width: calc(100% - 38px);
  font-size: 24px;
}

.coffee-page .menu-card p {
  font-size: 15px;
}

.coffee-page .menu-card button {
  min-height: 46px;
  border-color: rgba(145, 113, 81, .48);
  color: #071226;
  background: white;
}

.coffee-page .menu-card button.is-selected {
  background: #071226;
  border-color: #071226;
  color: white;
}

@media (max-width: 1180px) {
  .recurring-page .recurring-hero {
    grid-template-columns: 1fr;
  }

  .recurring-page .recurring-hero-copy {
    min-height: auto;
  }

  .recurring-hero-card {
    padding: 28px;
  }

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

@media (max-width: 640px) {
  .recurring-page .recurring-hero {
    padding-top: 8px;
  }

  .recurring-page .recurring-hero-copy {
    padding: 30px 20px;
  }

  .recurring-page .recurring-hero-copy h1 {
    font-size: 34px;
  }

  .recurring-page .recurring-hero-copy .hero-subtitle {
    font-size: 17px;
  }

  .recurring-hero-checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .recurring-hero-card {
    padding: 26px 20px 20px;
    border-radius: 22px;
  }

  .recurring-hero-card strong {
    font-size: 34px;
  }

  .recurring-page .recurring-process,
  .recurring-page .kit-builder {
    padding-top: 42px;
  }

  .coffee-page .menu-items {
    grid-template-columns: 1fr;
  }

  .coffee-page .menu-card,
  .coffee-page .menu-card.featured-item,
  .coffee-page .menu-card > div,
  .coffee-page .menu-card.featured-item > div {
    min-height: auto;
  }

  .coffee-page .menu-card > div,
  .coffee-page .menu-card.featured-item > div {
    padding: 22px;
  }
}

/* Final STRENA palette: navy as the brand base, warm brown as premium detail. */
body,
body.home-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(145, 113, 81, .16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(13, 27, 53, .12), transparent 32%),
    linear-gradient(180deg, #f4f7fb 0%, #edf2f8 42%, #f7f2eb 100%);
  color: var(--text);
}

.topbar,
.home-page .topbar {
  background: #071226;
  color: rgba(255, 255, 255, .86);
}

.header,
.home-page .header {
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(17, 24, 48, .08);
  box-shadow: 0 14px 40px rgba(7, 18, 38, .055);
}

.logo span,
.logo small,
.home-page .logo span,
.home-page .logo small {
  color: #071226;
}

nav a,
.home-page nav a {
  color: rgba(7, 18, 38, .68);
}

nav a:hover,
.home-page nav a:hover {
  color: #917151;
}

.btn-primary,
.home-page .btn-primary {
  background: linear-gradient(135deg, #071226, #14284d);
  color: white;
  box-shadow: 0 18px 38px rgba(7, 18, 38, .24);
}

.btn-primary:hover,
.home-page .btn-primary:hover {
  background: linear-gradient(135deg, #0d1b35, #1d3764);
}

.btn-outline,
.home-page .header .btn-outline {
  border-color: rgba(145, 113, 81, .58);
  color: #071226;
  background: rgba(145, 113, 81, .08);
}

.home-hero-copy,
.service-hero > div,
.home-page .home-hero-copy,
.home-cta,
.home-page .home-cta,
.final-cta {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94)),
    radial-gradient(circle at 78% 16%, rgba(145, 113, 81, .24), transparent 34%);
}

.home-hero-copy::after,
.service-hero > div::after {
  background: rgba(145, 113, 81, .68);
}

.home-hero-copy .eyebrow,
.service-hero .eyebrow,
.home-cta .eyebrow,
.final-cta .eyebrow {
  color: #d3aa72;
}

.home-hero-visual,
.service-hero > img {
  background: #071226;
}

.home-hero-badge,
.trusted-logo-grid article,
.service-card,
.process-line,
.contract-strip,
.standard-note,
.standard-grid,
.info-card-grid article,
.info-premium-card,
.menu-intro,
.menu-panel,
.quote-box,
.kit-card,
.daily-kit,
.faq-list details,
.audience-grid article {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(17, 24, 48, .09);
  box-shadow: 0 20px 54px rgba(7, 18, 38, .08);
}

.home-page .service-card {
  background:
    linear-gradient(145deg, #071226, #0d1b35);
  border-color: rgba(145, 113, 81, .36);
  box-shadow: 0 24px 60px rgba(7, 18, 38, .18);
}

.home-page .service-card span {
  color: #d3aa72;
}

.home-page .service-card h3,
.home-page .service-card p {
  color: white;
}

.home-page .service-card .btn-primary {
  background: linear-gradient(135deg, #917151, #d3aa72);
  box-shadow: 0 18px 34px rgba(145, 113, 81, .25);
}

.section-heading .eyebrow,
.standard-heading .eyebrow,
.contract-strip span,
.menu-intro .eyebrow,
.trusted-companies .eyebrow,
.home-services .eyebrow,
.kit-heading .eyebrow,
.quote-box .eyebrow {
  color: #917151;
}

.process-line span,
.kit-icon,
.kit-steps strong {
  background: rgba(145, 113, 81, .1);
  border-color: rgba(145, 113, 81, .2);
  color: #917151;
}

.standard-note {
  border-color: rgba(145, 113, 81, .42);
}

.standard-note::before {
  color: #917151;
}

.standard-grid article::before {
  background: #917151;
}

.contract-strip strong,
.standard-heading h2,
.section-heading h2,
.kit-heading h2,
.menu-intro h2,
.service-card h3,
.process-line strong,
.faq-list summary,
.audience-grid article {
  color: #071226;
}

.kit-summary {
  background:
    linear-gradient(145deg, #071226, #0d1b35);
  border-color: rgba(145, 113, 81, .34);
  box-shadow: 0 24px 60px rgba(7, 18, 38, .18);
}

.summary-total {
  border-color: rgba(211, 170, 114, .34);
}

.footer-premium {
  background: rgba(255, 255, 255, .62);
}

.service-card,
.menu-card,
.trusted-logo-grid article,
.weekday-btn,
.kit-item,
.tab,
.faq-list summary {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.service-card:hover,
.menu-card:hover,
.trusted-logo-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(7, 18, 38, .14);
}

.service-card a.btn::before {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform .22s ease;
}

.service-card a.btn:hover::before {
  transform: translateX(3px);
}

.tab:hover,
.weekday-btn:hover,
.kit-item:hover {
  transform: translateY(-2px);
  border-color: rgba(145, 113, 81, .5);
  box-shadow: 0 12px 28px rgba(7, 18, 38, .09);
}

.tab.active,
.weekday-btn.active,
.kit-item.active {
  box-shadow: 0 14px 30px rgba(7, 18, 38, .16);
}

.faq-list summary:hover {
  color: #917151;
}

.whatsapp-float {
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 14px 34px rgba(7, 18, 38, .22);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(7, 18, 38, .3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .service-card,
  .menu-card,
  .trusted-logo-grid article,
  .weekday-btn,
  .kit-item,
  .tab,
  .faq-list summary,
  .whatsapp-float {
    transition: none;
    animation: none;
  }
}

.service-page .recurring-process .section-heading,
.service-page .kit-heading,
.service-page .recurring-standards .section-heading,
.service-page .recurring-audience .section-heading,
.service-page .recurring-faq .section-heading,
.service-page .gallery-section .section-heading {
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(17, 24, 48, .08);
  border-left: 4px solid #917151;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 18px 44px rgba(7, 18, 38, .06);
}

.service-page .recurring-process .section-heading h2,
.service-page .kit-heading h2,
.service-page .recurring-standards .section-heading h2,
.service-page .recurring-audience .section-heading h2,
.service-page .recurring-faq .section-heading h2,
.service-page .gallery-section .section-heading h2 {
  color: #071226;
}

.service-page .process-line {
  border-color: rgba(145, 113, 81, .2);
}

.service-page .process-line::before {
  background: linear-gradient(90deg, transparent, rgba(145, 113, 81, .54), transparent);
}

.service-page .contract-strip article,
.service-page .standard-grid article,
.service-page .audience-grid article,
.service-page .faq-list details,
.service-page .kit-card,
.service-page .daily-kit,
.service-page .menu-intro,
.service-page .menu-panel,
.service-page .quote-box {
  border-color: rgba(145, 113, 81, .16);
}

.service-page .kit-item.active,
.service-page .weekday-btn.active,
.service-page .tab.active {
  background: #071226;
  border-color: #071226;
  color: white;
}

.service-page .kit-item.active .kit-item-price,
.service-page .kit-summary .eyebrow {
  color: #d3aa72;
}

.service-page .menu-card .tag,
.service-page .menu-note strong,
.service-page .quote-box label,
.service-page .summary-total dd {
  color: #917151;
}

.service-page .service-gallery img {
  border: 1px solid rgba(145, 113, 81, .2);
  box-shadow: 0 18px 44px rgba(7, 18, 38, .08);
}

.coffee-page .menu-builder {
  background:
    radial-gradient(circle at 10% 0%, rgba(145, 113, 81, .1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(247, 242, 235, .6));
}


.recurring-final-cta,
.coffee-page .home-cta {
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94)),
    radial-gradient(circle at 78% 16%, rgba(145, 113, 81, .24), transparent 34%);
}

@media (max-width: 640px) {
  .service-page .recurring-process .section-heading,
  .service-page .kit-heading,
  .service-page .recurring-standards .section-heading,
  .service-page .recurring-audience .section-heading,
  .service-page .recurring-faq .section-heading,
  .service-page .gallery-section .section-heading {
    padding: 18px;
    border-radius: 18px;
  }
}

/* Compact mobile pass: keep the desktop rhythm without forcing every block into one long column. */
@media (max-width: 760px) {
  .container,
  .header,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header .btn {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .header .logo span,
  .logo span {
    font-size: 36px;
  }

  .header .logo small,
  .logo small {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .home-hero,
  .service-hero {
    padding: 14px;
    gap: 12px;
  }

  .home-hero-copy,
  .service-hero > div {
    padding: 24px 18px;
  }

  .home-hero h1,
  .service-hero h1 {
    font-size: 31px;
  }

  .home-hero p:not(.eyebrow),
  .service-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-service-pills {
    gap: 8px;
  }

  .home-service-pills span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .home-hero-visual,
  .service-hero > img {
    min-height: 220px;
  }

  .home-page .home-hero-visual {
    display: none;
  }

  .section-heading h2,
  .kit-heading h2,
  .menu-intro h2,
  .final-cta h2,
  .home-cta h2 {
    font-size: 27px;
    line-height: 1.12;
  }

  .service-cards,
  .trusted-logo-grid,
  .audience-grid,
  .service-gallery,
  .footer-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-logo-grid article {
    min-height: 78px;
    padding: 12px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-card > div {
    padding: 16px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .service-card .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

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

  .process-line::before {
    display: none;
  }

  .process-line article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 14px;
    border-top: 0;
    border-left: 0;
  }

  .process-line article + article {
    border-top: 0;
    border-left: 1px solid rgba(17, 24, 48, .08);
  }

  .process-line article:nth-child(odd) {
    border-left: 0;
  }

  .process-line article:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 24, 48, .08);
  }

  .process-line span {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .process-line strong {
    font-size: 16px;
  }

  .process-line p {
    font-size: 13px;
    line-height: 1.35;
  }

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

  .contract-strip article {
    padding: 14px 12px;
  }

  .contract-strip article + article {
    border-top: 0;
    border-left: 1px solid rgba(17, 24, 48, .08);
  }

  .contract-strip span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .contract-strip strong {
    font-size: 16px;
  }

  .contract-strip p {
    font-size: 12px;
  }

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

  .standard-grid article {
    padding: 16px;
  }

  .standard-grid h3 {
    font-size: 18px;
  }

  .standard-grid p {
    font-size: 13px;
  }

  .kit-steps,
  .weekday-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kit-steps span {
    min-height: 44px;
    padding: 8px;
    font-size: 12px;
  }

  .weekday-btn {
    min-height: 44px;
    font-size: 13px;
  }

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

  .kit-item {
    min-height: 62px;
    padding: 10px;
  }

  .kit-item-name {
    font-size: 13px;
    line-height: 1.25;
  }

  .kit-item-price {
    font-size: 12px;
  }

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

  .summary-metrics .summary-total {
    grid-column: span 2;
  }

  .coffee-page .menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coffee-page .menu-card > div,
  .coffee-page .menu-card.featured-item > div {
    min-height: 190px;
    padding: 16px;
  }

  .coffee-page .menu-card h3 {
    font-size: 18px;
  }

  .coffee-page .menu-card p {
    font-size: 12px;
  }

  .coffee-page .menu-card button {
    min-height: 40px;
    font-size: 12px;
  }

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

  .tab {
    width: 100%;
    padding: 0 8px;
    font-size: 12px;
  }

  .footer-premium {
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .footer-premium p,
  .footer-premium span,
  .footer-premium a {
    font-size: 12px;
  }

  .whatsapp-float {
    min-height: 44px;
    padding: 0 14px;
  }
}

@media (max-width: 430px) {
  .service-card h3,
  .coffee-page .menu-card h3,
  .standard-grid h3 {
    font-size: 16px;
  }

  .service-card p,
  .coffee-page .menu-card p,
  .standard-grid p,
  .contract-strip p {
    font-size: 11px;
  }

  .contract-strip strong {
    font-size: 14px;
  }

  .service-gallery {
    gap: 10px;
  }

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

.mobile-hero-actions {
  display: none;
}

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

.home-hero-actions .btn {
  min-height: 54px;
}

.btn-outline-light {
  border: 1px solid rgba(211, 170, 114, .48);
  background: rgba(255, 255, 255, .08);
  color: #fffaf3;
}

.btn-outline-light:hover {
  border-color: rgba(211, 170, 114, .88);
  background: rgba(255, 255, 255, .13);
}

@media (min-width: 901px) {
  .footer.footer-premium {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 240px 245px 300px;
    justify-content: initial;
    align-items: start;
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .footer.footer-premium > div,
  .footer.footer-premium > div:last-child {
    display: grid;
    align-items: start;
    gap: 8px;
    min-width: 0;
  }

  .footer.footer-premium > div:first-child {
    max-width: 360px;
  }

  .footer.footer-premium strong {
    margin-bottom: 8px;
    min-height: 20px;
  }

  .footer.footer-premium a,
  .footer.footer-premium span,
  .footer.footer-premium p {
    max-width: 100%;
    margin: 0;
    text-align: left;
    line-height: 1.45;
  }

  .footer.footer-premium a[href*="wa.me"],
  .footer.footer-premium a[href^="mailto:"],
  .footer.footer-premium a[href*="instagram.com"],
  .footer.footer-premium > div:last-child span:last-child {
    display: block;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .footer.footer-premium > div:last-child span:first-of-type {
    max-width: 260px;
  }

  .footer.footer-premium .logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .footer.footer-premium {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
  }

  .footer.footer-premium > div:first-child {
    max-width: none;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .home-page .header {
    min-height: 96px;
    background: #fffaf3;
    border-bottom: 1px solid rgba(7, 18, 38, .08);
    box-shadow: 0 12px 34px rgba(7, 18, 38, .06);
  }

  .home-page .header .logo span,
  .home-page .header .logo small {
    color: #071226;
  }

  .home-page .header .logo span {
    font-size: 48px;
  }

  .home-page .header .logo small {
    font-size: 9px;
    line-height: 1.1;
  }

  .home-page .header .btn {
    min-height: 42px;
    border-color: rgba(145, 113, 81, .28);
    background: #071226;
    color: #fffaf3;
  }

  .home-page .home-hero {
    width: calc(100vw + 3px);
    max-width: none;
    margin-left: calc(50% - 50vw - 2px);
    margin-right: calc(50% - 50vw);
    padding: 0;
    display: block;
    overflow: hidden;
  }

  .home-page .home-hero-copy {
    width: 100%;
    min-height: 690px;
    border-radius: 0;
    padding: 56px 26px 34px;
    justify-content: flex-start;
    background:
      linear-gradient(90deg, rgba(7, 18, 38, .98) 0%, rgba(7, 18, 38, .94) 42%, rgba(7, 18, 38, .54) 72%, rgba(7, 18, 38, .18) 100%),
      linear-gradient(180deg, rgba(7, 18, 38, .08), rgba(7, 18, 38, .48)),
      url("assets/cafe-corporativo-recorrente.png") right bottom / cover no-repeat;
    box-shadow: none;
  }

  .home-page .home-hero-copy::after {
    display: none;
  }

  .home-page .home-hero-copy .eyebrow {
    max-width: 280px;
    color: #c99b63;
    font-size: 13px;
    letter-spacing: 1.7px;
  }

  .home-page .home-hero h1 {
    max-width: 335px;
    margin-top: 22px;
    font-size: 42px;
    line-height: 1.08;
    color: #fffaf3;
  }

  .home-page .home-hero p:not(.eyebrow) {
    max-width: 300px;
    margin-top: 18px;
    color: rgba(255, 250, 243, .88);
    font-size: 17px;
    line-height: 1.55;
  }

  .mobile-hero-actions {
    display: grid;
    gap: 12px;
    width: min(100%, 330px);
    margin-top: 28px;
  }

  .mobile-hero-actions a {
    min-height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-hero-primary {
    background: linear-gradient(135deg, #d7ad74, #917151);
    color: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
  }

  .mobile-hero-secondary {
    border: 1px solid rgba(211, 170, 114, .85);
    color: #fffaf3;
    background: rgba(7, 18, 38, .36);
  }

  .home-page .home-service-pills {
    width: min(100%, 360px);
    margin-top: auto;
    padding-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .home-service-pills span {
    min-height: 68px;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    border-color: rgba(211, 170, 114, .34);
    background: rgba(7, 18, 38, .46);
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.2;
  }

  .home-page .home-hero-visual {
    display: none;
  }

  .home-page .trusted-companies {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .home-page .trusted-companies .section-heading {
    margin-bottom: 14px;
  }

  .home-page .trusted-companies .section-heading .eyebrow,
  .home-page .trusted-companies .section-heading p {
    display: none;
  }

  .home-page .trusted-companies .section-heading h2 {
    color: #917151;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .home-page .trusted-logo-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 10px;
    scroll-snap-type: x proximity;
  }

  .home-page .trusted-logo-grid article {
    flex: 0 0 108px;
    min-height: 54px;
    padding: 4px;
    border: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: center;
  }

  .home-page .trusted-logo-grid article:hover {
    transform: none;
    box-shadow: none;
  }

  .home-page .trusted-logo-grid img {
    max-width: 104px;
    max-height: 48px;
    filter: none;
    opacity: .96;
  }
}

/* Coffee break: simplified quote-first experience. */
.coffee-page {
  background:
    linear-gradient(180deg, rgba(7, 18, 38, .035), rgba(255, 250, 243, .94) 340px),
    #fffaf3;
}

.coffee-page .header {
  border-bottom-color: rgba(145, 113, 81, .28);
}

.coffee-quick-hero {
  margin-top: 26px;
  padding-top: 42px;
  padding-bottom: 26px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .95)),
    radial-gradient(circle at 86% 16%, rgba(145, 113, 81, .24), transparent 34%);
  color: #fffaf3;
  box-shadow: 0 28px 74px rgba(7, 18, 38, .14);
  position: relative;
  overflow: hidden;
}

.coffee-quick-hero::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -82px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(145, 113, 81, .44);
}

.coffee-quick-hero > * {
  position: relative;
  z-index: 1;
}

.coffee-quick-hero .eyebrow {
  color: #d3aa72;
}

.coffee-quick-hero h1 {
  max-width: 880px;
  margin-top: 12px;
  color: #fffaf3;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 400;
}

.coffee-quick-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 250, 243, .78);
  font-size: 18px;
  line-height: 1.5;
}

.coffee-hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.coffee-hero-seals span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(211, 170, 114, .36);
  border-radius: 999px;
  padding: 0 14px;
  color: #fffaf3;
  background: rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 900;
}

.coffee-page .service-menu {
  margin-top: 0;
}

.coffee-page .menu-builder {
  padding-top: 30px;
  padding-bottom: 58px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, .76), rgba(247, 242, 235, .9));
}

.coffee-page .menu-layout {
  grid-template-columns: minmax(230px, .62fr) minmax(0, 1.35fr) minmax(260px, .72fr);
  gap: 18px;
}

.coffee-page .menu-intro,
.coffee-page .menu-panel,
.coffee-page .quote-box {
  border-radius: 18px;
  border: 1px solid rgba(145, 113, 81, .16);
}

.coffee-page .menu-intro {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94));
  color: #fffaf3;
}

.coffee-page .menu-intro h2 {
  font-size: clamp(30px, 2.7vw, 44px);
  color: #fffaf3;
}

.coffee-page .menu-intro > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 250, 243, .76);
}

.coffee-page .menu-note {
  margin-top: 18px;
  padding: 16px;
  border-color: rgba(211, 170, 114, .34);
  background: rgba(255, 255, 255, .08);
}

.coffee-page .menu-note span {
  color: rgba(255, 250, 243, .72);
}

.coffee-page .menu-panel {
  padding: 16px;
  background: rgba(255, 255, 255, .96);
}

.coffee-page .tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 12px;
}

.coffee-page .tab {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  font-size: 12px;
  border-color: rgba(145, 113, 81, .2);
  color: #071226;
}

.coffee-page .tab.active {
  background: #071226;
  border-color: #071226;
  color: #fffaf3;
}

.coffee-page .menu-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coffee-page .menu-card,
.coffee-page .menu-card.featured-item {
  min-height: 170px;
  border-radius: 16px;
  border-color: rgba(145, 113, 81, .18);
  background:
    linear-gradient(180deg, #ffffff, #fffaf3);
}

.coffee-page .menu-card > div,
.coffee-page .menu-card.featured-item > div {
  min-height: 170px;
  padding: 18px;
}

.coffee-page .menu-card h3 {
  margin-top: 10px;
  font-size: 20px;
}

.coffee-page .menu-card p {
  margin: 8px 0 12px;
  font-size: 13px;
}

.coffee-page .menu-card button {
  min-height: 42px;
  border-color: rgba(145, 113, 81, .48);
}

.coffee-page .menu-card button:hover {
  background: rgba(145, 113, 81, .08);
}

.coffee-page .quote-box {
  padding: 22px;
  border: 1px solid rgba(145, 113, 81, .2);
  background:
    linear-gradient(180deg, #ffffff, #fffaf3);
}

.coffee-page .quote-box h3 {
  font-size: 28px;
}

.coffee-page #selected-list {
  min-height: 74px;
  max-height: 220px;
  overflow: auto;
  margin: 14px 0;
  padding-left: 18px;
}

.coffee-page .quote-box .btn {
  min-height: 54px;
  font-size: 14px;
  background: #071226;
  color: #fffaf3;
  border-color: #071226;
}

.coffee-page .coffee-process {
  padding-top: 48px;
}

.coffee-page .contract-info,
.coffee-page .recurring-standards,
.coffee-page .gallery-section {
  padding-top: 44px;
}

@media (max-width: 1180px) {
  .coffee-page .menu-layout {
    grid-template-columns: minmax(0, 1fr) minmax(270px, .8fr);
  }

  .coffee-page .menu-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .coffee-quick-hero {
    margin-top: 14px;
    padding-top: 28px;
    padding-bottom: 22px;
    border-radius: 18px;
  }

  .coffee-quick-hero h1 {
    font-size: 32px;
  }

  .coffee-quick-hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .coffee-hero-seals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .coffee-hero-seals span {
    min-height: 44px;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    padding: 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  .coffee-page .menu-builder {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .coffee-page .menu-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coffee-page .menu-intro,
  .coffee-page .menu-panel,
  .coffee-page .quote-box {
    padding: 16px;
    border-radius: 16px;
  }

  .coffee-page .menu-intro h2 {
    font-size: 28px;
  }

  .coffee-page .menu-intro > p:not(.eyebrow) {
    font-size: 14px;
  }

  .coffee-page .tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .coffee-page .tab {
    min-height: 42px;
    font-size: 11px;
  }

  .coffee-page .menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .coffee-page .menu-card,
  .coffee-page .menu-card.featured-item {
    min-height: 150px;
  }

  .coffee-page .menu-card > div,
  .coffee-page .menu-card.featured-item > div {
    min-height: 150px;
    padding: 14px;
  }

  .coffee-page .menu-card::after {
    right: 10px;
    top: 10px;
  }

  .coffee-page .menu-card h3 {
    font-size: 16px;
  }

  .coffee-page .menu-card p {
    display: none;
  }

  .coffee-page .menu-card button {
    min-height: 38px;
    font-size: 12px;
  }

  .coffee-page .quote-box {
    position: static;
    order: 3;
  }

  .coffee-page .quote-box h3 {
    font-size: 24px;
  }

  .coffee-page #selected-list {
    min-height: 44px;
    max-height: 130px;
    margin: 10px 0;
    font-size: 13px;
  }
}

/* Home: shorter, clearer conversion flow. */
.home-page .home-services {
  padding-top: 66px;
  padding-bottom: 58px;
}

.home-page .trusted-companies {
  padding-top: 56px;
}

.home-page .how-section,
.home-page .contract-info {
  padding-top: 54px;
}

.home-page .home-cta {
  margin-top: 58px;
}

.home-page .home-service-pills {
  max-width: 510px;
}

.home-page .home-service-pills span {
  min-width: 150px;
  justify-content: center;
}

.home-page .home-hero-actions .btn-primary {
  background: linear-gradient(135deg, #d7ad74, #917151);
  color: #fff;
  border-color: transparent;
}

.home-page .service-card p {
  max-width: 520px;
}

@media (max-width: 760px) {
  .home-hero-actions {
    display: none;
  }

  .home-page .home-service-pills {
    width: min(100%, 320px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .home-service-pills span {
    min-width: 0;
    min-height: 58px;
  }

  .home-page .trusted-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .home-page .trusted-logo-grid article {
    flex: none;
    min-height: 46px;
    padding: 2px;
  }

  .home-page .trusted-logo-grid img {
    max-width: 60px;
    max-height: 34px;
  }

  .home-page .trusted-logo-grid .round-logo {
    width: 36px;
    height: 36px;
  }

  .home-page .home-services,
  .home-page .trusted-companies,
  .home-page .how-section,
  .home-page .contract-info {
    padding-top: 36px;
    padding-bottom: 0;
  }
}

/* Recurring breakfast: STRENA brand identity pass. */
.recurring-page {
  background:
    linear-gradient(180deg, rgba(7, 18, 38, .035), rgba(255, 250, 243, .94) 340px),
    #fffaf3;
}

.recurring-page .header {
  border-bottom-color: rgba(145, 113, 81, .28);
}

.recurring-quick-hero {
  margin-top: 26px;
  padding-top: 30px;
  padding-bottom: 24px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .95)),
    radial-gradient(circle at 86% 16%, rgba(145, 113, 81, .24), transparent 34%);
  color: #fffaf3;
  box-shadow: 0 28px 74px rgba(7, 18, 38, .14);
  position: relative;
  overflow: hidden;
}

.recurring-quick-hero::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -82px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(145, 113, 81, .44);
}

.recurring-quick-hero > * {
  position: relative;
  z-index: 1;
}

.recurring-quick-hero .eyebrow {
  color: #d3aa72;
}

.recurring-quick-hero h1 {
  max-width: 880px;
  margin-top: 10px;
  color: #fffaf3;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.04;
  font-weight: 400;
}

.recurring-quick-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(255, 250, 243, .78);
  font-size: 18px;
  line-height: 1.5;
}

.recurring-hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.recurring-hero-seals span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(211, 170, 114, .36);
  border-radius: 999px;
  padding: 0 14px;
  color: #fffaf3;
  background: rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 900;
}

.recurring-page .recurring-process {
  padding-top: 48px;
}

.recurring-page .recurring-process .process-line {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recurring-page .process-line article,
.recurring-page .kit-card,
.recurring-page .daily-kit,
.recurring-page .faq-list details,
.recurring-page .audience-grid article,
.recurring-page .standard-grid article,
.recurring-page .trusted-logo-grid article {
  border-color: rgba(145, 113, 81, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 243, .94));
}

.recurring-page .process-line span,
.recurring-page .kit-icon {
  background: #071226;
  color: #d3aa72;
  border-color: rgba(145, 113, 81, .28);
}

.recurring-page .kit-builder {
  padding-top: 34px;
}

.recurring-page .kit-heading {
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(7, 18, 38, .98), rgba(13, 27, 53, .94));
  color: #fffaf3;
  box-shadow: 0 22px 58px rgba(7, 18, 38, .12);
}

.recurring-page .kit-minimum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  grid-column: 2;
  min-height: 38px;
  border: 1px solid rgba(211, 170, 114, .38);
  border-radius: 999px;
  padding: 0 14px;
  color: #fffaf3;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.recurring-page .kit-heading h2 {
  color: #fffaf3;
}

.recurring-page .kit-heading p,
.recurring-page .kit-heading .eyebrow {
  color: rgba(255, 250, 243, .78);
}

.recurring-page .kit-heading .eyebrow {
  color: #d3aa72;
}

.recurring-page .kit-steps span {
  border-color: rgba(145, 113, 81, .2);
  background: rgba(255, 255, 255, .94);
}

.recurring-page .kit-card {
  padding: 24px;
}

.recurring-page .kit-card h3,
.recurring-page .kit-summary h3 {
  font-size: 25px;
}

.recurring-page .kit-card p {
  font-size: 14px;
}

.recurring-page .weekday-btn,
.recurring-page .kit-item {
  border-color: rgba(145, 113, 81, .22);
  background: rgba(255, 255, 255, .96);
}

.recurring-page .weekday-btn.active,
.recurring-page .kit-item.active {
  background: #071226;
  border-color: #071226;
  color: #fffaf3;
}

.recurring-page .kit-item.active .kit-item-price {
  color: #d3aa72;
}

.recurring-page .daily-kit span {
  background: rgba(145, 113, 81, .12);
  color: #917151;
}

.recurring-page .kit-summary {
  border-color: rgba(145, 113, 81, .34);
  background:
    linear-gradient(145deg, #071226, #0d1b35);
  box-shadow: 0 28px 74px rgba(7, 18, 38, .16);
}

.recurring-page .summary-action {
  margin: 14px 0 12px;
  color: #fffaf3;
  font-weight: 900;
  line-height: 1.35;
}

.recurring-page .kit-summary .btn,
.recurring-page .recurring-final-cta .btn {
  background: linear-gradient(135deg, #d7ad74, #917151);
  color: #fff;
  border-color: transparent;
}

.recurring-page .recurring-standards,
.recurring-page .recurring-faq {
  padding-top: 42px;
}

@media (max-width: 760px) {
  .recurring-quick-hero {
    margin-top: 14px;
    padding-top: 22px;
    padding-bottom: 18px;
    border-radius: 18px;
  }

  .recurring-quick-hero h1 {
    font-size: 29px;
  }

  .recurring-quick-hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .recurring-hero-seals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .recurring-hero-seals span {
    min-height: 44px;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    padding: 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  .recurring-page .recurring-process,
  .recurring-page .kit-builder {
    padding-top: 24px;
  }

  .recurring-page .kit-heading {
    padding: 18px;
    gap: 12px;
  }

  .recurring-page .kit-minimum {
    width: 100%;
    border-radius: 14px;
    grid-column: 1;
    justify-self: stretch;
  }

  .recurring-page .recurring-process .process-line {
    grid-template-columns: 1fr;
  }
}
