/* ============================================
   BIOTURA — Global Styles
   Palette: White + Mint + Gold
   Aesthetic: Clean, Classic, Refined
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --white: #ffffff;
  --off-white: #fafbf9;
  --cream: #f7f5f0;
  --mint-light: #e8f5f0;
  --mint: #a8d5c2;
  --mint-deep: #6bb89c;
  --mint-dark: #3d8b6e;
  --gold-light: #f5e6c8;
  --gold: #c9a84c;
  --gold-deep: #b08d3a;
  --gold-dark: #8a6e2c;
  --text-primary: #2c3e36;
  --text-secondary: #5a6e64;
  --text-muted: #8a9e94;
  --border: #dde8e2;
  --border-light: #edf2ef;
  --shadow-sm: 0 1px 3px rgba(44, 62, 54, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 62, 54, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 62, 54, 0.1);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--mint-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-deep);
}

/* ---- Typography ---- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ---- Layout ---- */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--cream);
}

.section--mint {
  background: var(--mint-light);
}

/* ---- Header / Navbar ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.navbar__logo span {
  color: var(--gold);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

/* Mobile menu */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}

.navbar__mobile.open {
  display: block;
  animation: slideDown 0.3s ease;
}

.navbar__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.03em;
}

.navbar__mobile a:last-child {
  border-bottom: none;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Hero Section ---- */

.hero {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--mint-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 20%, rgba(168, 213, 194, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  max-width: 700px;
  margin: 0 auto 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--mint-dark);
}

.hero__subtitle {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__image {
  max-width: 340px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 40px rgba(44, 62, 54, 0.12));
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 20px;
}

.hero__scroll-hint .arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ---- Quiz Section ---- */

.quiz {
  padding: 80px 0;
  background: var(--white);
}

.quiz__wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.quiz__header {
  margin-bottom: 48px;
}

.quiz__header h2 {
  margin-bottom: 12px;
}

.quiz__header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Progress bar */
.quiz__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.quiz__progress-step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  transition: background var(--transition);
  position: relative;
}

.quiz__progress-step.active {
  background: var(--mint);
}

.quiz__progress-step.done {
  background: var(--gold);
}

/* Quiz card */
.quiz__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: none;
}

.quiz__card.active {
  display: block;
  animation: fadeUp 0.45s ease;
}

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

.quiz__step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.quiz__question {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
}

.quiz__option:hover {
  border-color: var(--mint);
  background: var(--mint-light);
}

.quiz__option.selected {
  border-color: var(--mint-deep);
  background: var(--mint-light);
  color: var(--text-primary);
  font-weight: 600;
}

.quiz__option .radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.quiz__option.selected .radio {
  border-color: var(--mint-deep);
  background: var(--mint-deep);
}

.quiz__option.selected .radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--mint-deep) 0%, var(--mint-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 184, 156, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 184, 156, 0.4);
  color: var(--white);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}

.btn--outline:hover {
  border-color: var(--mint);
  color: var(--text-primary);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ---- Order Form ---- */

.order-form {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeUp 0.5s ease;
}

.order-form.visible {
  display: block;
}

.order-form__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.order-form__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint-deep), var(--gold));
}

.order-form__title {
  text-align: center;
  margin-bottom: 8px;
}

.order-form__subtitle {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 184, 156, 0.12);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin: 24px 0;
}

.form-submit-wrap {
  text-align: center;
  margin-top: 28px;
}

.form-submit-wrap .btn {
  width: 100%;
}

/* ---- Product Section ---- */

.product-overview {
  padding: 80px 0;
}

.product-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-gallery {
  position: relative;
}

.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint-light);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.product-gallery__main img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(44, 62, 54, 0.1));
}

.product-info h2 {
  margin-bottom: 16px;
}

.product-info__desc {
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Ingredients list */
.ingredients-list {
  list-style: none;
  margin-bottom: 28px;
}

.ingredients-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.ingredients-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--mint);
}

/* Usage instructions */
.usage-box {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.usage-box h4 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--text-primary);
}

.usage-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ---- Features / Info Blocks ---- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-card h4 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---- Footer ---- */

.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand span {
  color: var(--gold);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  margin-left: 20px;
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ---- Cookie Modal ---- */

.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(44, 62, 54, 0.12);
  padding: 24px;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-modal.show {
  display: block;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-modal__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-modal__text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-modal__text a {
  color: var(--mint-dark);
  text-decoration: underline;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Page Headers ---- */

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--white) 0%, var(--mint-light) 100%);
  text-align: center;
  position: relative;
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* ---- Content Pages ---- */

.content-page {
  padding: 60px 0 80px;
}

.content-page .container {
  max-width: 780px;
}

.content-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.content-page h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.content-page p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.content-page ul {
  margin: 12px 0 20px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.content-page ul li {
  margin-bottom: 8px;
}

/* ---- Contact Page ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-card a {
  color: var(--mint-dark);
  font-weight: 600;
}

/* ---- Success Page ---- */

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 100%);
}

.success-page__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-deep), var(--mint-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(107, 184, 156, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-page__icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.success-page h1 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.success-page p {
  max-width: 480px;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ---- Map Embed ---- */

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: none;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .product-overview__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: block;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 100px 0 56px;
  }

  .quiz__card {
    padding: 32px 20px;
  }

  .order-form__card {
    padding: 32px 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal a {
    margin-left: 12px;
  }

  .cookie-modal__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero__image {
    max-width: 240px;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: 0.92rem;
  }
}

/* ---- Utilities ---- */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-mint { color: var(--mint-dark); }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  margin: 20px auto;
  border-radius: 2px;
}

/* Gold accent line for section headings */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}
