:root {
  --accent: #F12120;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  background: #faf5ee;
  color: #201c2c;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', 'Work Sans', system-ui, sans-serif;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: color-mix(in srgb, var(--accent) 78%, #201c2c);
}

.page {
  position: relative;
  overflow-x: hidden;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ambient warm blobs */
.blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.5;
}
.blob-1 { width: 420px; height: 420px; top: -140px; right: -100px; background: color-mix(in srgb, var(--accent) 30%, transparent); }
.blob-2 { width: 360px; height: 360px; top: 640px; left: -140px; background: #d9e6da; opacity: 0.6; }
.blob-3 { width: 300px; height: 300px; top: 1500px; right: -80px; background: #e7d9ea; opacity: 0.5; }

.shell { position: relative; z-index: 1; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* header */
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 40px;
  position: sticky; top: 0; z-index: 20;
  background: rgba(250,245,238,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32,28,44,0.08);
}
.topbar img { display: block; height: 38px; width: auto; }
.topbar-info { display: flex; align-items: center; gap: 24px; color: #6b6558; font-size: 13.5px; font-weight: 500; }
.topbar-info-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-info-item svg { flex: none; opacity: 0.75; }
.topbar-info-item a { color: #6b6558; }
.topbar-info-item a:hover { color: #201c2c; }
.topbar-cta {
  flex: none; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-weight: 600; font-size: 13.5px;
  padding: 10px 20px; border-radius: 8px;
}
.topbar-cta:hover { background: color-mix(in srgb, var(--accent) 85%, #201c2c); color: #fff; }

/* marquee ticker */
.ticker {
  position: relative; overflow: hidden; background: color-mix(in srgb, var(--accent) 10%, #faf5ee);
  border-bottom: 1px solid rgba(32,28,44,0.06); padding: 10px 0;
}
.ticker-track { display: flex; width: max-content; gap: 40px; animation: ticker 26s linear infinite; }
.ticker-item {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--accent) 70%, #201c2c);
  display: inline-flex; align-items: center; white-space: nowrap;
}
.ticker-item::after { content: '•'; margin-left: 40px; opacity: 0.5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 76px 0 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero h1 { font-size: 46px; line-height: 1.12; margin: 18px 0 20px; max-width: 500px; }
.hero-sub { font-size: 16.5px; line-height: 1.65; color: #6b6558; max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px; background: var(--accent); color: #fff; font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 10px; border: none; cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 85%, #201c2c); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; background: transparent; color: #201c2c; font-weight: 600; font-size: 15px;
  padding: 15px 24px; border-radius: 10px; border: 1.5px solid rgba(32,28,44,0.18); text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}
.btn-ghost:hover { background: rgba(32,28,44,0.05); border-color: rgba(32,28,44,0.3); color: #201c2c; }

.hero-visual { position: relative; }
.hero-frame { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3.3; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(0.06) saturate(1.08) contrast(1.02) brightness(1.02); }
.hero-frame::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(32,28,44,0.08); border-radius: inherit; }
.hero-tag {
  position: absolute; bottom: 18px; left: 18px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 12px;
  background: rgba(250,245,238,0.92); backdrop-filter: blur(6px); font-size: 13px; font-weight: 600;
}

.trust-row { display: flex; gap: 0; margin: 44px 0 84px; border-top: 1px solid rgba(32,28,44,0.1); border-bottom: 1px solid rgba(32,28,44,0.1); }
.trust-item { flex: 1; display: flex; align-items: center; gap: 12px; padding: 20px 24px; font-size: 14px; font-weight: 600; color: #3a3448; }
.trust-item + .trust-item { border-left: 1px solid rgba(32,28,44,0.1); }
.trust-item svg { flex: none; color: var(--accent); }

/* section shared */
.section { padding: 76px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block; }
.section-head h2 { font-size: 30px; max-width: 480px; }
.section-head p { color: #6b6558; font-size: 15px; max-width: 380px; line-height: 1.6; }

/* stores */
.stores-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.store-card {
  background: #ffffff; border-radius: 4px 4px 18px 18px; padding: 28px; border-top: 4px solid #ccc;
  display: flex; flex-direction: column; gap: 14px; box-shadow: 0 1px 2px rgba(32,28,44,0.04); transition: transform .18s ease, box-shadow .18s ease;
}
.store-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(32,28,44,0.1); }
.store-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9a9285; }
.store-card h3 { font-size: 20px; }
.store-addr { font-size: 14px; color: #6b6558; line-height: 1.5; }
.store-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--accent); text-decoration: none; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border-radius: 14px; background: #ffffff; box-shadow: 0 1px 2px rgba(32,28,44,0.04); }
.info-icon { width: 38px; height: 38px; border-radius: 10px; background: color-mix(in srgb, var(--accent) 12%, white); display: flex; align-items: center; justify-content: center; flex: none; color: var(--accent); }
.info-row b { display: block; font-size: 14px; margin-bottom: 3px; color: #201c2c; }
.info-row span, .info-row a { font-size: 13.5px; color: #6b6558; line-height: 1.5; }

.form-card { background: #ffffff; border-radius: 22px; padding: 34px; box-shadow: 0 1px 2px rgba(32,28,44,0.04); }
.form-card h3 { font-size: 20px; margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: #6b6558; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: #6b6558; margin-bottom: 8px; }
.field-input {
  width: 100%; font: inherit; font-size: 14.5px; color: #201c2c; background: #faf5ee; border-radius: 10px; padding: 13px 15px; outline: none;
  border: 1.5px solid transparent; box-sizing: border-box;
}
.field-input::placeholder { color: #a79f8f; }
.field-input:focus { background: #f2ebe0; }
.field-input.has-error { border-color: #c94f4f; }
.field-error { font-size: 12.5px; color: #c94f4f; margin-top: 7px; font-weight: 600; display: none; }
.field-error.show { display: block; }
.submit-btn {
  width: 100%; margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 15px; padding: 15px 20px; border-radius: 10px; border: none; cursor: pointer;
  transition: background .18s ease, opacity .18s ease;
}
.submit-btn:hover { background: color-mix(in srgb, var(--accent) 85%, #201c2c); }
.submit-btn[disabled] { opacity: 0.7; cursor: default; }
.spinner {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  animation: spin 0.75s linear infinite; display: none;
}
.spinner.show { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note { margin-top: 14px; font-size: 12px; color: #a79f8f; text-align: center; }

.field-consent { margin-bottom: 20px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: #3a3448; cursor: pointer; }
.checkbox-label input { margin: 3px 0 0; flex: none; width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.checkbox-label a { text-decoration: underline; }

.success-panel { display: none; flex-direction: column; align-items: flex-start; gap: 14px; padding: 12px 0 4px; }
.success-panel.show { display: flex; }
.success-icon {
  width: 52px; height: 52px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.success-panel h3 { font-size: 19px; }
.success-panel p { font-size: 14px; color: #6b6558; line-height: 1.6; }

/* footer */
footer { border-top: 1px solid rgba(32,28,44,0.1); padding: 40px 0 52px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
footer img { height: 24px; }
.footer-copy { font-size: 12.5px; color: #9a9285; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: #9a9285; text-decoration: underline; }
.footer-legal a:hover { color: #201c2c; }

/* cookie notice */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: -140px; max-width: 640px; margin: 0 auto;
  background: #201c2c; color: #faf5ee; padding: 20px 22px; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35); z-index: 50;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  transition: bottom .35s ease;
}
.cookie-banner.show { bottom: 20px; }
.cookie-banner p { font-size: 13px; line-height: 1.55; flex: 1; min-width: 220px; color: #e8e3da; margin: 0; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner button {
  flex: none; background: var(--accent); color: #fff; font-weight: 600; font-size: 13.5px; border: none; border-radius: 8px;
  padding: 10px 18px; cursor: pointer;
}
.cookie-banner button:hover { background: color-mix(in srgb, var(--accent) 85%, #201c2c); }

/* legal pages */
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 0 100px; }
.legal-content h1 { font-size: 32px; }
.legal-updated { font-size: 13px; color: #9a9285; margin: 8px 0 40px; }
.legal-content h2 { font-size: 19px; margin: 36px 0 12px; }
.legal-content h3 { font-size: 15.5px; margin: 22px 0 8px; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.7; color: #3a3448; }
.legal-content ul { padding-left: 20px; margin: 10px 0; }
.legal-content a { text-decoration: underline; }
.legal-placeholder { background: #fff1c2; color: #7a5c00; padding: 1px 6px; border-radius: 4px; font-weight: 700; }

/* tablet: 641-900px */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .topbar { padding: 16px 24px; }
  .topbar-info { display: none; }
  .hero { grid-template-columns: 1fr; padding: 44px 0 20px; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-frame { max-width: 560px; margin: 0 auto; }
  .hero h1 { font-size: 36px; max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .trust-row { margin: 32px 0 56px; }
  .stores-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* mobile: <=640px */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar { padding: 14px 20px; }
  .hero { padding: 36px 0 16px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-row { flex-direction: column; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(32,28,44,0.1); }
  .stores-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-head { align-items: flex-start; }
  .form-card { padding: 24px; }
}
