:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 252, 246, 0.92);
  --surface-strong: #fffdfa;
  --ink: #3b2b2d;
  --muted: #ce5d29;
  --brand: #3b2b2d;
  --brand-soft: #3b2b2d;
  --accent: #be7b54;
  --accent-deep: #ce5d29;
  --line: rgba(25, 38, 31, 0.09);
  --shadow-lg: 0 26px 70px rgba(17, 34, 26, 0.12);
  --shadow-md: 0 16px 36px rgba(17, 34, 26, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}
 
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(190, 123, 84, 0.17), transparent 32%),
    radial-gradient(circle at top right, rgba(35, 72, 56, 0.12), transparent 25%),
    linear-gradient(180deg, #faf6ef 0%, #f4eee4 40%, #f8f4ed 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

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

.section {
  padding: 84px 0;
}

.section-alt {
  background: rgba(255, 250, 242, 0.76);
}

.section-dark {
  color: #f6f2eb;
  background: #3b2b2d;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.hero-copy h1,
.goal-copy h2,
.contact-copy h2,
.page-intro h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.0rem);
}

.section-head p:last-child,
.hero-text,
.goal-copy p,
.contact-copy p,
.page-intro p {
  color: var(--muted);
  line-height: 1.76;
  font-size: 1.03rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

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

.btn-primary {
  background: #ce5d29;
  color: #fff8f3;
  box-shadow: 0 16px 32px rgba(157, 97, 63, 0.24);
}

.btn-secondary {
  background: rgba(255, 252, 246, 0.76);
  border-color: rgba(25, 38, 31, 0.11);
  color: var(--ink);
}

.btn.wide {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.btn-icon svg,
.smart-icon svg {
  width: 100%;
  height: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(25, 38, 31, 0.05);
  background: rgba(249, 245, 238, 0.84);
  backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #fff4e8;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(21, 54, 41, 0.2);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 800;
  color: #3b2b2d;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.nav-icon svg {
  width: 100%;
  height: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(17, 34, 26, 0.06);
}

.cart-icon svg {
  width: 18px;
  height: 18px;
}

.cart-badge {
  min-width: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--brand);
  color: #fdf7f0;
  font-size: 0.78rem;
  text-align: center;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(25, 38, 31, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 2px 2px;
    border-radius: 999px;
    background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 100%);
  height: 100vh;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: -24px 0 54px rgba(17, 34, 26, 0.16);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 35;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(25, 38, 31, 0.08);
  font-weight: 800;
}

.mobile-nav-head button {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(25, 38, 31, 0.06);
  font-size: 1.03rem;
  font-weight: 700;
}

.hero-section {
  padding: 56px 0 68px;
}

.hero-grid,
.timing-layout,
.goal-layout,
.contact-layout,
.cart-layout,
.footer-grid {
  display: grid;
  gap: 30px;
}

.hero-reference-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.85rem, 6vw, 5.2rem);
  max-width: 9.4ch;
}

.hero-text {
  max-width: 620px;
}

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

.hero-stats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats article,
.pricing-highlights article,
.contact-info-grid article,
.timing-grid article,
.plan-package-card,
.service-card,
.product-card,
.cart-card,
.summary-card,
.contact-card,
.timing-panel,
.smart-points article {
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.hero-stats article {
  padding: 20px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.58rem;
  font-family: "Fraunces", Georgia, serif;
}

.hero-stats span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero-reference-visual {
  position: relative;
}

.hero-stack-reference {
  position: relative;
  padding: 14px 12px 48px 46px;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo-main img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: var(--shadow-lg);
}

.plan-note {
  top: 34px;
  right: 0;
  width: 248px;
}

.delivery-note {
  left: 0;
  bottom: 0;
  width: 274px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 54, 41, 0.08);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.floating-card p,
.delivery-note span {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.92rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: #5c855a;
  box-shadow: 0 0 0 8px rgba(92, 133, 90, 0.12);
}

.trust-band {
  padding: 22px 0;
  background: #3b2b2d;
  color: #f9f2e6;
}

.trust-band-row,
.service-grid,
.timing-grid,
.plan-package-grid,
.pricing-highlights,
.products-grid,
.contact-info-grid {
  display: grid;
  gap: 18px;
}

.trust-band-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  font-weight: 700;
}

.trust-band-row span {
  padding-left: 18px;
  border-left: 1px solid rgba(249, 242, 230, 0.2);
}

.trust-band-row span:first-child {
  padding-left: 0;
  border-left: none;
}

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

.icon-badge,
.smart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--brand);
  background: rgba(21, 54, 41, 0.08);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.service-card,
.plan-package-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}

.service-card h3,
.plan-package-card h3,
.timing-panel h3,
.product-card h3,
.summary-card h3 {
  margin: 0 0 10px;
}

.service-card p,
.plan-package-card p,
.timing-panel p,
.smart-points p,
.pricing-highlights span,
.contact-info-grid span,
.contact-info-grid a,
.product-copy p,
.summary-row span,
.empty-state p {
  color: var(--muted);
  line-height: 1.74;
}

.timing-layout {
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  margin-top: 28px;
  align-items: start;
}

.timing-panel {
  padding: 30px;
  border-radius: 30px;
}

.timing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.timing-grid article {
  padding: 22px;
  border-radius: 20px;
}

.timing-grid strong,
.pricing-highlights strong,
.contact-info-grid strong {
  display: block;
  margin-bottom: 8px;
}

.smart-panel {
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 233, 0.96));
}

.smart-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.smart-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
}

.smart-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--brand);
  background: rgba(21, 54, 41, 0.08);
}

.smart-points strong {
  display: block;
  margin-bottom: 6px;
}

.plan-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.plan-package-card.featured {
    background: linear-gradient(135deg, #ce5d29, #3D2C2E);
    color: #f8f1e6;
}

.plan-package-card.featured p,
.dark-card label,
.dark-card .contact-card,
.dark-card input,
.dark-card select,
.dark-card textarea {
  color: rgba(248, 241, 230, 0.86);
}

.pricing-shell {
  display: grid;
  gap: 22px;
  margin-bottom: 26px;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pricing-tab {
  padding: 14px 18px;
  border: 1px solid rgba(25, 38, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.78);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pricing-tab:hover,
.pricing-tab.is-active {
  transform: translateY(-1px);
  border-color: var(--brand);
  background: var(--brand);
  color: #f8f1e6;
}

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

.pricing-highlights article {
  padding: 24px;
  border-radius: 22px;
}

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

.delivery-showcase-section {
  background:
    radial-gradient(circle at top left, rgba(190, 123, 84, 0.09), transparent 24%),
    radial-gradient(circle at top right, rgba(21, 54, 41, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f2ea 0%, #f1eadf 100%);
}

.delivery-showcase-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.delivery-showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: var(--accent);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 14px 28px rgba(21, 54, 41, 0.08);
}

.delivery-showcase-icon svg {
  width: 34px;
  height: 34px;
}

.delivery-showcase-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--brand);
}

.delivery-showcase-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.delivery-slot-card {
  padding: 26px 26px 30px;
  border-radius: 34px;
  text-align: center;
  background: rgba(255, 253, 249, 0.66);
  border: 1px solid rgba(21, 54, 41, 0.08);
  box-shadow: 0 20px 50px rgba(21, 54, 41, 0.08);
  backdrop-filter: blur(8px);
}

.featured-slot {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(245, 237, 227, 0.8));
}

.delivery-slot-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ce5d29;
  color: #f8f1e6;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(21, 54, 41, 0.2);
}

.delivery-slot-card h3 {
  margin: 28px 0 10px;
  color: var(--brand);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 1.5rem);
  line-height: 1.15;
}

.delivery-slot-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

.delivery-slot-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.delivery-slot-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(21, 54, 41, 0.1);
  color: var(--ink);
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(21, 54, 41, 0.06);
}

.delivery-slot-tags svg {
  width: 18px;
  height: 18px;
  color: var(--accent-deep);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
}

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

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 54, 41, 0.08);
  color: var(--brand);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price {
  font-size: 2.15rem;
  font-family: "Fraunces", Georgia, serif;
  color: var(--brand);
  line-height: 1;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.product-per-meal {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(25, 38, 31, 0.05);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.66;
}

.product-highlights li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
}

.goal-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
}

.goal-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

.included-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(246, 242, 235, 0.86);
  line-height: 1.72;
}

.included-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, #edca85, var(--accent));
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
}

.contact-card label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(25, 38, 31, 0.12);
  border-radius: 16px;
  background: rgba(248, 243, 235, 0.8);
  color: #fff;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus,
.cart-list input[type="number"]:focus {
  outline: 2px solid rgba(190, 123, 84, 0.22);
  border-color: rgba(190, 123, 84, 0.38);
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-card input,
.dark-card select,
.dark-card textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-layout-simple {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.9fr);
  align-items: start;
}

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

.contact-info-grid article {
  padding: 24px;
  border-radius: 22px;
}

.contact-info-grid .smart-icon {
  margin-bottom: 16px;
}

.site-footer {
  padding: 30px 0 48px;
  background: #3b2b2d;
  color: #f8f1e6;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-copy,
.site-footer span,
.footer-brand .brand-copy small {
  color: rgba(248, 241, 230, 0.72);
}

.footer-copy {
  max-width: 420px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 12px;
}

.page-intro {
  padding: 56px 0 24px;
}

.page-intro h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.cart-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.52fr);
  align-items: start;
  padding-bottom: 88px;
}

.cart-card,
.summary-card {
  border-radius: 28px;
  overflow: hidden;
}

.cart-table-wrap {
  overflow-x: auto;
}

.cart-list {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.cart-list th,
.cart-list td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(25, 38, 31, 0.08);
  text-align: left;
  color: var(--muted);
}

.cart-list th {
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-list input[type="number"] {
  width: 72px;
  padding: 10px 12px;
  border: 1px solid rgba(25, 38, 31, 0.12);
  border-radius: 12px;
  background: rgba(248, 243, 235, 0.8);
}

.summary-card {
  position: sticky;
  top: 98px;
  padding: 26px;
}

.summary-card h3 {
  font-size: 1.24rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25, 38, 31, 0.08);
}

.summary-row strong {
  font-size: 1.08rem;
}

.summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.empty-state {
  padding: 44px;
  border-radius: 28px;
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
}

.products-grid .empty-state {
  grid-column: 1 / -1;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(16, 35, 26, 0.94);
  color: #f8f1e6;
  box-shadow: 0 18px 40px rgba(16, 35, 26, 0.24);
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .timing-grid,
  .pricing-highlights,
  .contact-info-grid,
  .delivery-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-reference-grid,
  .timing-layout,
  .goal-layout,
  .contact-layout-simple,
  .cart-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .plan-package-grid,
  .hero-stats-compact,
  .trust-band-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-stack-reference {
    padding: 0;
    display: grid;
    gap: 18px;
  }

  .plan-note,
  .delivery-note {
    position: static;
    width: 100%;
  }

  .hero-photo-main img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .service-grid,
  .plan-package-grid,
  .products-grid,
  .pricing-highlights,
  .timing-grid,
  .contact-info-grid,
  .trust-band-row,
  .hero-stats-compact,
  .delivery-showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .product-top,
  .product-price-block {
    align-items: flex-start;
  }
}

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

  .header-row {
    gap: 10px;
  }

  .brand-copy small,
  .cart-icon span:not(.cart-badge) {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .timing-panel,
  .service-card,
  .plan-package-card,
  .contact-card,
  .contact-info-grid article,
  .pricing-highlights article,
  .hero-stats article,
  .cart-card,
  .summary-card,
  .empty-state {
    border-radius: 22px;
  }

  .pricing-tabs {
    justify-content: flex-start;
  }

  .pricing-tab {
    width: 100%;
    justify-content: center;
  }
}
