:root {
  --bg: #fbf8f2;
  --bg-strong: #f0e7da;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-solid: #fffdf8;
  --text: #1c1a18;
  --muted: #6c6258;
  --line: rgba(28, 26, 24, 0.08);
  --accent: #c99a5c;
  --accent-deep: #a67a40;
  --shadow: 0 24px 60px rgba(83, 62, 36, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 154, 92, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 58%, #f7f0e6 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: relative;
  padding: 20px 24px 72px;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(0.5px);
  z-index: 0;
}

.site-header::before {
  top: 78px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 154, 92, 0.18), transparent 66%);
}

.site-header::after {
  left: -150px;
  bottom: 40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
}

.topline,
.nav-wrap,
.hero,
.cart-panel {
  position: relative;
  z-index: 1;
}

.topline {
  max-width: 1240px;
  margin: 0 auto 16px;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 0.85rem;
}

.topline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(28, 26, 24, 0.09);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fffaf2 0%, #ecd9bf 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  padding-bottom: 5px;
  color: #2d2a27;
  font-size: 0.95rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.ghost-link {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-trigger,
.menu-toggle,
.button {
  border: 0;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.cart-trigger,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
}

.cart-trigger {
  background: #1f1b18;
  color: #fffefb;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  background: #efe5d7;
  color: #2d2824;
}

.hero {
  max-width: 1240px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 28px 12px 0;
}

.eyebrow,
.panel-kicker,
.card-label {
  margin: 0 0 14px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  font-weight: 700;
}

.button:hover,
.button:focus-visible,
.cart-trigger:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #1f1b18;
  color: #fffefb;
}

.button-secondary {
  border: 1px solid rgba(28, 26, 24, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.hero-notes {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes li {
  padding: 12px 16px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #302b27;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-image-frame {
  position: absolute;
  right: 0;
  top: 0;
  width: min(100%, 620px);
  height: 720px;
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(242, 232, 219, 0.88));
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  max-width: 260px;
  padding: 22px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 48px rgba(74, 58, 36, 0.12);
}

.card-story {
  left: -10px;
  bottom: 58px;
}

.card-story p,
.metric-label,
.cart-panel-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-metric {
  right: 28px;
  top: 34px;
  display: grid;
  gap: 4px;
  min-width: 170px;
}

.metric-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.cart-panel {
  position: fixed;
  top: 22px;
  right: 22px;
  width: min(420px, calc(100vw - 24px));
  padding: 24px;
  border: 1px solid rgba(28, 26, 24, 0.1);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 32px 64px rgba(44, 33, 17, 0.18);
  transform: translateX(calc(100% + 40px));
  transition: transform 260ms ease;
  z-index: 15;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.cart-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

section + section {
  margin-top: 34px;
}

.intro-section,
.editorial-section,
.products-section,
.service-section,
.journal-section,
.contact-section {
  padding: 34px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 40px rgba(83, 62, 36, 0.06);
}

.section-heading {
  display: grid;
  gap: 18px;
}

.section-heading h2,
.editorial-copy h2,
.service-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading p,
.editorial-copy p,
.service-card p,
.contact-note p,
.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.75;
}

.split-heading {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.intro-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.intro-card,
.service-card {
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 237, 227, 0.74));
  border: 1px solid rgba(28, 26, 24, 0.06);
}

.intro-card-large {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 92, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 232, 219, 0.74));
}

.intro-index,
.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 27, 24, 0.06);
  color: #4b4035;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-card h3,
.product-card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.intro-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.editorial-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 30px;
}

.editorial-copy {
  padding: 12px 8px;
}

.editorial-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.editorial-points div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(28, 26, 24, 0.08);
}

.editorial-points strong,
.service-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.editorial-points span {
  color: var(--muted);
  line-height: 1.7;
}

.products-heading {
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.product-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-solid);
  border: 1px solid rgba(28, 26, 24, 0.08);
  box-shadow: 0 18px 40px rgba(83, 62, 36, 0.08);
}

.product-image-wrap {
  aspect-ratio: 0.9;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

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

.product-card-body {
  padding: 22px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product-price {
  font-weight: 700;
}

.add-to-cart {
  width: 100%;
  margin-top: 18px;
  min-height: 50px;
  border: 0;
  border-radius: 18px;
  background: #201b18;
  color: #fffefb;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease;
}

.add-to-cart:hover,
.add-to-cart:focus-visible,
.cart-close:hover {
  transform: translateY(-2px);
}

.service-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

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

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 18px;
  margin-top: 28px;
}

.review-card,
.faq-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 233, 0.88));
}

.review-rating {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 154, 92, 0.16);
  color: var(--accent-deep);
  font-weight: 700;
}

.review-card p {
  margin: 18px 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-card details {
  padding: 16px 0;
  border-top: 1px solid rgba(28, 26, 24, 0.08);
}

.faq-card details:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
}

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

.faq-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card,
.contact-note {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 26, 24, 0.08);
}

.contact-card a {
  display: block;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 154, 92, 0.16), transparent 28%),
    rgba(255, 252, 247, 0.9);
  box-shadow: 0 18px 40px rgba(83, 62, 36, 0.06);
}

.newsletter-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.newsletter-copy p:last-child,
.newsletter-form label {
  color: var(--muted);
  line-height: 1.75;
}

.newsletter-form {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 26, 24, 0.08);
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 12px;
}

.newsletter-form input {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(28, 26, 24, 0.12);
  border-radius: 16px;
  background: #fff;
}

.newsletter-message {
  margin: 14px 0 0;
  color: #245837;
  line-height: 1.6;
}

.site-footer {
  max-width: 1240px;
  margin: 0 auto 34px;
  padding: 32px 24px 0;
}

.site-footer::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 28px;
  background: rgba(28, 26, 24, 0.08);
}

.footer-brand,
.footer-links,
.footer-bottom {
  display: grid;
  gap: 14px;
}

.footer-brand {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.footer-brand p,
.footer-bottom p,
.footer-links a,
.footer-links span {
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-links > div {
  display: grid;
  gap: 10px;
}

.footer-title {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(28, 26, 24, 0.08);
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  cursor: pointer;
  padding: 0;
}

.cart-summary {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checkout-form label {
  font-size: 0.94rem;
  color: var(--muted);
}

.checkout-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(28, 26, 24, 0.12);
  border-radius: 16px;
  background: #fff;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.checkout-message {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(203, 238, 214, 0.74);
  color: #245837;
  line-height: 1.6;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 24px);
  padding: 14px 22px;
  border-radius: 999px;
  background: #201b18;
  color: #fffefb;
  box-shadow: 0 18px 38px rgba(32, 27, 24, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 20;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-badge.bump {
  animation: badge-bump 380ms ease;
}

.add-to-cart.is-added {
  background: #2f6a47;
}

.legal-body {
  min-height: 100vh;
}

.legal-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.legal-header {
  margin-bottom: 28px;
}

.legal-header .nav-wrap {
  margin-bottom: 22px;
}

.legal-hero,
.legal-content {
  padding: 32px;
  border: 1px solid rgba(28, 26, 24, 0.08);
  border-radius: 32px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 40px rgba(83, 62, 36, 0.06);
}

.legal-hero h1 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
}

.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-content {
  margin-top: 22px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.legal-content section + section {
  margin-top: 24px;
}

.legal-content ul {
  margin: 0;
  padding-left: 18px;
}

@keyframes badge-bump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

.cart-close {
  padding: 10px 14px;
  border: 1px solid rgba(28, 26, 24, 0.12);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33, 26, 18, 0.18);
  backdrop-filter: blur(3px);
  z-index: 10;
}

.page-backdrop.is-visible {
  display: block;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    padding-top: 4px;
  }

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

  .hero-copy {
    padding-inline: 0;
  }

  .hero h1 {
    max-width: 14ch;
  }

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

  .hero-image-frame {
    position: relative;
    height: 620px;
  }

  .card-story {
    left: 18px;
    bottom: 18px;
  }

  .split-heading,
  .products-heading,
  .editorial-section,
  .service-section,
  .newsletter-section,
  .journal-grid,
  .contact-section,
  .service-grid,
  .intro-grid,
  .footer-brand,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding-inline: 16px;
    padding-bottom: 44px;
  }

  .topline {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    padding: 16px;
    gap: 18px;
  }

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

  .primary-nav,
  .nav-actions {
    display: none;
  }

  .nav-wrap.menu-open .primary-nav,
  .nav-wrap.menu-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 6px;
  }

  .nav-wrap.menu-open .nav-actions {
    gap: 12px;
  }

  .nav-wrap.menu-open .cart-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    margin-top: 20px;
    gap: 22px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

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

  .hero-image-frame {
    height: 480px;
    padding: 12px;
    border-radius: 28px;
  }

  .hero-image-frame img {
    border-radius: 20px;
  }

  .floating-card {
    max-width: 220px;
    padding: 16px;
  }

  .card-metric {
    right: 16px;
    top: 16px;
  }

  main {
    padding-inline: 16px;
    padding-bottom: 72px;
  }

  .intro-section,
  .editorial-section,
  .products-section,
  .service-section,
  .journal-section,
  .contact-section,
  .newsletter-section,
  .legal-hero,
  .legal-content {
    padding: 22px;
    border-radius: 26px;
  }

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

@media (max-width: 560px) {
  .brand-copy small,
  .ghost-link {
    display: none;
  }

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

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

  .hero-notes li {
    width: 100%;
  }

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

  .hero-image-frame {
    height: 420px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .cart-panel {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item-actions {
    justify-items: start;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .legal-shell {
    padding-inline: 16px;
  }
}
