/* ============================================================
   MakersCorner – styles.css
   Material Design 60-30-10 colour system
   ============================================================ */

/* Google Fonts loaded in each HTML <head> */

:root {
  --cream:      #F9F6F0;
  --green:      #356245;
  --orange:     #D97638;
  --charcoal:   #3E3E3E;
  --text-light: #6B6B6B;
  --border:     #E0DED8;
  --white:      #ffffff;
}

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

html { font-size: 16px; }

/* Smooth scroll only on non-iOS (iOS conflicts with momentum scroll) */
@supports not (-webkit-touch-callout: none) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
}

/* ── Elevation ── */
.el1 { box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24); }
.el2 { box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12); }
.el3 { box-shadow: 0 10px 20px rgba(0,0,0,.15), 0 3px 6px rgba(0,0,0,.10); }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ── Sections ── */
.section-green  { background: var(--green);  color: white; }
.section-orange { background: var(--orange); color: white; }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }

/* ── Page routing ── */
.page         { display: none; }
.page.active  { display: block; }
main          { padding-top: 64px; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--cream);
  padding: 16px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
  transform: translateZ(0); /* GPU layer — prevents iOS repaint on scroll */
}
nav.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12);
}
.nav-inner   { display: flex; align-items: center; justify-content: space-between; }
.nav-logo    { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo span {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--charcoal);
}
.nav-links   { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  padding: 8px 24px; background: var(--orange); color: white !important;
  font-weight: 600; border-radius: 2px; transition: background .2s !important;
}
.nav-cta:hover { background: #c46a30 !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger svg { width: 28px; height: 28px; stroke: var(--charcoal); }

.mobile-menu { display: none; padding: 24px 0 16px; border-top: 1px solid var(--border); margin-top: 16px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; text-decoration: none; color: var(--charcoal); font-weight: 500; transition: color .2s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .m-cta { margin-top: 12px; padding: 12px; background: var(--orange); color: white !important; text-align: center; border-radius: 2px; font-weight: 600; }

@media (max-width: 1023px) {
  .nav-links  { display: none; }
  .hamburger  { display: block; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--orange); color: white;
  font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: .95rem;
  border-radius: 2px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
}
.btn-primary:hover {
  background: #c46a30;
  box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: 2px solid var(--orange); color: var(--orange);
  font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: .95rem;
  border-radius: 2px; text-decoration: none; cursor: pointer; background: transparent;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--orange); color: white; }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--green); color: white;
  font-weight: 600; font-family: 'Montserrat', sans-serif;
  border-radius: 2px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-green:hover { background: #2a4f38; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; background: white; color: var(--orange);
  font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 1.1rem;
  border-radius: 2px; text-decoration: none;
  transition: background .2s;
  box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--cream); }

/* ── Card ── */
.card {
  background: white; border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
  transition: box-shadow .2s;
}
.card:hover { box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12); }

/* ── Animations ── */
@keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scale-in { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }

.anim-fade  { animation: fade-in  .4s ease-out both; will-change: opacity; }
.anim-slide { animation: slide-up .5s ease-out both; will-change: opacity, transform; }
.anim-scale { animation: scale-in .4s ease-out both; will-change: opacity, transform; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Arrow icon ── */
.arrow-icon { width: 20px; height: 20px; transition: transform .2s; }
.btn-primary:hover .arrow-icon,
.btn-white:hover   .arrow-icon { transform: translateX(4px); }

/* ── Page header (shared) ── */
.page-header { padding: 80px 0; text-align: center; }
.page-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.page-header p  { font-size: 1.1rem; opacity: .9; max-width: 600px; margin: 0 auto; }

/* ── Section titles ── */
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; text-align: center; }
.section-sub   { font-size: 1.1rem; text-align: center; max-width: 600px; margin: 0 auto; opacity: .9; }

/* ============================================================
   HOME
   ============================================================ */
.hero {
  padding: 80px 0;
  min-height: calc(100svh - 64px);
  min-height: calc(100vh  - 64px); /* fallback */
  display: flex; align-items: center;
}
@supports (min-height: 100svh) {
  .hero { min-height: calc(100svh - 64px); }
}
.hero-grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(53,98,69,.1); color: var(--green);
  font-size: .8rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
  border-radius: 2px; margin-bottom: 24px; letter-spacing: .05em; text-transform: uppercase;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; line-height: 1.05; margin-bottom: 24px; }
.hero h1 .accent-orange { color: var(--orange); }
.hero h1 .accent-green  { color: var(--green); }
.hero-sub      { font-size: 1.2rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.hero-question { font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin-bottom: 40px; }
.hero-btns     { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-image-wrap {
  aspect-ratio: 1; border-radius: 2px; overflow: visible;
  background: white; padding: 32px; position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,.15), 0 3px 6px rgba(0,0,0,.10);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: contain; }

.quality-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: white; padding: 16px 24px; border-radius: 2px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12);
}
.quality-badge svg   { width: 24px; height: 24px; color: var(--orange); }
.quality-badge .label { font-size: .75rem; color: var(--text-light); }
.quality-badge .value { font-weight: 700; color: var(--charcoal); font-size: .9rem; }

/* Philosophy */
.philosophy     { padding: 96px 0; position: relative; overflow: hidden; }
.philosophy-bg  {
  position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}
.philosophy-grid { display: grid; gap: 48px; margin-top: 64px; }
@media (min-width: 768px) { .philosophy-grid { grid-template-columns: repeat(3, 1fr); } }
.philosophy-card { text-align: center; }
.icon-box {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: rgba(255,255,255,.1); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.philosophy-card:hover .icon-box { background: var(--orange); }
.icon-box svg { width: 40px; height: 40px; }

/* Featured */
.featured       { padding: 96px 0; }
.featured-inner { display: grid; gap: 48px; align-items: center; padding: 32px 48px; }
@media (min-width: 1024px) { .featured-inner { grid-template-columns: 1fr 1fr; } }
.featured-img   { aspect-ratio: 1; background: var(--cream); border-radius: 2px; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: contain; }

.in-stock {
  display: inline-block; padding: 4px 12px;
  background: rgba(217,118,56,.1); color: var(--orange);
  font-size: .8rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
  border-radius: 2px; margin-bottom: 16px;
}
.product-title  { font-size: 2rem;   color: var(--charcoal); margin-bottom: 8px; }
.product-price  { font-size: 2rem;   font-weight: 700; color: var(--orange); margin-bottom: 24px; }
.feature-list   { list-style: none;  margin-bottom: 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-light); padding: 6px 0; }
.dot-wrap { width: 24px; height: 24px; border-radius: 50%; background: rgba(53,98,69,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.dot      { width: 8px;  height: 8px;  border-radius: 50%; background: var(--green); }

/* CTA banner */
.cta-banner         { padding: 96px 0; text-align: center; }
.cta-banner h2      { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.cta-banner p       { font-size: 1.3rem; margin-bottom: 40px; opacity: .95; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { padding: 80px 0; }
.grid { display: grid; gap: 48px; }
@media (min-width: 768px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: white; border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.06);
  overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,.15), 0 3px 8px rgba(0,0,0,.08); }
.product-img        { aspect-ratio: 1; background: var(--cream); overflow: hidden; }
.product-img img    { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.product-card:hover .product-img img { opacity: .9; }
.product-info       { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-info h3    { font-size: 1.5rem; color: var(--green); margin-bottom: 8px; }
.product-info .price { font-size: 2rem; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.product-info .dims { font-size: .85rem; color: rgba(53,98,69,.6); margin-bottom: 24px; }
.product-features   { list-style: none; margin-bottom: 32px; flex: 1; }
.product-features li { display: flex; align-items: flex-start; gap: 8px; color: rgba(53,98,69,.8); padding: 4px 0; font-size: .9rem; }
.sq { color: var(--orange); margin-top: 4px; font-size: .6rem; }

.inquire-btn {
  display: block; width: 100%; text-align: center; padding: 16px;
  background: var(--green); color: white; font-weight: 600; font-family: 'Montserrat', sans-serif;
  text-decoration: none; transition: background .2s; border-radius: 2px;
}
.inquire-btn:hover { background: var(--orange); }

.custom-cta    { padding: 80px 0; text-align: center; }
.custom-cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: 16px; }
.custom-cta p  { font-size: 1.1rem; color: rgba(53,98,69,.7); margin-bottom: 48px; }

/* ============================================================
   GENERATOR
   ============================================================ */
.features-4grid { display: grid; gap: 32px; margin-bottom: 64px; }
@media (min-width: 768px)  { .features-4grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .features-4grid { grid-template-columns: repeat(4, 1fr); } }

.feat-card { background: white; padding: 32px; text-align: center; box-shadow: 0 3px 12px rgba(0,0,0,.08); }
.feat-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: rgba(217,118,56,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 32px; height: 32px; color: var(--orange); }
.feat-card h3  { font-size: 1.15rem; color: var(--green); margin-bottom: 8px; }
.feat-card p   { font-size: .9rem; color: rgba(53,98,69,.7); line-height: 1.5; }

.specs-box    { background: white; padding: 48px; box-shadow: 0 3px 12px rgba(0,0,0,.08); border-radius: 4px; margin-bottom: 64px; }
.specs-box h3 { font-size: 1.8rem; color: var(--green); text-align: center; margin-bottom: 32px; }
.specs-grid   { display: grid; gap: 48px; }
@media (min-width: 768px) { .specs-grid { grid-template-columns: 1fr 1fr; } }
.specs-grid h4 { font-size: 1.15rem; color: var(--green); margin-bottom: 16px; }
.spec-list    { list-style: none; }
.spec-list li { display: flex; align-items: flex-start; gap: 8px; color: rgba(53,98,69,.8); padding: 4px 0; }

.gen-cta      { text-align: center; }
.gen-cta h3   { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.gen-cta p    { font-size: 1.1rem; color: rgba(53,98,69,.7); margin-bottom: 32px; }
.gen-cta .hint { margin-top: 24px; font-size: .9rem; color: rgba(53,98,69,.6); }

.how-it-works    { padding: 80px 0; }
.how-it-works h2 { font-size: clamp(2rem, 4vw, 2.5rem); color: var(--green); text-align: center; margin-bottom: 48px; }
.steps           { max-width: 720px; margin: 0 auto; }
.step            { display: flex; gap: 24px; margin-bottom: 32px; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--orange); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; font-family: 'Montserrat', sans-serif;
}
.step h3 { font-size: 1.3rem; color: var(--green); margin-bottom: 8px; }
.step p  { color: rgba(53,98,69,.7); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.story-section   { padding: 80px 0; }
.story-inner     { max-width: 900px; margin: 0 auto; }
.story-inner h2  { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--green); margin-bottom: 32px; }
.story-inner p   { font-size: 1.15rem; color: rgba(53,98,69,.8); line-height: 1.8; margin-bottom: 24px; }

.approach-grid   { display: grid; gap: 48px; }
@media (min-width: 768px) { .approach-grid { grid-template-columns: repeat(3, 1fr); } }
.approach-card   { text-align: center; }
.approach-icon   {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: rgba(217,118,56,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.approach-icon svg { width: 40px; height: 40px; color: var(--orange); }
.approach-card h3  { font-size: 1.4rem; color: var(--green); margin-bottom: 12px; }
.approach-card p   { color: rgba(53,98,69,.7); line-height: 1.6; }

.vision-text { font-size: 1.5rem; line-height: 1.7; opacity: .9; max-width: 800px; margin: 0 auto 48px; text-align: center; }
.vision-sub  { font-size: 1.1rem; opacity: .8; margin-bottom: 48px; text-align: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: 64px; max-width: 1100px; margin: 0 auto; padding: 80px 0; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info      { }
.contact-info h2   { font-size: 2rem; color: var(--green); margin-bottom: 24px; }
.contact-info > p  { font-size: 1.1rem; color: rgba(53,98,69,.7); margin-bottom: 48px; line-height: 1.6; }
.contact-items     { display: flex; flex-direction: column; gap: 32px; }
.contact-item      { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(217,118,56,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg   { width: 24px; height: 24px; color: var(--orange); }
.ci-text h3    { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.ci-text p,
.ci-text a     { color: rgba(53,98,69,.7); text-decoration: none; line-height: 1.5; }
.ci-text a:hover { color: var(--orange); }

.response-box    { margin-top: 48px; padding: 32px; background: rgba(53,98,69,.05); border-radius: 4px; }
.response-box h3 { font-weight: 700; color: var(--green); margin-bottom: 8px; }
.response-box p  { color: rgba(53,98,69,.7); line-height: 1.5; }

.contact-form-wrap     { background: white; padding: 32px; border-radius: 4px; box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.contact-form-wrap h2  { font-size: 1.5rem; color: var(--green); margin-bottom: 24px; }
.form-field            { margin-bottom: 24px; }
.form-field label      { display: block; font-weight: 600; color: var(--green); margin-bottom: 8px; font-size: .9rem; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(53,98,69,.2); border-radius: 0;
  font-family: 'Open Sans', sans-serif; font-size: 1rem; color: var(--charcoal);
  background: white; transition: border-color .2s; -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--orange); }
.form-field textarea     { resize: none; }

.submit-btn {
  width: 100%; padding: 16px; background: var(--orange); color: white;
  font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 1rem;
  border: none; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.submit-btn:hover    { background: var(--green); }
.submit-btn:disabled { background: rgba(53,98,69,.5); cursor: not-allowed; }

.form-success {
  padding: 16px; background: #dcfce7; border: 2px solid #16a34a;
  color: #166534; border-radius: 4px; margin-top: 16px; display: none;
}
.form-success.show { display: block; }

/* ============================================================
   LEGAL (Privacy / Terms)
   ============================================================ */
.legal-content     { max-width: 900px; margin: 0 auto; padding: 80px 0; }
.legal-content h2  { font-size: 1.8rem; color: var(--charcoal); margin: 48px 0 16px; }
.legal-content h3  { font-size: 1.25rem; color: var(--charcoal); margin: 28px 0 12px; }
.legal-content p   { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul  { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }
.legal-content a   { color: var(--orange); }

/* ============================================================
   TERMS MODAL
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 200;
  align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; animation: fade-in .2s ease-out; }

.modal-box {
  max-width: 760px; width: 100%;
  max-height: min(95svh, 95vh);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--cream); border-radius: 2px;
}
.modal-inner {
  background: white; margin: 16px; border-radius: 2px; padding: 48px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,.15), 0 3px 6px rgba(0,0,0,.10);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer; color: var(--text-light);
  transition: color .2s; padding: 4px;
}
.modal-close:hover { color: var(--orange); }
.modal-close svg   { width: 24px; height: 24px; }

.modal-warn-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: rgba(217,118,56,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.modal-warn-icon svg { width: 48px; height: 48px; color: var(--orange); }
.modal-title { font-size: 2rem; text-align: center; color: var(--charcoal); margin-bottom: 24px; }

.modal-notice {
  background: rgba(217,118,56,.05); border-left: 4px solid var(--orange);
  padding: 24px; border-radius: 0 2px 2px 0; margin-bottom: 32px;
}
.modal-notice h3   { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 12px; }
.modal-notice p    { color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.modal-notice p.bold { font-weight: 600; }

.modal-acks    { margin-bottom: 32px; }
.modal-acks h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 16px; }
.ack-item      { display: flex; align-items: flex-start; gap: 12px; color: var(--text-light); padding: 6px 0; }
.ack-dot-wrap  { width: 24px; height: 24px; border-radius: 50%; background: rgba(53,98,69,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ack-dot       { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.modal-terms-link   { background: var(--cream); padding: 16px; border-radius: 2px; text-align: center; margin-bottom: 32px; }
.modal-terms-link p { color: var(--text-light); margin-bottom: 8px; font-size: .9rem; }
.modal-terms-link a { color: var(--orange); font-weight: 600; text-decoration: underline; }
.modal-terms-link a:hover { color: var(--green); }

.modal-checkbox       { margin-bottom: 32px; }
.modal-checkbox label { display: flex; align-items: flex-start; gap: 16px; cursor: pointer; }
.modal-checkbox input { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.modal-checkbox span  { color: var(--text-light); line-height: 1.6; }

.modal-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .modal-actions { flex-direction: row; } }

.modal-accept {
  flex: 1; padding: 16px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  border: none; cursor: pointer; border-radius: 2px; transition: background .2s, box-shadow .2s;
  background: #d1d5db; color: #9ca3af;
}
.modal-accept.ready {
  background: var(--orange); color: white;
  box-shadow: 0 3px 6px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.12);
}
.modal-accept.ready:hover { background: #c46a30; }

.modal-decline {
  flex: 1; padding: 16px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  border: 2px solid var(--green); color: var(--green); background: white;
  cursor: pointer; border-radius: 2px; transition: background .2s, color .2s;
}
.modal-decline:hover { background: var(--green); color: white; }

.modal-footer-note { font-size: .8rem; color: var(--text-light); text-align: center; margin-top: 16px; font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: white; border-top: 1px solid var(--border); }
.footer-inner  { padding-top: 64px; padding-bottom: 32px; }
.footer-grid   { display: grid; gap: 48px; margin-bottom: 64px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand img { display: block; height: 98px; object-fit: contain; margin-left: -30px; margin-bottom: -16px; margin-top: -28px;}
.footer-brand p   { color: var(--text-light); font-size: 1.17rem; line-height: 1.6; }

.footer-col       { }
.footer-col h3    { font-size: 1rem; color: var(--charcoal); margin-bottom: 24px; }
.footer-col ul    { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a   { text-decoration: none; color: var(--text-light); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li span { color: var(--text-light); font-size: .9rem; }

.footer-contact-item     { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a   { text-decoration: none; color: var(--text-light); transition: color .2s; font-size: .9rem; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item span { color: var(--text-light); font-size: .9rem; }

.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-bottom p   { color: var(--text-light); font-size: .85rem; }
.footer-legal      { display: flex; gap: 24px; }
.footer-legal a    { text-decoration: none; color: var(--text-light); font-size: .85rem; transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }

/* ── Scrollbar ── */
::-webkit-scrollbar        { width: 8px; height: 8px; }
::-webkit-scrollbar-track  { background: var(--cream); }
::-webkit-scrollbar-thumb  { background: var(--green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Focus & selection ── */
button:focus-visible, a:focus-visible,
input:focus-visible, textarea:focus-visible,
select:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

::selection { background-color: var(--orange); color: white; }
