/* ================= TOKENS ================= */
:root{
  --ink:#1B1B17;            /* near-black, warm */
  --ink-soft:#6B665C;
  --paper:#F7F4EE;          /* warm off-white */
  --paper-deep:#EFEAE0;
  --rust:#C1502E;           /* refined terracotta — used sparingly */
  --rust-dark:#A23F22;
  --olive:#6B7654;          /* muted sage, secondary accent */
  --wood:#B98655;           /* warm wood tone for media panels */
  --wood-dark:#8C633C;
  --line:rgba(27,27,23,0.10);
  --line-soft:rgba(27,27,23,0.06);
  --radius-lg:22px;
  --radius:12px;
  --radius-sm:8px;
  --shadow-lg:0 30px 70px -28px rgba(27,27,23,0.28);
  --shadow:0 16px 36px -16px rgba(27,27,23,0.22);
  --max:1200px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  font-size:16px;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;}
.wrap{max-width:var(--max);margin:0 auto;padding:0 40px;}
h1,h2,h3{font-family:'Fraunces', serif;font-weight:600;margin:0;letter-spacing:-0.015em;}
h1 em,h2 em{font-style:italic;font-weight:500;color:var(--rust);}
.mono{font-family:'IBM Plex Mono', monospace;}
:focus-visible{outline:2px solid var(--rust);outline-offset:3px;border-radius:4px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ================= NAV ================= */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(247,244,238,0.85);
  backdrop-filter:blur(10px) saturate(1.1);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:22px 40px;}
.logo{display:flex;align-items:center;text-decoration:none;color:var(--ink);}
.logo img{height:192px;width:auto;display:block;}
nav.links{display:flex;gap:40px;font-size:0.95rem;font-weight:500;}
nav.links a{text-decoration:none;position:relative;padding-bottom:4px;color:var(--ink-soft);transition:color .2s ease;}
nav.links a:hover,nav.links a.active{color:var(--ink);}
nav.links a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--rust);transition:width .25s ease;border-radius:2px;}
nav.links a:hover::after,nav.links a.active::after{width:100%;}
.nav-cta{
  font-family:'Inter', sans-serif;font-weight:600;font-size:0.88rem;
  padding:11px 22px;background:var(--ink);color:var(--paper);border-radius:999px;
  text-decoration:none;white-space:nowrap;
  transition:background .2s ease, transform .2s ease;
}
.nav-cta:hover{background:var(--rust);transform:translateY(-1px);}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px;}
.menu-toggle span{display:block;width:22px;height:2px;background:var(--ink);margin:5px 0;border-radius:2px;}

@media (max-width: 820px){
  nav.links{display:none;}
  .menu-toggle{display:block;}
  .nav-cta{display:none;}
  .logo img{height:48px;}
}

/* ================= HERO ================= */
.hero{padding:108px 0 100px;}
.hero .wrap.hero-split{display:grid;grid-template-columns:1.05fr 0.95fr;gap:72px;align-items:center;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;font-size:0.76rem;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--rust);font-weight:500;
  display:flex;align-items:center;gap:10px;margin-bottom:24px;
}
.eyebrow::before{content:"";width:24px;height:1px;background:var(--rust);}
h1.display{font-size:clamp(2.6rem, 4.6vw, 4.4rem);line-height:1.04;color:var(--ink);}
.lede{margin:28px 0 38px;font-size:1.18rem;line-height:1.65;color:var(--ink-soft);max-width:540px;}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Inter', sans-serif;font-weight:600;font-size:0.94rem;
  padding:15px 28px;border-radius:999px;text-decoration:none;cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;border:1px solid transparent;
}
.btn-primary{background:var(--ink);color:var(--paper);}
.btn-primary:hover{background:var(--rust);transform:translateY(-2px);box-shadow:var(--shadow);}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--ink);}
.btn-ghost:hover{background:var(--ink);color:var(--paper);}
.cta-row{display:flex;gap:16px;flex-wrap:wrap;align-items:center;}

/* ================= HERO MEDIA — abstract wood-module visual ================= */
.hero-visual{
  position:relative;border-radius:var(--radius-lg);
  background:linear-gradient(160deg,#D9B486 0%,#B98655 55%,#8C633C 100%);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3.4;
  overflow:hidden;
}
.hero-visual::before{
  content:"";position:absolute;inset:0;
  background-image:repeating-linear-gradient(95deg, rgba(255,255,255,0.07) 0px, rgba(255,255,255,0.07) 2px, transparent 2px, transparent 9px);
  mix-blend-mode:overlay;
  pointer-events:none;
}
.hero-visual img,
.hero-visual video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}
.hero-visual .tag{
  position:absolute;bottom:24px;left:24px;
  background:rgba(27,27,23,0.85);color:var(--paper);
  font-family:'IBM Plex Mono', monospace;font-size:0.72rem;
  padding:8px 14px;border-radius:999px;letter-spacing:0.02em;
}

@media (max-width: 920px){
  .hero .wrap.hero-split{grid-template-columns:1fr;gap:48px;}
  .hero{padding:72px 0 64px;}
}

/* ================= DIMENSION CALLOUT ================= */
.dim{
  font-family:'IBM Plex Mono', monospace;font-size:0.85rem;
  color:var(--ink-soft);letter-spacing:0.01em;
}
.dim b{color:var(--ink);font-weight:600;}

/* ================= SECTION shared ================= */
section{padding:104px 0;}
.section-head{max-width:640px;margin-bottom:60px;}
.section-head h2{font-size:clamp(2rem,3.2vw,2.8rem);line-height:1.12;}
.section-head p{margin-top:18px;font-size:1.08rem;color:var(--ink-soft);line-height:1.6;}

/* ================= PRODUCT SPLIT (index) ================= */
.split-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;}
.split-card{
  background:#fff;border-radius:var(--radius-lg);overflow:hidden;
  display:flex;flex-direction:column;box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.split-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.split-card .art{aspect-ratio:4/3;position:relative;overflow:hidden;}
.split-card .body{padding:32px 32px 36px;}
.split-card .tag{font-family:'IBM Plex Mono', monospace;font-size:0.74rem;text-transform:uppercase;letter-spacing:0.08em;color:var(--rust);font-weight:500;}
.split-card h3{font-size:1.55rem;margin:12px 0 14px;}
.split-card p{margin:0 0 22px;color:var(--ink-soft);line-height:1.6;font-size:0.98rem;}
.split-card a.link{font-family:'Inter';font-weight:600;font-size:0.92rem;text-decoration:none;color:var(--ink);display:inline-flex;align-items:center;gap:6px;}
.split-card a.link:hover{color:var(--rust);}
@media (max-width: 760px){ .split-grid{grid-template-columns:1fr;} }

/* real photos fill the .art panels */
.art img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}
/* fallback panel for products without a photo yet */
.art-placeholder{background:linear-gradient(150deg,#3E4D3A 0%,#27331F 100%);}
.art-icon{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;}

/* ================= SPEC LIST ================= */
.spec-list{border-top:1px solid var(--ink);}
.spec-row{
  display:grid;grid-template-columns:200px 1fr;gap:24px;
  padding:28px 0;border-bottom:1px solid var(--line-soft);align-items:baseline;
}
.spec-row .k{font-family:'IBM Plex Mono', monospace;font-size:0.78rem;color:var(--rust);text-transform:uppercase;letter-spacing:0.07em;font-weight:500;}
.spec-row .v{font-size:1.04rem;color:var(--ink-soft);line-height:1.55;}
.spec-row .v b{color:var(--ink);font-weight:600;}
@media (max-width:700px){ .spec-row{grid-template-columns:1fr;gap:8px;} }

/* ================= MOUNT CARDS ================= */
.mount-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
.mount-card{background:#fff;padding:36px 32px;border-radius:var(--radius-lg);box-shadow:var(--shadow);}
.mount-card .icon-stage{
  width:100%;aspect-ratio:5/3;border-radius:var(--radius);margin-bottom:24px;
  background:var(--paper-deep);display:flex;align-items:center;justify-content:center;
}
.mount-card .photo-stage{
  width:100%;aspect-ratio:5/4;border-radius:var(--radius);margin-bottom:24px;
  overflow:hidden;background:var(--paper-deep);
}
.mount-card .photo-stage img{
  width:100%;height:100%;object-fit:cover;object-position:center;
}
.mount-card h4{font-family:'Fraunces',serif;font-size:1.3rem;font-weight:600;margin:0 0 10px;text-align:center;}
.mount-card p{margin:0;color:var(--ink-soft);font-size:0.96rem;text-align:center;line-height:1.6;}
@media (max-width:700px){ .mount-grid{grid-template-columns:1fr;} }

/* ================= CONFIGURATOR — signature element ================= */
.configurator{background:var(--ink);color:var(--paper);border-radius:var(--radius-lg);margin:0 auto;max-width:var(--max);}
.configurator-outer{padding:0 40px;}
.configurator .section-head p{color:#B8B2A4;}
.configurator .section-head h2{
  font-size:clamp(2.3rem,3.6vw,3.1rem);font-weight:700;color:var(--wood);
}
.configurator .section-head h2 em{font-style:italic;}
.configurator .eyebrow{color:var(--wood);}
.configurator .eyebrow::before{background:var(--wood);}
.configurator .wrap{padding:88px 56px;max-width:none;}
.config-layout{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;}
.config-controls .field{margin-bottom:32px;}
.config-controls label.field-label{
  display:block;font-family:'IBM Plex Mono', monospace;font-size:0.76rem;
  text-transform:uppercase;letter-spacing:0.07em;color:var(--wood);margin-bottom:14px;font-weight:500;
}
.seg{display:flex;gap:4px;background:rgba(247,244,238,0.08);border-radius:999px;padding:4px;}
.seg button{
  flex:1;padding:12px 16px;background:transparent;border:none;color:var(--paper);
  font-family:'Inter';font-weight:600;font-size:0.9rem;cursor:pointer;transition:background .15s ease;border-radius:999px;
}
.seg button.is-active{background:var(--rust);}
.stepper{display:flex;align-items:center;gap:20px;}
.stepper button{
  width:44px;height:44px;border-radius:50%;border:1px solid rgba(247,244,238,0.25);
  background:rgba(247,244,238,0.06);color:var(--paper);font-size:1.3rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;transition:background .15s ease, border-color .15s ease;
}
.stepper button:hover{background:rgba(247,244,238,0.16);border-color:rgba(247,244,238,0.45);}
.stepper .count{font-family:'Fraunces', serif;font-weight:600;font-size:1.9rem;min-width:38px;text-align:center;}
.stepper .unit{font-size:0.88rem;color:#B8B2A4;}

.config-preview{
  background:rgba(247,244,238,0.04);border:1px solid rgba(247,244,238,0.12);
  padding:40px;border-radius:var(--radius);display:flex;flex-direction:column;align-items:center;gap:28px;
}
#moduleGrid{
  display:grid;gap:8px;
  justify-content:center;
}
.module-box{
  width:58px;height:58px;border-radius:10px;
  background:linear-gradient(150deg,#D9B486, #B98655);
  box-shadow:0 8px 18px -8px rgba(0,0,0,0.5);
  display:flex;align-items:center;justify-content:center;
  font-family:'IBM Plex Mono', monospace;font-size:0.6rem;color:#3a2a18;
  animation:boxIn .3s ease;
}
@keyframes boxIn{from{opacity:0;transform:scale(0.7) translateY(6px);}to{opacity:1;transform:scale(1) translateY(0);}}
.stand-note{font-family:'IBM Plex Mono', monospace;font-size:0.74rem;color:var(--wood);text-align:center;}

.summary-table{width:100%;border-top:1px solid rgba(247,244,238,0.16);}
.summary-row{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid rgba(247,244,238,0.08);font-size:0.94rem;}
.summary-row span:last-child{font-family:'IBM Plex Mono', monospace;color:var(--wood);}

.order-form{margin-top:56px;border-top:1px solid rgba(247,244,238,0.16);padding-top:48px;}
.order-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.order-grid .full{grid-column:1 / -1;}
.field-input label{display:block;font-family:'IBM Plex Mono', monospace;font-size:0.74rem;text-transform:uppercase;letter-spacing:0.05em;color:var(--wood);margin-bottom:10px;font-weight:500;}
.field-input input,.field-input textarea{
  width:100%;background:rgba(247,244,238,0.06);border:1px solid rgba(247,244,238,0.22);
  color:var(--paper);padding:13px 16px;border-radius:var(--radius-sm);font-family:'Inter';font-size:0.96rem;
}
.field-input textarea{resize:vertical;min-height:96px;}
.field-input input::placeholder,.field-input textarea::placeholder{color:#8E8979;}
.order-form .btn-primary{background:var(--rust);color:var(--paper);margin-top:26px;}
.order-form .btn-primary:hover{background:#D9683F;}
.form-note{font-family:'IBM Plex Mono', monospace;font-size:0.78rem;color:#B8B2A4;margin-top:16px;}
@media (max-width:880px){ .config-layout{grid-template-columns:1fr;} .order-grid{grid-template-columns:1fr;} .configurator .wrap{padding:64px 32px;} .system-card{padding:26px;} }
@media (max-width:600px){ .configurator-outer{padding:0 16px;} }

/* ================= GALLERY (utemøbler) ================= */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));gap:28px;}
.gallery-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:transform .25s ease, box-shadow .25s ease;}
.gallery-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.gallery-card .art{aspect-ratio:1;position:relative;overflow:hidden;}
.gallery-card .body{padding:24px 26px 28px;}
.gallery-card h3{font-size:1.25rem;margin-bottom:10px;}
.gallery-card p{margin:0;color:var(--ink-soft);font-size:0.93rem;line-height:1.55;}
.gallery-card .status{
  display:inline-block;margin-top:14px;font-family:'IBM Plex Mono', monospace;
  font-size:0.7rem;text-transform:uppercase;letter-spacing:0.06em;color:var(--olive);font-weight:500;
}
@media (max-width:900px){ .gallery-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:600px){ .gallery-grid{grid-template-columns:1fr;} }

/* ================= INQUIRY FORM ================= */
.inquiry{background:#fff;padding:44px;max-width:660px;border-radius:var(--radius-lg);box-shadow:var(--shadow);}
.inquiry .order-grid .field-input label{color:var(--rust);}
.inquiry .field-input input,.inquiry .field-input textarea, .inquiry select{
  background:var(--paper);border:1px solid var(--line);color:var(--ink);border-radius:var(--radius-sm);
  width:100%;padding:13px 16px;font-family:'Inter';font-size:0.96rem;
}
.inquiry .field-input input::placeholder,.inquiry .field-input textarea::placeholder{color:var(--ink-soft);}
.inquiry .btn-primary{margin-top:22px;}

/* ================= CRAFT STORY (index) ================= */
.craft{background:var(--paper-deep);}
.craft-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:64px;align-items:center;}
.craft-grid .art{aspect-ratio:5/4;border-radius:var(--radius-lg);box-shadow:var(--shadow);background:linear-gradient(155deg,#D9B486,#8C633C);position:relative;overflow:hidden;}
@media (max-width:880px){ .craft-grid{grid-template-columns:1fr;} }

/* ================= PROOF BAR (index) ================= */
.proof-bar{background:var(--ink);color:var(--paper);padding:44px 0;}
.proof-bar-inner{display:flex;align-items:center;gap:32px;flex-wrap:wrap;}
.proof-figure{font-family:'Fraunces', serif;font-size:2.6rem;font-weight:700;color:var(--rust);line-height:1;}
.proof-bar-inner p{margin:0;font-size:1.05rem;color:#D8D3C5;max-width:560px;line-height:1.5;}

/* ================= WHY CHOOSE KASSVERK (index) ================= */
.why-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:8px 48px;}
.why-list li{
  display:flex;align-items:baseline;gap:14px;font-size:1.06rem;color:var(--ink-soft);
  padding:16px 0;border-bottom:1px solid var(--line-soft);
}
.why-list li::before{content:"✔";color:var(--rust);font-weight:700;flex-shrink:0;}
@media (max-width:700px){ .why-list{grid-template-columns:1fr;} }

/* ================= PULL QUOTE (om-kassverk) ================= */
.pull-quote{padding:88px 0;}
.pull-quote .wrap{max-width:760px;text-align:center;}
.pull-quote p{
  font-family:'Fraunces', serif;font-style:italic;font-weight:500;
  font-size:clamp(1.4rem,2.6vw,2rem);line-height:1.45;color:var(--ink);margin:0;
}

/* Tighter rhythm for the short text sections on the Om Kassverk page —
   the default 104px section padding reads as too much air between short paragraphs. */
body.page-om #navnet,
body.page-om #tankegangen{padding:56px 0;}
body.page-om #navnet .section-head,
body.page-om #tankegangen .section-head{margin-bottom:36px;}
body.page-om .pull-quote{padding:56px 0;}
body.page-om .hero{padding-bottom:56px;}

/* ================= FINAL CTA (index) ================= */
.final-cta{background:var(--ink);color:var(--paper);text-align:center;}
.final-cta .eyebrow{justify-content:center;color:var(--wood);}
.final-cta .eyebrow::before{background:var(--wood);}
.final-cta h2{color:var(--paper);max-width:740px;margin:0 auto;font-size:clamp(1.9rem,3.2vw,2.5rem);line-height:1.2;}
.final-cta .lede{color:#C9C2AE;max-width:520px;margin:18px auto 0;text-align:center;}
.final-cta .cta-row{justify-content:center;margin-top:32px;}
.final-cta .btn-primary{background:var(--rust);border-color:var(--rust);}
.final-cta .btn-primary:hover{background:var(--rust-dark);}

/* ================= FOOTER ================= */
footer{padding:64px 0 44px;border-top:1px solid var(--line);background:var(--ink);color:var(--paper);}
footer .wrap{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:32px;}
footer .logo{color:var(--paper);margin-bottom:10px;}
footer .logo img{height:140px;}
@media (max-width: 820px){ footer .logo img{height:40px;} }
footer .col h4{font-family:'IBM Plex Mono', monospace;font-size:0.72rem;text-transform:uppercase;letter-spacing:0.06em;color:#8E8979;margin:0 0 16px;font-weight:500;}
footer .col a{display:block;text-decoration:none;font-size:0.94rem;padding:6px 0;color:var(--paper);transition:color .15s ease;}
footer .col a:hover{color:var(--wood);}
footer .cols{display:flex;gap:64px;flex-wrap:wrap;}
footer .bottom{margin-top:48px;font-family:'IBM Plex Mono', monospace;font-size:0.78rem;color:#8E8979;}
footer p.tagline{color:#B8B2A4;font-size:0.94rem;margin-top:0;max-width:280px;line-height:1.55;}

/* ================= EQUESTRIAN THEME — fôringssystem.html only ================= */
/* Saddle leather, brass hardware, hunter green — swapped in via CSS variables so the
   rest of the site (index, utemøbler) stays on the neutral default palette. */
body[data-theme="equestrian"]{
  --rust:#A8651F;       /* saddle tan / cognac leather — kept light enough to read clearly against the near-black default */
  --rust-dark:#824D17;
  --wood:#D4A33D;       /* brass hardware */
  --wood-dark:#A87E2C;
  --olive:#3F5C3F;       /* hunter green */
}
body[data-theme="equestrian"] .module-box{
  background:linear-gradient(150deg,#D9B97A,#B68A3D);
}
body[data-theme="equestrian"] .eyebrow::before{
  width:20px;height:20px;background:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5C7.6 2.5 5.3 6.2 5.3 10.2c0 3 1.1 5.2 3.1 7.1l-1.9 4.7 2.8-1 1.4-3.2h2.6l1.4 3.2 2.8 1-1.9-4.7c2-1.9 3.1-4.1 3.1-7.1 0-4-2.3-7.7-6.7-7.7zm-3.6 7.6a3.6 3.6 0 1 1 7.2 0 3.6 3.6 0 0 1-7.2 0z' fill='%236F4427'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat;
}

/* Header & buttons switch from black/terracotta to leather + brass on this page */
body[data-theme="equestrian"] header.site{
  background:rgba(247,244,238,0.9);
  border-bottom:1px solid rgba(111,68,39,0.25);
}
body[data-theme="equestrian"] nav.links a::after{background:var(--rust);}
body[data-theme="equestrian"] .nav-cta{background:var(--rust);}
body[data-theme="equestrian"] .nav-cta:hover{background:var(--rust-dark);}
body[data-theme="equestrian"] .btn-primary{background:var(--rust);border-color:var(--rust);}
body[data-theme="equestrian"] .btn-primary:hover{background:var(--rust-dark);box-shadow:0 16px 36px -16px rgba(111,68,39,0.45);}
body[data-theme="equestrian"] .btn-ghost{border-color:var(--rust);color:var(--rust);}
body[data-theme="equestrian"] .btn-ghost:hover{background:var(--rust);color:var(--paper);}
body[data-theme="equestrian"] .spec-list{border-top-color:var(--rust);}
body[data-theme="equestrian"] .mount-card .icon-stage{background:#EFE3D1;}
body[data-theme="equestrian"] .order-form .btn-primary:hover{background:var(--rust-dark);}

/* Warm saddlery cream replaces the neutral paper background on this page only */
body[data-theme="equestrian"]{background:#F1E6D2;}
body[data-theme="equestrian"] .craft,
body[data-theme="equestrian"] .mount-card{background:#EADFC7;}
body[data-theme="equestrian"] .config-preview{
  background:rgba(212,163,61,0.06);
  border-color:rgba(212,163,61,0.22);
}

/* Brass nameplate strip under the nav */
body[data-theme="equestrian"] header.site{
  background:#F1E6D2;
  border-bottom:3px solid var(--wood);
  box-shadow:0 1px 0 rgba(111,68,39,0.2);
}

/* Hero becomes a dark hunter-green stable plaque, not the light split layout */
body[data-theme="equestrian"] .hero{
  position:relative;overflow:hidden;
  background:linear-gradient(165deg,#27392B 0%,#1B2A1F 100%);
  border-radius:0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom:8px;
}
body[data-theme="equestrian"] .hero .eyebrow{color:var(--wood);}
body[data-theme="equestrian"] .hero .eyebrow::before{background:var(--wood);}
body[data-theme="equestrian"] .hero h1.display{color:#F1E6D2;}
body[data-theme="equestrian"] .hero h1.display em{color:var(--wood);}
body[data-theme="equestrian"] .hero .lede{color:#C9C2AE;}
body[data-theme="equestrian"] .hero .btn-ghost{border-color:#F1E6D2;color:#F1E6D2;}
body[data-theme="equestrian"] .hero .btn-ghost:hover{background:#F1E6D2;color:#1B2A1F;}
body[data-theme="equestrian"] .hero::before{
  content:"";position:absolute;top:-80px;right:-100px;width:620px;height:620px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5C7.6 2.5 5.3 6.2 5.3 10.2c0 3 1.1 5.2 3.1 7.1l-1.9 4.7 2.8-1 1.4-3.2h2.6l1.4 3.2 2.8 1-1.9-4.7c2-1.9 3.1-4.1 3.1-7.1 0-4-2.3-7.7-6.7-7.7zm-3.6 7.6a3.6 3.6 0 1 1 7.2 0 3.6 3.6 0 0 1-7.2 0z' fill='%23F1E6D2'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat;opacity:0.07;
  pointer-events:none;
}

/* Section headings get a brass rule instead of the thin generic eyebrow line */
body[data-theme="equestrian"] .section-head h2{color:#27392B;}
body[data-theme="equestrian"] .configurator .section-head h2{color:var(--wood);}
body[data-theme="equestrian"] .mount-card{border:1px solid rgba(168,101,31,0.3);}

/* Configurator becomes hunter green (stable signage) instead of near-black */
body[data-theme="equestrian"] .configurator{background:#1F2E22;}

/* Footer matches the hunter-green plaque */
body[data-theme="equestrian"] footer{background:#1B2A1F;border-top-color:rgba(212,163,61,0.25);}
body[data-theme="equestrian"] footer .col a:hover{color:var(--wood);}

/* The "Sett sammen ditt system" CTAs get a more vivid, distinct accent than the rest of the buttons */
body[data-theme="equestrian"] .btn-cta-vivid{background:#D9762B;border-color:#D9762B;color:#1B1B17;font-weight:700;}
body[data-theme="equestrian"] .btn-cta-vivid:hover{background:#C2641D;color:#F1E6D2;}

/* ================= MULTI-SYSTEM CONFIGURATOR ================= */
.system-card{
  background:rgba(247,244,238,0.04);border:1px solid rgba(247,244,238,0.14);
  border-radius:var(--radius);padding:36px;margin-bottom:28px;
}
body[data-theme="equestrian"] .system-card{background:rgba(212,163,61,0.06);border-color:rgba(212,163,61,0.22);}
.system-head{display:flex;align-items:baseline;gap:12px;margin-bottom:28px;}
.system-head h3{font-size:1.4rem;color:var(--paper);}
.system-head .system-sub{font-family:'IBM Plex Mono', monospace;font-size:0.8rem;color:var(--wood);}
.system-card-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
@media (max-width:880px){
  .system-card-grid{grid-template-columns:1fr;gap:28px;}
  .system-card-grid .config-preview{order:-1;margin-bottom:8px;}
}
.system-card .field{margin-bottom:24px;}
.system-card .field:last-child{margin-bottom:0;}
.seg3{display:flex;gap:4px;background:rgba(247,244,238,0.08);border-radius:999px;padding:4px;flex-wrap:wrap;}
.seg3 button{
  flex:1;min-width:90px;padding:11px 12px;background:transparent;border:none;color:var(--paper);
  font-family:'Inter';font-weight:600;font-size:0.86rem;cursor:pointer;transition:background .15s ease, opacity .15s ease;border-radius:999px;
}
.seg3 button.is-active{background:var(--rust);}
.seg3 button:disabled{opacity:0.35;cursor:not-allowed;}
@media (max-width:540px){
  .seg3{flex-direction:column;border-radius:var(--radius-sm);}
  .seg3 button{width:100%;min-width:0;}
}
.field-hint{font-family:'IBM Plex Mono', monospace;font-size:0.72rem;color:#B8B2A4;margin-top:8px;}
.remove-system{
  margin-left:auto;background:none;border:none;color:#B8B2A4;font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;cursor:pointer;text-decoration:underline;
}
.remove-system:hover{color:var(--paper);}
.add-more-prompt{
  text-align:center;padding:32px 0 8px;border-top:1px dashed rgba(247,244,238,0.18);margin-top:8px;
}
.add-more-prompt p{font-family:'Fraunces', serif;font-size:1.15rem;color:var(--paper);margin:0 0 18px;}
.add-more-prompt .cta-row{justify-content:center;}

.price-summary{
  background:rgba(247,244,238,0.05);border:1px solid rgba(247,244,238,0.16);
  border-radius:var(--radius);padding:32px 36px;margin-top:8px;
}
body[data-theme="equestrian"] .price-summary{background:rgba(212,163,61,0.08);border-color:rgba(212,163,61,0.25);}
.price-summary .summary-row{font-size:0.98rem;}
.price-summary-total{
  border-top:1px solid rgba(247,244,238,0.25);margin-top:6px;padding-top:16px;
  font-family:'Fraunces', serif;font-weight:600;font-size:1.3rem;color:var(--paper);
}
.price-summary-total span:last-child{color:var(--wood);font-family:'Fraunces', serif;}
