/* ==========================================================================
   Vidiniai dialogai — main stylesheet
   Palette: warm ivory paper, charcoal ink, camel, powder-blue (from the logo)
   Type:    Fraunces (display, soft optical) + Manrope (text)
   ========================================================================== */

:root {
  --paper:      #F3EFE8;
  --paper-2:    #E9E4DB;
  --paper-3:    #DED8CD;
  --ink:        #1E1B18;
  --ink-2:      #3B3632;
  --muted:      #7C746B;
  --line:       rgba(30, 27, 24, .13);
  --line-light: rgba(243, 239, 232, .16);
  --camel:      #A98B6E;
  --sky:        #9DB7D4;
  --sky-ink:    #587EA6;
  --espresso:   #26221F;
  --espresso-2: #2F2A26;

  --font-display: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  --font-text:    "Manrope", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1360px;
  --gutter: clamp(20px, 4.2vw, 64px);
  --header-h: 84px;
  --radius: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: .35s var(--ease);
  --t-slow: 1.1s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--sky); color: var(--ink); }
:focus-visible { outline: 2px solid var(--sky-ink); outline-offset: 3px; }

.skip { position: absolute; left: 12px; top: -60px; padding: 10px 14px; background: var(--ink); color: var(--paper); z-index: 100; border-radius: var(--radius); }
.skip:focus { top: 12px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.site-content { min-height: 60vh; }
section { position: relative; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  letter-spacing: -0.022em;
  line-height: 1.04;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  text-wrap: balance;
}
.display--xl { font-size: clamp(2.7rem, 6.6vw, 6rem); line-height: .98; letter-spacing: -0.03em; }
.display--sm { font-size: clamp(1.55rem, 2.6vw, 2.3rem); line-height: 1.12; }
.display--xs { font-size: 1.5rem; line-height: 1.2; letter-spacing: -0.01em; }
.display em { font-style: italic; font-variation-settings: "SOFT" 80, "opsz" 144; }

.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 1.25rem;
}
.lead { font-size: clamp(1.1rem, 1.5vw, 1.32rem); line-height: 1.55; color: var(--ink-2); max-width: 36em; }
.statement {
  font-family: var(--font-display); font-variation-settings: "SOFT" 40, "opsz" 72;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem); line-height: 1.3; letter-spacing: -0.012em; text-wrap: pretty;
  margin: 0 0 1.5rem;
}
.statement--sm { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.prose > * + * { margin-top: 1.1em; }
.prose p { margin: 0; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; margin-top: 2.2em; letter-spacing: -0.015em; }
.prose h3 { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.25; margin-top: 1.8em; }
.prose ul { list-style: disc; padding-left: 1.2em; }
.prose ul li + li { margin-top: .4em; }
.prose a { text-decoration: underline; text-underline-offset: .18em; text-decoration-color: var(--sky); }
.prose strong { font-weight: 600; }
.prose--article { font-size: 1.15rem; line-height: 1.75; }
.prose--article > p:first-child::first-letter {
  font-family: var(--font-display); font-size: 3.6em; float: left; line-height: .8; padding: .08em .1em 0 0; color: var(--ink);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 1em 1.6em; border-radius: 999px;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em; line-height: 1;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--espresso-2); box-shadow: 0 12px 30px -14px rgba(30,27,24,.6); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--sm { padding: .8em 1.25em; font-size: .85rem; }

.link {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; font-size: .95rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--t-fast);
  padding-bottom: 2px;
}
.link svg { width: 18px; height: 18px; transition: transform var(--t-fast); }
.link:hover { background-size: 100% 1px; }
.link:hover svg { transform: translateX(3px); }
.link--back svg { transform: rotate(180deg); }
.link--back:hover svg { transform: rotate(180deg) translateX(3px); }

/* ---------- Reveal on scroll ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--t-slow), transform var(--t-slow); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal--img { transform: none; clip-path: inset(6% 0 6% 0); transition: opacity var(--t-slow), clip-path 1.4s var(--ease); }
html.js .reveal--img.in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal--img { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform .5s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line); opacity: 0; transition: opacity var(--t-fast);
}
.site-header.is-scrolled { background: rgba(243, 239, 232, .82); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); }
.site-header.is-scrolled::after { opacity: 1; }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: block; flex: 0 0 auto; }
.brand__img { height: 26px; width: auto; }

.nav ul { display: flex; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav a {
  font-size: .9rem; font-weight: 500; letter-spacing: .005em; color: var(--ink-2);
  background-image: linear-gradient(var(--ink), var(--ink)); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  padding-bottom: 3px; transition: background-size var(--t-fast), color var(--t-fast);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background-size: 100% 1px; }

.site-header__actions { display: flex; align-items: center; gap: 1.2rem; }
.lang { font-size: .78rem; font-weight: 600; letter-spacing: .12em; color: var(--ink-2); padding: .4em 0; border-bottom: 1px solid transparent; transition: border-color var(--t-fast); }
.lang:hover { border-color: var(--ink); }
.cart { position: relative; display: inline-flex; color: var(--ink); }
.cart svg { width: 22px; height: 22px; }
.cart__n { position: absolute; top: -6px; right: -8px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; background: var(--sky-ink); color: #fff; font-size: .62rem; font-weight: 700; display: grid; place-items: center; }

.burger { display: none; align-items: center; gap: .7rem; padding: .5rem 0; }
.burger__label { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.burger__lines { width: 26px; height: 12px; position: relative; }
.burger__lines i { position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .45s var(--ease), top .45s var(--ease); }
.burger__lines i:first-child { top: 0; } .burger__lines i:last-child { top: 10px; }
body.menu-open .burger__lines i:first-child { top: 5px; transform: rotate(45deg); }
body.menu-open .burger__lines i:last-child { top: 5px; transform: rotate(-45deg); }
body.menu-open .site-header { background: transparent; }
body.menu-open .site-header::after { opacity: 0; }
body.menu-open .site-header .brand__img { filter: brightness(1.15); }
body.menu-open .site-header .burger, body.menu-open .site-header .lang, body.menu-open .site-header .cart { color: var(--paper); }
body.menu-open .site-header__cta { visibility: hidden; }

/* Full-screen menu */
.menu {
  position: fixed; inset: 0; z-index: 40; background: var(--espresso); color: var(--paper);
  padding-top: calc(var(--header-h) + 2rem); padding-bottom: 2.5rem;
  overflow: auto;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility 0s .5s;
}
.menu[hidden] { display: block; }
.menu.is-open { opacity: 1; visibility: visible; transition: opacity .5s var(--ease); }
.menu__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; min-height: 100%; align-content: space-between; }
.menu__list li { border-top: 1px solid var(--line-light); }
.menu__list li:last-child { border-bottom: 1px solid var(--line-light); }
.menu__list a {
  display: flex; align-items: baseline; gap: 1.2rem; padding: .55em 0;
  font-family: var(--font-display); font-variation-settings: "SOFT" 40, "opsz" 144;
  font-size: clamp(2rem, 6vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.1;
  transform: translateY(20px); opacity: 0; transition: transform .7s var(--ease), opacity .7s var(--ease), color var(--t-fast);
}
.menu__list a span { font-family: var(--font-text); font-size: .72rem; letter-spacing: .14em; color: var(--sky); font-weight: 600; }
.menu__list a:hover { color: var(--sky); }
.menu.is-open .menu__list a { transform: none; opacity: 1; }
.menu.is-open .menu__list li:nth-child(1) a { transition-delay: .05s } .menu.is-open .menu__list li:nth-child(2) a { transition-delay: .1s }
.menu.is-open .menu__list li:nth-child(3) a { transition-delay: .15s } .menu.is-open .menu__list li:nth-child(4) a { transition-delay: .2s }
.menu.is-open .menu__list li:nth-child(5) a { transition-delay: .25s } .menu.is-open .menu__list li:nth-child(6) a { transition-delay: .3s }
.menu.is-open .menu__list li:nth-child(7) a { transition-delay: .35s }
.menu__aside { align-self: end; display: flex; flex-direction: column; gap: .5rem; font-size: 1rem; color: rgba(243,239,232,.8); }
.menu__aside a:hover { color: var(--paper); }
.menu__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; font-weight: 600; }
.menu__addr { margin: 0; }
.menu__aside .socials { margin-top: 1rem; }
.lang--menu { align-self: flex-start; margin-top: 1rem; border-bottom-color: var(--line-light); }

.socials { display: flex; gap: .6rem; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: inherit; transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); }
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu .socials a, .site-footer .socials a { border-color: var(--line-light); }
.menu .socials a:hover, .site-footer .socials a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Hero (home) ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(2.5rem, 7vh, 6rem)); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto auto; column-gap: clamp(1rem, 3vw, 3rem); row-gap: 3rem; align-items: start; }
.hero__text { grid-column: 1 / 7; grid-row: 1; padding-top: clamp(0rem, 4vh, 3rem); }
.hero__text .display { margin-bottom: 1.6rem; }
.hero__text .lead { margin-bottom: 2.2rem; }
.hero__actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.hero__media { grid-column: 8 / 13; grid-row: 1 / 3; position: relative; z-index: 0; }
.hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.hero__media::after {
  content: ""; position: absolute; inset: auto auto -14px -14px; width: 40%; height: 40%; z-index: -1;
  background: var(--sky); opacity: .55; border-radius: var(--radius);
}
.hero__facts { grid-column: 1 / 7; grid-row: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid var(--line); padding-top: 1.6rem; align-self: end; }
.hero__facts li { display: flex; flex-direction: column; gap: .25rem; }
.hero__facts strong { font-family: var(--font-display); font-weight: 400; font-size: 2rem; line-height: 1; letter-spacing: -0.02em; }
.hero__facts span { font-size: .82rem; color: var(--muted); line-height: 1.35; }

/* ---------- Intro statement ---------- */
.intro { padding-block: clamp(3rem, 8vw, 7rem); border-top: 1px solid var(--line); }
.intro__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; }
.intro__p { max-width: 40em; color: var(--ink-2); }

/* ---------- Section head ---------- */
.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); max-width: 40ch; }
.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.section-head__p { margin: 1rem 0 0; color: var(--muted); max-width: 44ch; }

/* ---------- Services ---------- */
.services { padding-block: clamp(3rem, 8vw, 7rem); background: var(--paper-2); }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.service { display: grid; grid-template-rows: auto 1fr; background: var(--paper); border-radius: var(--radius); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.service:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(30,27,24,.45); }
.service__media { overflow: hidden; }
.service__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; object-position: center 20%; transition: transform 1.4s var(--ease); }
.service:hover .service__media img { transform: scale(1.04); }
.service__body { padding: clamp(1.5rem, 2.6vw, 2.4rem); display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.service__body .display { margin-bottom: .2rem; }
.service__body > p { margin: 0; color: var(--ink-2); max-width: 44ch; }
.service__tag { display: flex; gap: 1rem; align-items: center; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 0; }
.service__tag span { color: var(--sky-ink); }
.service .link { margin-top: .6rem; }

/* ---------- Signs (dark band) ---------- */
.signs { background: var(--espresso); color: var(--paper); padding-block: clamp(3.5rem, 9vw, 8rem); }
.signs .eyebrow { color: var(--sky); }
.signs__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.signs__head { position: sticky; top: calc(var(--header-h) + 2rem); }
.signs__head .display { margin-bottom: 1.4rem; }
.signs__p { color: rgba(243,239,232,.72); max-width: 36ch; margin-bottom: 2rem; }
.signs__list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.35rem 0; border-top: 1px solid var(--line-light); font-family: var(--font-display); font-size: clamp(1.25rem, 1.9vw, 1.65rem); line-height: 1.3; letter-spacing: -0.01em; }
.signs__list li:last-child { border-bottom: 1px solid var(--line-light); }
.signs__list li span { font-family: var(--font-text); font-size: .72rem; letter-spacing: .14em; color: var(--sky); font-weight: 600; padding-top: .45em; }
.signs__after { grid-column: 2; color: rgba(243,239,232,.72); margin-top: 1.5rem; max-width: 52ch; }

/* ---------- About teaser ---------- */
.about-teaser { padding-block: clamp(3.5rem, 9vw, 8rem); }
.about-teaser__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.about-teaser__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.about-teaser__body .display { margin-bottom: 1.4rem; }
.about-teaser__body > p { color: var(--ink-2); max-width: 46ch; }

.timeline { margin: 2rem 0; }
.timeline dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .6rem; }
.timeline dd { margin: 0; display: grid; grid-template-columns: 7.5rem 1fr; gap: .2rem 1.2rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.timeline dd:last-child { border-bottom: 1px solid var(--line); }
.timeline dd span { font-size: .8rem; color: var(--muted); font-weight: 500; padding-top: .2em; grid-row: 1 / 3; font-variant-numeric: tabular-nums; }
.timeline dd b { font-weight: 500; }
.timeline dd em { font-style: normal; color: var(--muted); font-size: .92rem; }
.timeline--lg dd { padding: 1.2rem 0; }
.timeline--lg dd b { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.25; letter-spacing: -0.01em; }

/* ---------- Journal ---------- */
.journal { padding-block: clamp(3.5rem, 9vw, 8rem); border-top: 1px solid var(--line); }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.post-card { display: flex; flex-direction: column; }
.post-card__media { display: block; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.post-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.4s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding-top: 1.3rem; display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.post-card__meta { font-size: .78rem; color: var(--muted); letter-spacing: .02em; margin: 0; }
.post-card__body h3 a { background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size var(--t-fast); }
.post-card:hover h3 a { background-size: 100% 1px; }
.post-card__body > p { margin: 0; color: var(--ink-2); font-size: .98rem; }
.journal--page { border-top: 0; padding-top: 0; }
.journal--more { background: var(--paper-2); }

/* ---------- Shop ---------- */
.shop-teaser { padding-block: clamp(3.5rem, 9vw, 8rem); border-top: 1px solid var(--line); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2.5rem); }
.product-card { display: block; }
.product-card__media { position: relative; overflow: hidden; border-radius: var(--radius); background: #EEF1F4; }
.product-card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.4s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge { position: absolute; top: 12px; left: 12px; padding: .45em .8em; background: var(--paper); border-radius: 999px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.product-card__body { padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.product-card__title { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; letter-spacing: -0.01em; }
.product-card__price { margin: 0; font-size: .95rem; font-weight: 600; white-space: nowrap; }
.shop { padding-bottom: clamp(3rem, 8vw, 6rem); }
.shop__note { margin-top: 3rem; font-size: .88rem; color: var(--muted); text-align: center; }
.shop__note a { text-decoration: underline; text-underline-offset: .2em; }

/* Single product */
.page-product { padding-top: calc(var(--header-h) + 2rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.page-product .link--back { margin-bottom: 2rem; }
.product-single { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.product-single__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.product-single__img { border-radius: var(--radius); overflow: hidden; background: #EEF1F4; }
.product-single__img:first-child { grid-column: 1 / -1; }
.product-single__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.product-single__img:first-child img { aspect-ratio: 4 / 5; }
.product-single__sticky { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.product-single__summary .display { margin-bottom: 1rem; }
.product-single__price { font-size: 1.35rem; font-weight: 500; margin-bottom: 1.2rem; }
.product-single__short { color: var(--ink-2); margin-bottom: 1.5rem; }
.product-single__soldout { display: inline-block; padding: .5em .9em; border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.product-single__note { font-size: .85rem; color: var(--muted); margin: 1.5rem 0 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.product-single__desc { font-size: .98rem; }
.product-single__desc h3 { font-size: 1.15rem; margin-top: 1.6em; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--sky); color: var(--ink); padding-block: clamp(3.5rem, 9vw, 8rem); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.cta-band .display { max-width: 20ch; }
.cta-band .btn--light { background: var(--ink); color: var(--paper); }
.cta-band .btn--light:hover { background: var(--espresso-2); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: calc(var(--header-h) + clamp(2.5rem, 7vh, 5.5rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-hero .display { max-width: 18ch; margin-bottom: 1.4rem; }
.page-hero .lead { margin: 0; }
.banner { padding-inline: var(--gutter); max-width: var(--wrap); margin: 0 auto clamp(3rem, 7vw, 6rem); }
.banner img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: center 40%; border-radius: var(--radius); }

/* ---------- Prose sections (service pages) ---------- */
.prose-section { padding-bottom: clamp(3rem, 8vw, 6rem); }
.prose-section__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 2rem clamp(2rem, 5vw, 6rem); padding-block: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--line); }
.prose-section .prose { font-size: 1.12rem; color: var(--ink-2); }
.checks li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .8rem; padding: .8rem 0; border-top: 1px solid var(--line); font-size: 1.08rem; }
.checks li:first-child { border-top: 0; padding-top: 0; }
.checks svg { width: 20px; height: 20px; color: var(--sky-ink); margin-top: .2em; }

/* Compare */
.compare { padding-block: clamp(3.5rem, 9vw, 8rem); background: var(--paper-2); }
.compare--dark { background: var(--espresso); color: var(--paper); }
.compare--dark .eyebrow { color: var(--sky); }
.compare > .wrap > .display { max-width: 22ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.compare__col { padding: clamp(1.5rem, 2.6vw, 2.4rem); background: var(--paper); border-radius: var(--radius); }
.compare--dark .compare__col { background: var(--espresso-2); }
.compare__col p:last-child { margin: 0; color: var(--ink-2); }
.compare--dark .compare__col p:last-child { color: rgba(243,239,232,.78); }
.compare__choose { margin-top: clamp(2rem, 4vw, 3.5rem); max-width: 62ch; }
.compare__choose .display { margin-bottom: 1rem; }
.compare__choose p:last-child { margin: 0; color: var(--ink-2); }
.compare--dark .compare__choose p:last-child { color: rgba(243,239,232,.78); }

/* ---------- About page ---------- */
.about-hero { padding-top: calc(var(--header-h) + clamp(2.5rem, 7vh, 5.5rem)); padding-bottom: clamp(3rem, 7vw, 6rem); }
.about-hero__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 6rem); align-items: end; }
.about-hero__text .display { margin-bottom: 1.6rem; }
.about-hero__text > p:last-child { color: var(--ink-2); max-width: 50ch; margin: 0; }
.about-hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }

.why { padding-block: clamp(3rem, 8vw, 7rem); background: var(--paper-2); }
.why__grid { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.why__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.why__body .display { margin-bottom: 1.4rem; }
.why__body > p { color: var(--ink-2); max-width: 54ch; }
.why__body .statement { margin-top: 1.6rem; }

.cv { padding-block: clamp(3rem, 8vw, 7rem); }
.cv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }

.training { padding-block: clamp(3rem, 8vw, 7rem); background: var(--espresso); color: var(--paper); }
.training .eyebrow { color: var(--sky); }
.training__grid { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.training__head { position: sticky; top: calc(var(--header-h) + 2rem); }
.training__list li { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line-light); color: rgba(243,239,232,.85); font-size: .98rem; }
.training__list li:last-child { border-bottom: 1px solid var(--line-light); }
.training__list li span { color: var(--sky); font-size: .8rem; font-weight: 600; letter-spacing: .06em; padding-top: .2em; }

.member { padding-block: clamp(3rem, 8vw, 7rem); }
.member__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); }
.member__p { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.35; margin-bottom: 1.2rem; }
.press li { border-top: 1px solid var(--line); }
.press li:last-child { border-bottom: 1px solid var(--line); }
.press a { display: grid; grid-template-columns: 6rem 1fr auto; align-items: center; gap: 1rem; padding: 1rem 0; transition: color var(--t-fast); }
.press a span { font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .06em; }
.press a svg { width: 18px; height: 18px; color: var(--muted); transition: transform var(--t-fast); }
.press a:hover svg { transform: translate(2px, -2px); }

/* ---------- Article ---------- */
.article__head { padding-top: calc(var(--header-h) + clamp(2rem, 6vh, 4.5rem)); padding-bottom: 2.5rem; text-align: left; }
.article__head .link--back { margin-bottom: 2rem; }
.article__head .display { margin-bottom: 1.2rem; }
.article__hero { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.article__hero img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--radius); }
.article { padding-bottom: clamp(3.5rem, 8vw, 7rem); }
.article__foot { margin-top: clamp(3rem, 6vw, 5rem); padding-top: 2.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.article__author { display: flex; align-items: center; gap: 1rem; }
.article__author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; }
.article__author p { margin: 0; font-size: .92rem; color: var(--muted); }
.article__author p strong { color: var(--ink); font-weight: 600; }

/* ---------- Helplines ---------- */
.helplines { padding-block: clamp(3rem, 8vw, 7rem); background: var(--paper-2); }
.helplines__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.helplines__list li { border-top: 1px solid var(--line); }
.helplines__list li:last-child { border-bottom: 1px solid var(--line); }
.helplines__list a { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; }
.helplines__list a span { color: var(--ink-2); }
.helplines__list a b { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; letter-spacing: -0.01em; white-space: nowrap; transition: color var(--t-fast); }
.helplines__list a:hover b { color: var(--sky-ink); }

/* ---------- Contact ---------- */
.contact { padding-top: calc(var(--header-h) + clamp(2.5rem, 7vh, 5.5rem)); padding-bottom: clamp(3rem, 8vw, 7rem); }
.contact__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2.5rem, 6vw, 7rem); align-items: start; }
.contact__intro .display { margin-bottom: 1.4rem; }
.contact__details { margin: 2.5rem 0 1.5rem; }
.contact__details dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 1.4rem 0 .5rem; }
.contact__details dt:first-child { margin-top: 0; }
.contact__details dd { margin: 0; font-size: 1.05rem; }
.contact__details dd a { border-bottom: 1px solid var(--line); transition: border-color var(--t-fast); }
.contact__details dd a:hover { border-color: var(--ink); }
.contact__media { margin-top: 3rem; }
.contact__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.contact__form { background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 3rem); box-shadow: 0 40px 80px -60px rgba(30,27,24,.35); }

.form { display: flex; flex-direction: column; gap: 1.6rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field label span { color: var(--sky-ink); }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  padding: .6rem 0; font-size: 1.05rem; transition: border-color var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.5; }
.select { position: relative; }
.select::after { content: ""; position: absolute; right: 4px; top: 50%; width: 8px; height: 8px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select select { padding-right: 2rem; cursor: pointer; }
.check { display: flex; align-items: flex-start; gap: .8rem; font-size: .92rem; color: var(--ink-2); cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box { flex: 0 0 auto; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 4px; display: grid; place-items: center; color: transparent; transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); margin-top: .15em; }
.check__box svg { width: 14px; height: 14px; }
.check input:checked + .check__box { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.check input:focus-visible + .check__box { outline: 2px solid var(--sky-ink); outline-offset: 2px; }
.check a { text-decoration: underline; text-underline-offset: .18em; }
.form .btn { align-self: flex-start; margin-top: .4rem; }
.form__error { padding: .9rem 1rem; background: #FBEFEA; color: #8A3B25; border-radius: var(--radius); font-size: .92rem; margin: 0; }
.hp { position: absolute; left: -9999px; }

/* ---------- Thanks / 404 ---------- */
.thanks { min-height: 70vh; display: grid; align-items: center; padding-top: var(--header-h); padding-bottom: 4rem; }
.thanks__inner { max-width: 760px; }
.thanks .display { margin-bottom: 1.4rem; }
.thanks .lead { margin-bottom: 2rem; }

/* ---------- Legal ---------- */
.legal { padding-bottom: clamp(3rem, 8vw, 7rem); }
.legal__list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.3rem 0; border-top: 1px solid var(--line); }
.legal__list li:last-child { border-bottom: 1px solid var(--line); }
.legal__list li span { font-size: .72rem; letter-spacing: .14em; color: var(--sky-ink); font-weight: 600; padding-top: .35em; }
.legal__list li p { margin: 0; color: var(--ink-2); }
.legal .prose h2 { font-size: 1.5rem; }

/* ---------- Pagination ---------- */
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination .nav-links, .pagination .page-numbers { display: flex; gap: .4rem; align-items: center; }
.pagination a.page-numbers, .pagination span.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .8em; border-radius: 999px; border: 1px solid var(--line); font-size: .9rem; font-weight: 600; transition: background var(--t-fast), color var(--t-fast); }
.pagination a.page-numbers:hover, .pagination span.page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.empty { color: var(--muted); padding: 3rem 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(243,239,232,.78); padding-block: clamp(3rem, 7vw, 5.5rem) 2rem; }
.site-footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.site-footer__logo { height: 24px; width: auto; margin-bottom: 1.2rem; }
.site-footer__brand p { max-width: 30ch; margin-bottom: 1.5rem; }
.site-footer__h { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1rem; }
.site-footer__col li + li { margin-top: .5rem; }
.site-footer__col a { transition: color var(--t-fast); }
.site-footer__col a:hover { color: var(--paper); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: .82rem; color: var(--muted); }
.site-footer__bottom p { margin: 0; }

/* ---------- WooCommerce essentials ---------- */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { list-style: none; padding: 1rem 1.2rem; margin: 0 0 1.5rem; border-radius: var(--radius); background: var(--paper-2); font-size: .95rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.woocommerce-error { background: #FBEFEA; color: #8A3B25; }
.woocommerce-message .button, .woocommerce-info .button { font-weight: 600; text-decoration: underline; text-underline-offset: .2em; }
form.cart { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; margin-bottom: 1rem; }
form.cart .variations { width: 100%; border-collapse: collapse; }
form.cart .variations th, form.cart .variations td { text-align: left; padding: .4rem 0; vertical-align: middle; }
form.cart .variations th { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; width: 7rem; }
form.cart .variations select { border: 1px solid var(--line); border-radius: 999px; padding: .55rem 2.2rem .55rem 1rem; background: transparent; -webkit-appearance: none; appearance: none; cursor: pointer; font-size: .95rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%231E1B18' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
form.cart .reset_variations { font-size: .8rem; color: var(--muted); margin-left: .6rem; }
.woocommerce-variation-price { margin: .4rem 0; font-weight: 500; }
.woocommerce-variation-availability p { margin: 0; font-size: .85rem; color: var(--muted); }
.woocommerce-variation-add-to-cart, form.cart > .quantity ~ .single_add_to_cart_button { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; }
form.cart .quantity { display: inline-flex; }
form.cart .quantity input { width: 4.2rem; padding: .8rem .8rem; border: 1px solid var(--line); border-radius: 999px; text-align: center; background: transparent; }
.single_add_to_cart_button, .woocommerce .button.checkout-button, .woocommerce #place_order, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button {
  display: inline-flex; align-items: center; gap: .6em; padding: 1em 1.6em; border-radius: 999px; border: 0;
  background: var(--ink); color: var(--paper); font-weight: 600; font-size: .92rem; line-height: 1; cursor: pointer; transition: background var(--t-fast);
}
.single_add_to_cart_button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce #place_order:hover { background: var(--espresso-2); }
.single_add_to_cart_button.disabled, .woocommerce button.button:disabled { opacity: .4; cursor: not-allowed; }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--ink); }
.stock.out-of-stock { color: var(--muted); font-size: .9rem; }
.price del { color: var(--muted); font-weight: 400; margin-right: .4em; }
.woocommerce-tabs, .product_meta, .woocommerce-product-rating { display: none; }
.onsale { display: none; }

/* Cart / checkout / account — generic, calm defaults */
.woo-main { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.woo-main h1, .woo-main h2, .woo-main h3 { font-family: var(--font-display); letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 1rem; }
.woo-main h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
.woo-main h2 { font-size: 1.6rem; margin-top: 2rem; }
.woo-main h3 { font-size: 1.25rem; }
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 1rem .6rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.woocommerce table.shop_table th { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.woocommerce table.shop_table img { width: 72px; border-radius: var(--radius); }
.woocommerce table.shop_table .product-remove a { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); font-size: 1rem; color: var(--muted); }
.woocommerce table.shop_table .quantity input { width: 4rem; padding: .5rem; border: 1px solid var(--line); border-radius: 999px; text-align: center; }
.woocommerce .cart-collaterals { max-width: 480px; margin-left: auto; }
.woocommerce .coupon { display: flex; gap: .6rem; align-items: center; }
.woocommerce .coupon input.input-text { padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; }
.woocommerce form .form-row { margin-bottom: 1.2rem; }
.woocommerce form .form-row label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .4rem; }
.woocommerce form .form-row .input-text, .woocommerce form .form-row select, .woocommerce form .form-row textarea, .select2-container .select2-selection--single { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: .6rem 0; font-size: 1.05rem; height: auto; }
.woocommerce form .form-row .input-text:focus { outline: none; border-color: var(--ink); }
.woocommerce form .form-row.form-row-first, .woocommerce form .form-row.form-row-last { width: calc(50% - .8rem); display: inline-block; }
.woocommerce form .form-row.form-row-first { margin-right: 1.6rem; }
.woocommerce form .form-row .required { color: var(--sky-ink); text-decoration: none; }
.woocommerce-checkout .col2-set, .woocommerce-checkout #order_review { margin-bottom: 2rem; }
.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 { width: auto; }
#payment .wc_payment_methods { margin-bottom: 1.5rem; }
#payment .wc_payment_method { padding: .8rem 0; border-top: 1px solid var(--line); }
#payment .payment_box { padding: .6rem 0 0; font-size: .9rem; color: var(--muted); }
.woocommerce-privacy-policy-text { font-size: .85rem; color: var(--muted); }
.woocommerce-MyAccount-navigation ul li { border-top: 1px solid var(--line); }
.woocommerce-MyAccount-navigation ul li a { display: block; padding: .8rem 0; }
.return-to-shop .button { margin-top: 1rem; }
.cart-empty.woocommerce-info { display: block; }
.select2-container--default .select2-selection--single .select2-selection__rendered { padding-left: 0; line-height: 1.6; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .site-header__cta { display: none; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .hero__grid { grid-template-columns: 1fr; row-gap: 2.2rem; }
  .hero__text, .hero__media, .hero__facts { grid-column: 1; }
  .hero__text { grid-row: 1; padding-top: 0; }
  .hero__media { grid-row: 2; }
  .hero__media img { aspect-ratio: 4 / 5; }
  .hero__facts { grid-row: 3; }
  .intro__grid { grid-template-columns: 1fr; gap: .5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .signs__grid { grid-template-columns: 1fr; }
  .signs__head { position: static; }
  .signs__after { grid-column: 1; }
  .about-teaser__grid { grid-template-columns: 1fr; }
  .about-teaser__media img { aspect-ratio: 4 / 4.4; }
  .journal__grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .menu__inner { grid-template-columns: 1fr; }
  .menu__aside { align-self: start; }
  .prose-section__grid, .compare__grid, .about-hero__grid, .why__grid, .cv__grid, .training__grid, .member__grid, .helplines__grid, .contact__grid { grid-template-columns: 1fr; }
  .training__head { position: static; }
  .about-hero__grid { gap: 2.5rem; }
  .about-hero__media { order: -1; }
  .about-hero__media img { aspect-ratio: 4 / 4.2; }
  .why__media { max-width: 420px; }
  .product-single { grid-template-columns: 1fr; }
  .product-single__sticky { position: static; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .woocommerce-checkout .col2-set { grid-template-columns: 1fr; }
  .contact__media { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .hero__facts { grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .hero__facts strong { font-size: 1.6rem; }
  .hero__facts span { font-size: .74rem; }
  .journal__grid { grid-template-columns: 1fr; }
  .products-grid { gap: 1rem; }
  .product-card__body { flex-direction: column; gap: .2rem; }
  .product-card__title { font-size: 1rem; }
  .signs__list li { grid-template-columns: 2.2rem 1fr; }
  .timeline dd { grid-template-columns: 1fr; }
  .timeline dd span { grid-row: auto; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.4rem; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .press a { grid-template-columns: 1fr auto; }
  .press a span { grid-column: 1 / -1; }
  .article__foot { flex-direction: column; align-items: flex-start; }
  .woocommerce form .form-row.form-row-first, .woocommerce form .form-row.form-row-last { width: 100%; display: block; margin-right: 0; }
  .product-single__gallery { grid-template-columns: 1fr; }
  .cta-band .display { max-width: none; }
  .brand__img { height: 22px; }
  .burger__label { display: none; }
}

/* WP/Woo visually-hidden helper (core stylesheet is dequeued) */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
