/* urWru (Refined Rebellion) - brand: orange #EA5D2B + black from their logo. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

:root {
  --ink: #111111;
  --ink-2: #1B1B1B;
  --orange: #EA5D2B;
  --orange-dark: #C44A1E;
  --paper: #FFFFFF;
  --tint: #F7F5F3;
  --line: rgba(17, 17, 17, 0.14);
  --line-soft: rgba(17, 17, 17, 0.08);
  --mute: #5A554F;
  --display: 'Archivo', 'Segoe UI', sans-serif;
  --body: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --page: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h: 74px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
body { background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16.5px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.container { max-width: var(--page); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem; }
.h2 { font-family: var(--display); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.08; }
.lede { color: var(--mute); margin-top: 1rem; max-width: 62ch; }
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .h2 { color: #fff; }
.section--dark .lede { color: rgba(255,255,255,0.78); }
.section--dark .eyebrow { color: var(--orange); }
.section--emm { border-top: 1px solid var(--line-soft); }

/* Buttons: one fill, one ghost. */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.6rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; border: 1px solid transparent; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
.btn-fill { background: var(--orange); color: #fff; }
.btn-fill:hover { background: var(--orange-dark); }
.btn-ghost, .btn-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn-dark:hover { background: var(--ink); color: #fff; }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost--light:hover { background: #fff; color: var(--ink); }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--page); margin: 0 auto; padding: 0 var(--gutter); height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 46px; width: 46px; object-fit: cover; object-position: center 32%; }
.nav-word { font-family: var(--display); font-weight: 800; font-size: 1.15rem; line-height: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.nav-word small { font-family: var(--body); font-weight: 600; font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.nav-links { display: none; align-items: center; gap: 1.7rem; font-size: 0.88rem; font-weight: 500; }
.nav-links > a:hover, .dd:hover > a { color: var(--orange); }
.dd { position: relative; }
.dd > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.dd-caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dd-menu { position: absolute; top: 100%; left: -1rem; min-width: 230px; background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--orange); padding: 0.5rem 0; display: none; }
.dd:hover .dd-menu, .dd.is-open .dd-menu { display: block; }
.dd-menu a { display: block; padding: 0.6rem 1.25rem; font-size: 0.86rem; }
.dd-menu a:hover { background: var(--tint); color: var(--orange); }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .nav-burger { display: none; } }
.nav-burger { background: none; border: 0; width: 42px; height: 42px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); }
.mobile-menu { display: none; background: var(--paper); border-bottom: 1px solid var(--line); padding: 0.75rem var(--gutter) 1.5rem; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 0.7rem 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }
@media (min-width: 960px) { .mobile-menu { display: none !important; } }

/* ===== HERO ===== */
.hero { background: var(--paper); border-bottom: 1px solid var(--line-soft); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; } }
.hero-text h1 { font-family: var(--display); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; }
.hero-text h1::after { content: ''; display: block; width: 56px; height: 4px; background: var(--orange); margin-top: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }
.hero-art img { width: 100%; max-width: 440px; margin: 0 auto; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--tint); border-bottom: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.page-hero h1 { font-family: var(--display); font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.08; max-width: 26ch; }
.page-hero .crumb { font-size: 0.78rem; color: var(--mute); margin-bottom: 1rem; }
.page-hero .crumb a:hover { color: var(--orange); }
.emm-hero-logo { height: 120px; width: auto; margin-bottom: 1.5rem; mix-blend-mode: multiply; }

/* ===== PLANS ===== */
.plan-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 680px) { .plan-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .plan-grid { grid-template-columns: repeat(4, 1fr); } }
.plan-card { background: var(--ink-2); border: 1px solid rgba(255,255,255,0.14); border-top: 3px solid var(--orange); padding: 1.9rem 1.6rem; display: flex; flex-direction: column; }
.plan-card h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: #fff; }
.plan-card p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-top: 0.6rem; }
.plan-price { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--orange); margin: 1.4rem 0; }
.plan-card .btn { width: 100%; }
.plan-note { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 2rem; max-width: 70ch; }
.section--tint .plan-note, .section .plan-note { color: var(--mute); }

/* ===== SPLIT ===== */
.split { display: grid; gap: 2.5rem 4rem; align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1fr 1fr; } }
.split-media img { width: 100%; height: auto; }
.split-media--pad { background: var(--tint); padding: 2.5rem; }
.split-media--pad img { mix-blend-mode: multiply; }
.results-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.results-pair img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

/* ===== SHOP ===== */
.shop-rows { margin-top: 2.25rem; border-top: 1px solid var(--line); }
.shop-row { display: grid; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); align-items: center; }
@media (min-width: 760px) { .shop-row { grid-template-columns: 1fr auto auto; gap: 2rem; } }
.shop-row h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; }
.shop-row p { color: var(--mute); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.2rem; }
.shop-price { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--orange); }

/* ===== EMM OFFER ===== */
.emm-offer { display: grid; gap: 1.5rem; align-items: center; border: 1px solid var(--line); border-left: 3px solid var(--orange); padding: 2rem; margin-top: 2.25rem; max-width: 720px; }
@media (min-width: 720px) { .emm-offer { grid-template-columns: 1fr auto auto; gap: 2.5rem; } }
.emm-offer h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.emm-offer p { color: var(--mute); font-size: 0.93rem; margin-top: 0.4rem; }
.emm-price { font-family: var(--display); font-size: 2.1rem; font-weight: 800; color: var(--orange); white-space: nowrap; }

/* ===== FORM ===== */
.form { display: grid; gap: 1.1rem; max-width: 520px; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.field input, .field textarea { font: inherit; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 2px; background: var(--paper); color: var(--ink); width: 100%; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { min-height: 120px; resize: vertical; }
.form-status { display: none; padding: 0.9rem 1.1rem; border: 1px solid var(--orange); font-size: 0.93rem; }
.form-status.is-visible { display: block; }
.loc-list { list-style: none; display: grid; gap: 0.5rem; font-size: 0.96rem; }
.loc-list a { border-bottom: 1px solid var(--line); }
.loc-list a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: #fff; padding: clamp(3rem, 6vw, 4rem) 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer-brand img { height: 56px; width: 56px; object-fit: cover; object-position: center 32%; margin-bottom: 1.1rem; background: #fff; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 34ch; }
.footer h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.footer a:hover { color: var(--orange); }
.foot-social { display: flex; gap: 0.9rem; margin-top: 0.5rem; }
.foot-social a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; color: #fff; transition: border-color 150ms ease, color 150ms ease; }
.foot-social a:hover { border-color: var(--orange); color: var(--orange); }
.foot-social svg { width: 16px; height: 16px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* v2: every-tab-own-page additions */
.plan-card--link { transition: border-color 160ms ease, transform 160ms ease; }
.plan-card--link:hover { border-color: var(--orange); }
.plan-card--link .btn { width: 100%; pointer-events: none; }
.plan-buy { border: 1px solid var(--line); border-top: 3px solid var(--orange); padding: 2rem; max-width: 360px; }
.plan-price--big { font-size: 2.6rem; margin: 0.75rem 0 1.5rem; }
.plan-pager { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: 0.86rem; font-weight: 600; }
.plan-pager a { color: var(--orange); }
.plan-pager a:hover { color: var(--orange-dark); }
.results-pair--page { max-width: 720px; }
.results-pair--page figure { margin: 0; }
.results-pair--page figcaption { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-top: 0.6rem; }
