:root {
  --bg-void:    #06050c;
  --bg-night:   #0a0814;
  --bg-deep:    #110e20;
  --bg-plum:    #1c1430;
  --bg-violet:  #2a1e44;
  --amethyst:   #9b78c8;
  --amethyst-d: #7a5aaa;
  --amethyst-l: #c4a8e8;
  --silver:     #c8d4e8;
  --silver-d:   #8898b8;
  --text-bright: #ede8f8;
  --text-mid:    #DBD7E6;
  --text-dim:    #c0b8d8;
  --border-a:   rgba(155,120,200,0.22);
  --border-b:   #ede8f8;

  /* ── Cream accent — warm pale pink-cream to match logo background ── */
  --cream:      #f5ebe6;
  --cream-d:    rgba(245,235,230,0.85);
  --cream-dim:  rgba(245,235,230,0.18);

  --f-display: 'Cormorant SC', Georgia, serif;
  --f-body:    'Spectral', Georgia, serif;
  --f-elegant: 'Cormorant Garamond', Georgia, serif;
  --f-script:  'Great Vibes', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { font-family: var(--f-body); font-size: 17px; background: var(--bg-night); color: var(--text-bright); line-height: 1.7; }
a { color:var(--text-bright);}
hr {
  border: none;
  height: 2px;
  background-color: #ccc;
color:var(--cream-dim);
  border-radius: 4px;             /* tiny rounding to match image */
  width: 100%;
  margin: 2rem 0;
}
.page-section {
  padding: 140px 48px 100px;
  background: var(--bg-night);
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--f-elegant);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.intro-wrap {
  display: flex;
  align-items: flex-start; /* align text to top of image */
  gap: 2rem;               /* spacing between image and text */
  flex-wrap: wrap;          /* allows stacking on smaller screens */
  margin-bottom: 2rem;
}

.intro-image {
  flex: 0 0 180px;         /* fixed width for image */
  height: 180px;            /* fixed height */
  object-fit: cover;        /* crops image nicely */
  border-radius: 8px;       /* rounded corners */
}

.intro-text {
  flex: 1;                  /* text takes remaining space */
  min-width: 200px;         /* ensures it doesn’t shrink too much */
}
@media (max-width: 768px) {
  .intro-wrap {
    flex-direction: column; /* stack vertically on smaller screens */
    gap: 1rem;
  }

  .intro-image {
    width: 100%;           /* full width on mobile */
    height: auto;          /* maintain aspect ratio */
  }
}


  /* Submit button */
  .contact-form .submit-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold, #d4a843);
    color: var(--soil, #3b2616);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
    width: 100%;
  }
 
  .contact-form .submit-btn:hover {
    background: var(--amber, #c8882a);
    transform: translateY(-1px);
  }
 
  /* Success / error messages */
  .form-message {
    display: none;
    padding: 14px 18px;
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 8px;
  }
 
  .form-message.success {
    border: 1px solid rgba(74,103,65,0.5);
    background: rgba(74,103,65,0.1);
    color: var(--lichen, #b5c9a0);
  }
 
  .form-message.error {
    border: 1px solid rgba(200,136,42,0.4);
    background: rgba(200,136,42,0.07);
    color: var(--amber, #c8882a);
  }
@media (max-width: 768px) {
  .big-image div[style*="border-radius:50%"] {
    width: 100% !important;
    height: auto !important;
    border-radius: 0; /* optional: remove circle on mobile */
  }

  .big-image video, img {
    width: 100%;
    height: auto;
    transform: none; /* stops zoom cropping */
align:center;
  }
}

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 13px 48px; background: rgba(6,5,12,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-a); }
.nav-logo-wrap { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo-wrap img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(245,235,230,0.3); }
.nav-logo-title { font-family: var(--f-display); font-size: 1rem; color: var(--cream); letter-spacing: 0.06em; display: block; line-height: 1; font-weight: 400; }
.nav-logo-sub { font-family: var(--f-display); font-size: 0.5rem; letter-spacing: 0.22em; color: var(--text-dim); text-transform: uppercase; display: block; margin-top: 5px; font-weight: 300; }
.nav-links { display: flex; gap: 20px; list-style: none;margin-left: 48px; }
.nav-links a { font-family: var(--f-display); font-size: 0.8rem; letter-spacing: 0.16em; font-weight: 400; color: var(--text-bright); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.nav-right-group { display: flex; align-items: center; gap: 12px; }
.nav-social { display: flex; align-items: center; gap: 11px; padding-right: 16px; border-right: 1px solid var(--border-b); }
.nav-social a { color: var(--text-dim); transition: color 0.2s; text-decoration: none; display: flex; align-items: center; }
.nav-social a:hover { color: var(--cream); }
.nav-social svg { width: 14px; height: 14px; fill: currentColor; }

/* Cream basket button */
.nav-basket { font-family: var(--f-display); font-size: 0.6rem; letter-spacing: 0.14em; font-weight: 500; background: var(--cream); color: var(--bg-void); border: none; padding: 8px 18px; text-decoration: none; text-transform: uppercase; transition: all 0.2s; }
.nav-basket:hover { background: var(--cream-d); }

/* Cream hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: var(--cream); border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--bg-void); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-only { display: none !important; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 98; opacity: 0; transition: opacity 0.3s; }
.nav-overlay.open { display: block; opacity: 1; }




.reviews-wrapper {
  overflow: hidden;
  padding: 2rem 1rem;
  background: #1a1020;

}

.reviews-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.review {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--moonlight);
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.review span {
  font-size: 0.85rem;
  color: #444;
}

/* dots */
.dots {
  text-align: center;
  margin-top: 1rem;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 4px;
  background: #ccc;
  border-radius: 50%;
}

.dots .active {
  background: #fff;
}
.reviews-slider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}





/* ── SHARED ── */
.section-label { font-family: var(--f-display); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amethyst); margin-bottom: 10px; font-weight: 400; }
.section-title { font-family: var(--f-display); font-size: clamp(1.7rem, 3.5vw, 3rem); color: var(--text-bright); line-height: 1.15; margin-bottom: 18px; font-weight: 400; letter-spacing: 0.04em; }

/* Cream ornament */
.ornament { width: 36px; height: 1px; background: var(--cream); display: inline-block; margin: 14px 0 24px; opacity: 0.5; }

/* Cream primary button */
button, .userbutton, .btn-primary { font-family: var(--f-display); font-size: 0.68rem; letter-spacing: 0.18em; font-weight: 500; text-transform: uppercase; text-decoration: none; background: var(--cream); color: var(--bg-void); padding: 15px 34px; border: none; cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--cream-d); transform: translateY(-2px); }
.btn-outline { font-family: var(--f-display); font-size: 0.68rem; letter-spacing: 0.18em; font-weight: 500; text-transform: uppercase; text-decoration: none; border: 1px solid var(--cream-dim); color: var(--cream); padding: 15px 34px; cursor: pointer; background: none; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--cream-dim); transform: translateY(-2px); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes twinkle { from { opacity: 0.15; } to { opacity: 0.9; } }

/* ── HERO — rings removed, moon removed ── */
.hero { min-height: 100vh; background: radial-gradient(ellipse at 25% 65%, rgba(80,40,120,0.65) 0%, transparent 55%), radial-gradient(ellipse at 78% 25%, rgba(40,20,70,0.5) 0%, transparent 50%), linear-gradient(170deg, var(--bg-void) 0%, var(--bg-night) 55%, #08060f 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 110px 48px 80px; text-align: center; }

/* Stars only, no rings */
.stars { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; border-radius: 50%; background: var(--cream); animation: twinkle var(--d,3s) var(--delay,0s) infinite alternate; }

.hero-eyebrow { font-family: var(--f-display); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--amethyst); margin-bottom: 22px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-title { font-family: var(--f-display); font-size: clamp(2.2rem, 5.5vw, 5rem); color: var(--text-bright); line-height: 1.1; max-width: 820px; font-weight: 300; letter-spacing: 0.04em; opacity: 0; animation: fadeUp 0.9s 0.35s forwards; }
.hero-title em { color: var(--cream); font-style: italic; }

.hero-divider { display: flex; align-items: center; gap: 18px; margin: 28px 0; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-divider-line { width: 56px; height: 1px; background: var(--cream); opacity: 0.25; }
.hero-divider-gem { width: 7px; height: 7px; background: var(--cream); transform: rotate(45deg); opacity: 0.6; }

.hero-tagline { font-family: var(--f-script); font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--amethyst-l); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.9s 0.65s forwards; }

.hero-subtitle { font-family: var(--f-elegant); font-size: 1.1rem; font-style: italic; color: var(--text-mid); max-width: 580px; line-height: 1.85; margin-bottom: 14px; opacity: 0; animation: fadeUp 0.9s 0.72s forwards; }
.hero-gift-note { font-family: var(--f-body); font-size: 0.95rem; color: var(--text-dim); max-width: 540px; line-height: 1.75; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.9s 0.84s forwards; }
.hero-gift-note strong { color: var(--cream); font-style: normal; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 0.9s 0.95s forwards; }

/* ── PRICING ── */
.pricing-band { background: var(--bg-void); border-top: 1px solid var(--border-a); border-bottom: 1px solid var(--border-a); display: grid; grid-template-columns: 1fr 1fr; }
.pricing-option { padding: 56px 60px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid var(--border-b); transition: background 0.3s; }
.pricing-option:last-child { border-right: none; }
.pricing-option:hover { background: rgba(245,235,230,0.03); }
.pricing-label { font-family: var(--f-display); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--amethyst); font-weight: 300; }
.pricing-title { font-family: var(--f-display); font-size: clamp(1.3rem, 2.5vw, 2rem); color: var(--text-bright); line-height: 1.2; font-weight: 400; }
/* Cream pricing amount */
.pricing-amount { font-family: var(--f-display); font-size: 2.4rem; color: var(--cream); font-weight: 300; letter-spacing: 0.04em; }
.pricing-amount span { font-size: 1rem; color: var(--text-dim); font-family: var(--f-elegant); font-style: italic; }
.pricing-desc { font-family: var(--f-elegant); font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; font-style: italic; }

/* ── BOX IMAGES ── */
.box-images-section { padding: 80px 48px; background: var(--bg-deep); border-bottom: 1px solid var(--border-b); }
.box-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 1000px; margin: 0 auto 52px; }
.box-image-wrap { overflow: hidden; position: relative; }
.box-image-wrap img { width: 100%; height: 560px; object-fit: cover; object-position: center top; display: block; transition: transform 0.55s; filter: saturate(0.9); }
.box-image-wrap:hover img { transform: scale(1.04); filter: saturate(1); }
.box-image-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(6,5,12,0.92), transparent); padding: 22px 18px 14px; font-family: var(--f-display); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); font-weight: 300; }
.video-wrap { max-width: 700px; margin: 0 auto; position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrap video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ── CONTENTS ── */
.contents-section { padding: 90px 48px; background: radial-gradient(ellipse at 5% 50%, rgba(80,40,120,0.18) 0%, transparent 50%), var(--bg-night); border-bottom: 1px solid var(--border-b); }
.contents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.content-card { padding: 30px 26px; border: 1px solid var(--border-b); background: rgba(255,255,255,0.018); transition: border-color 0.25s, background 0.25s, transform 0.25s; }
.content-card:hover { border-color: var(--cream-dim); background: rgba(245,235,230,0.04); transform: translateY(-4px); }
.content-icon { font-size: 1.5rem; margin-bottom: 14px; }
/* Cream card headings */
.content-card h3 { font-family: var(--f-display); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); margin-bottom: 10px; font-weight: 500; }
.content-card p { font-family: var(--f-elegant); font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; }

/* ── DETAILS ── */
.details-section { padding: 90px 48px; background: var(--bg-void); border-bottom: 1px solid var(--border-b); }
.details-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; max-width: 1100px; margin: 0 auto; }
.details-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.detail-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border: 1px solid var(--border-b); background: rgba(245,235,230,0.025); transition: border-color 0.2s, background 0.2s; }
.detail-row:hover { border-color: var(--cream-dim); background: rgba(245,235,230,0.05); }
/* Cream detail dot */
.detail-dot { width: 6px; height: 6px; background: var(--cream); transform: rotate(45deg); margin-top: 9px; flex-shrink: 0; opacity: 0.7; }
.detail-row p { font-family: var(--f-elegant); font-size: 1.05rem; color: var(--text-mid); line-height: 1.65; }
/* Cream strong text */
.detail-row p strong { color: var(--cream); font-weight: 500; font-style: normal; }
.details-right img { width: 100%; max-width: 440px; border: 1px solid var(--border-a); display: block; margin-bottom: 18px; }
.details-note { font-family: var(--f-elegant); font-size: 1rem; color: var(--text-dim); font-style: italic; line-height: 1.7; }

/* ── WHO ── */
.who-section { padding: 90px 48px; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(80,40,120,0.28) 0%, transparent 60%), var(--bg-deep); border-bottom: 1px solid var(--border-b); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 40px auto 0; }
.who-item { padding: 30px 26px; border: 1px solid var(--border-b); background: rgba(245,235,230,0.025); transition: border-color 0.25s, background 0.25s; }
.who-item:hover { border-color: var(--cream-dim); background: rgba(245,235,230,0.05); }
.who-icon { font-size: 1.5rem; margin-bottom: 14px; }
.who-item p { font-family: var(--f-elegant); font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; font-style: italic; }

/* ── ORDER ── */
.order-section { padding: 90px 48px; text-align: center; background: radial-gradient(ellipse at 30% 50%, rgba(80,40,120,0.4) 0%, transparent 55%), radial-gradient(ellipse at 70% 50%, rgba(30,15,55,0.4) 0%, transparent 50%), linear-gradient(135deg, var(--bg-void) 0%, var(--bg-plum) 50%, var(--bg-void) 100%); border-bottom: 1px solid var(--border-a); }
.order-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 44px auto 0; }
.order-card { background: rgba(245,235,230,0.03); border: 1px solid var(--cream-dim); padding: 40px 34px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.25s, background 0.25s; }
.order-card:hover { border-color: rgba(245,235,230,0.35); background: rgba(245,235,230,0.06); }
.order-card-label { font-family: var(--f-display); font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amethyst); }
.order-card-title { font-family: var(--f-display); font-size: 1.3rem; color: var(--text-bright); font-weight: 400; letter-spacing: 0.06em; }
/* Cream price */
.order-card-price { font-family: var(--f-display); font-size: 2rem; color: var(--cream); font-weight: 300; }
.order-card-price small { font-family: var(--f-elegant); font-size: 0.88rem; color: var(--text-dim); font-style: italic; }
.order-card-desc { font-family: var(--f-elegant); font-size: 1rem; color: var(--text-mid); font-style: italic; line-height: 1.65; }
.order-card .btn-primary { align-self: stretch; text-align: center; margin-top: auto; }

/* ── QUOTE — readable Cormorant Garamond instead of script ── */
.quote-section { padding: 80px 48px; text-align: center; background: var(--bg-night); border-bottom: 1px solid var(--border-b); }
.quote-logo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(245,235,230,0.3); margin-bottom: 32px; }
.quote-text { font-family: var(--f-elegant); font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: var(--cream); max-width: 660px; margin: 0 auto 22px; line-height: 1.75; font-style: italic; font-weight: 400; }
.quote-attr { font-family: var(--f-display); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); font-weight: 300; }

/* ── BADGES ── */
.badges-section { padding: 52px 48px; background: var(--bg-void); border-bottom: 1px solid var(--border-b); display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
.badge-item img { height: 96px; filter: brightness(0.88) saturate(0.8); transition: filter 0.2s; }
.badge-item img:hover { filter: brightness(1); }

/* ── FOOTER SIGNUP ── */
.footer-signup { padding: 36px 0 28px; margin-bottom: 28px; }
.footer-signup p { margin-bottom: 16px; }
.footer-signup-form { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-signup-form input[type="email"] { flex: 1; min-width: 220px; background: rgba(245,235,230,0.06); border: 1px solid var(--cream-dim); color: var(--text-bright); font-family: var(--f-elegant); font-size: 1rem; padding: 12px 16px; outline: none; transition: border-color 0.2s; }
.footer-signup-form input[type="email"]:focus { border-color: rgba(245,235,230,0.4); }
.footer-signup-form input[type="email"]::placeholder { color: rgba(245,235,230,0.3); }
.footer-signup-form .btn-primary { padding: 12px 28px; }

/* ── FOOTER ── */
footer { background: var(--bg-void); padding: 64px 48px 36px; border-top: 1px solid rgba(245,235,230,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
/* Cream footer brand name */
.footer-brand-name { font-family: var(--f-display); font-size: 1.05rem; color: var(--cream); display: block; margin-bottom: 12px; font-weight: 400; letter-spacing: 0.05em; }
.footer-tagline { font-family: var(--f-elegant); font-size: 1rem; color: var(--text-dim); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-dim); transition: color 0.2s; text-decoration: none; }
.footer-social a:hover { color: var(--cream); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 { font-family: var(--f-display); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amethyst); margin-bottom: 18px; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-family: var(--f-elegant); font-size: 1rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-mid); }
.footer-bottom { border-top: 1px solid var(--border-b); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-family: var(--f-elegant); font-size: 0.9rem; color: var(--text-dim); }
.footer-bottom em { color: var(--cream); font-style: italic; opacity: 0.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 12px 20px; position: fixed; top: 0; left: 0; right: 0; }
  body { padding-top: 72px; } /* compensate for fixed nav height */
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex !important; }
  .nav-basket { display: none; }
  .nav-links { display: flex !important; flex-direction: column; position: fixed; top: 0; right: 0; width: min(300px, 85vw); height: 100vh; background: rgba(6,5,12,0.99); border-left: 1px solid var(--border-a); padding: 90px 32px 48px; gap: 4px; z-index: 99; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--border-b); }
  .nav-links a { font-size: 0.82rem; padding: 13px 0; display: block; }
  .mobile-only { display: block !important; margin-top: 4px; }
  .mobile-social-row { display: flex !important; flex-direction: row !important; gap: 18px; padding: 16px 0 8px; border-bottom: none !important; }
  .mobile-social-row a { padding: 0 !important; width: auto !important; color: var(--text-dim) !important; }
  .mobile-social-row a:hover { color: var(--cream) !important; }
  .mobile-social-row svg { width: 20px; height: 20px; fill: currentColor; }
  .hero { padding: 80px 24px 60px; }
  .pricing-band { grid-template-columns: 1fr; }
  .pricing-option { border-right: none; border-bottom: 1px solid var(--border-b); padding: 44px 28px; }
  .pricing-option:last-child { border-bottom: none; }
  .box-images-grid { grid-template-columns: 1fr; }
  .box-image-wrap img { height: 320px; }
  .box-images-section, .contents-section, .who-section, .quote-section, .order-section, .badges-section { padding: 60px 24px; }
  .contents-grid { grid-template-columns: 1fr 1fr; }
  .details-inner { grid-template-columns: 1fr; gap: 40px; }
  .details-section { padding: 60px 24px; }
  .who-grid { grid-template-columns: 1fr; max-width: 440px; }
  .order-cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) { .contents-grid { grid-template-columns: 1fr; } }
