/* =============================================================
   Sonala Creations — main stylesheet
   Mirrors the live Valeska theme tokens used on sonalacreations.com
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --color-text: #353535;
  --color-heading: #000;
  --color-bg: #fff;
  --color-cream: #E8E6DB;
  --color-burgundy: #753333;
  --color-accent: #ECD3D5;
  --color-dark: #191919;
  --color-line: #ececec;

  /* Override Valeska theme accent so back-to-top, newsletter, hovers, etc. pick up --color-accent */
  --qode-main-color: #ECD3D5;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Yantramanav", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1300px;
  --header-height: 104px;
  --topbar-height: 44px;
  --gutter: 3.95%;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.35em;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease-out; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Typography (UPPERCASE Cormorant 300) ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-heading);
  margin: 25px 0;
  word-wrap: break-word;
}
h1 { font-size: 80px; line-height: .88em; }
h2 { font-size: 66px; line-height: .9em; }
h3 { font-size: 50px; line-height: 1.02em; }
h4 { font-size: 40px; line-height: 1.025em; }
h5 { font-size: 30px; line-height: 1.03em; font-weight: 400; }
h6 { font-size: 24px; line-height: 1.04em; font-weight: 400; }
p { margin: 10px 0; }

/* ---------- Subtitle / eyebrow ---------- */
.subtitle, .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-heading);
  margin: 0 0 12px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  outline: 0;
  padding: 18px 42px 16px;
  background-color: transparent;
  color: var(--color-heading);
  border: 1px solid var(--color-heading);
  transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
  cursor: pointer;
}
.btn:hover { color: #fff; background-color: var(--color-dark); }
.btn--filled { color: #fff; background-color: var(--color-dark); border-color: transparent; }
.btn--filled:hover { background-color: var(--color-accent); }
.btn--ghost { color: #fff; border-color: #fff; background: transparent; }
.btn--ghost:hover { color: var(--color-heading); background-color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.spacer { display: block; }
.spacer--xl { height: 200px; }
.spacer--lg { height: 130px; }
.spacer--md { height: 80px; }
.spacer--sm { height: 50px; }

/* ---------- Top bar (slim black strip) ---------- */
.topbar {
  background: #000;
  color: #fff;
}
.topbar__inner {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.topbar__sep { opacity: 0.4; }
.topbar a { color: #fff; opacity: 0.85; }
.topbar a:hover { opacity: 1; }

/* ---------- Header (white sticky, 104px) ---------- */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--gutter);
  max-width: 1600px;
  margin: 0 auto;
  gap: 24px;
}
.header__logo { display: inline-flex; align-items: center; }
.header__logo img { height: 60px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__list {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__list a {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-heading);
  position: relative;
  padding: 6px 0;
}
.nav__list a:hover,
.nav__list a[aria-current="page"] { color: var(--color-burgundy); }

.nav__icons { display: flex; gap: 14px; align-items: center; }
.icon-btn { background: transparent; border: 0; padding: 6px; color: var(--color-heading); line-height: 0; }
.icon-btn:hover { color: var(--color-burgundy); }

.menu-toggle { display: none; background: transparent; border: 0; color: var(--color-heading); padding: 8px; }

/* ---------- Hero (centered wordmark + tagline) ---------- */
.hero {
  text-align: center;
  padding: 100px 24px 0;
  background: #fff;
}
.hero__logo {
  margin: 0 auto;
  display: block;
  width: 63%;
  max-width: 720px;
  height: auto;
}
.hero__tag {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.04em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-heading);
  margin: 30px 0 0;
}

/* ---------- 5-column category row ---------- */
.cat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f0;
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .64s cubic-bezier(.46,0,.36,.99);
  will-change: transform;
}
.cat-tile:hover img { transform: scale(1.01); }
.cat-tile__label {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
}

/* ---------- Process / split section ---------- */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.process__image {
  background-color: var(--color-cream);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 10.5%;
}
.process__image-inner {
  width: 100%;
  min-height: 700px;
  background-color: var(--color-burgundy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.process__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 33%;
  padding-right: 24px;
}
.process--reverse .process__image { order: 2; }
.process--reverse .process__copy { padding: 60px 24px 60px 33%; }

.process__title {
  font-family: var(--font-serif);
  font-size: 66px;
  line-height: .9em;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-heading);
  margin: 5px 0 0;
  word-break: break-word;
}
.process__text {
  margin: 17px 0 0;
  max-width: 260px;
  font-size: 17px;
  line-height: 1.35em;
  color: var(--color-text);
}
.process__btn { margin-top: 44px; }

/* ---------- Page title (sub-pages) ---------- */
.page-title {
  background: #fff;
  padding: 100px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.page-title h1 { font-size: 80px; line-height: .88em; margin: 0; }
.page-title .crumbs {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-top: 12px;
}
.page-title .crumbs a:hover { color: var(--color-burgundy); }

/* ---------- Product grid ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 22px;
}
.product { display: block; text-decoration: none; }
.product__media {
  aspect-ratio: 1 / 1;
  background: #f7f7f5;
  overflow: hidden;
  margin-bottom: 16px;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.46,0,.36,.99);
}
.product:hover .product__media img { transform: scale(1.04); }
.product__name {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.1em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-heading);
  margin: 0 0 4px;
}
.product__price {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-burgundy);
  text-transform: uppercase;
}

/* ---------- Newsletter band ---------- */
.newsletter {
  background: #000;
  color: #fff;
  padding: 100px 24px;
  text-align: center;
}
.newsletter h2 { color: #fff; margin: 0 0 16px; font-size: 56px; line-height: .92em; }
.newsletter p { color: #ccc; margin: 0 auto 28px; max-width: 560px; }
.newsletter__form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__form input {
  flex: 1 1 260px;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: 0;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.55); }

/* ---------- Footer ---------- */
.footer {
  padding: 83px var(--gutter);
  border-top: 1px solid var(--color-line);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
.footer__brand a { color: var(--color-heading); }
.footer__copy {
  font-family: "Roboto", var(--font-sans);
  font-size: 14px;
  color: var(--color-heading);
  margin: 0;
}
.footer__social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}
.footer__social a {
  color: var(--color-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all .2s ease-out;
}
.footer__social a:hover { background: var(--color-burgundy); border-color: var(--color-burgundy); color: #fff; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.contact-headline { font-size: 50px; line-height: .95em; margin: 0 0 16px; }
.contact-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-heading);
}
.contact-block { margin-top: 32px; }
.contact-meta { color: #888; font-size: 14px; margin-top: 32px; }
@media (max-width: 1024px) {
  .contact-headline { font-size: 42px; }
}
@media (max-width: 767px) {
  .contact-headline { font-size: 36px; }
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-heading);
  border-radius: 0;
  transition: border-color .2s ease-out;
}
.form-field input:focus,
.form-field textarea:focus { outline: 0; border-color: var(--color-heading); }
.form-field textarea { min-height: 160px; resize: vertical; }

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider { width: 48px; height: 1px; background: var(--color-heading); margin: 16px auto; border: 0; }
.lede {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  text-transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  h1 { font-size: 68px; }
  h2 { font-size: 58px; }
  h3 { font-size: 47px; }
  h4 { font-size: 35px; }
  h5 { font-size: 28px; }
  .process__title { font-size: 58px; }
  .page-title h1 { font-size: 68px; }
  .newsletter h2 { font-size: 48px; }
}

@media (max-width: 1024px) {
  :root { --header-height: 70px; }
  .header__logo img { height: 44px; }
  .nav__list { gap: 24px; }
  .spacer--xl { height: 130px; }
  .spacer--lg { height: 90px; }
  .spacer--md { height: 60px; }

  .cat-row { grid-template-columns: repeat(3, 1fr); }
  .cat-row > .cat-tile:nth-child(4),
  .cat-row > .cat-tile:nth-child(5) { /* second row */ }

  .process { grid-template-columns: 1fr; }
  .process__copy { padding: 70px 13% 70px 13%; }
  .process--reverse .process__copy { padding: 70px 13% 70px 13%; }
  .process--reverse .process__image { order: 0; }
  .process__image-inner { min-height: 480px; }

  .products { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer__social { justify-content: center; }
}

@media (max-width: 767px) {
  h1 { font-size: 50px; }
  h2 { font-size: 45px; }
  h3 { font-size: 40px; }
  .process__title { font-size: 50px; }
  .page-title h1 { font-size: 50px; }
  .newsletter h2 { font-size: 38px; }

  .topbar__inner {
    font-size: 11px;
    gap: 4px;
    padding: 8px 16px;
    flex-direction: column;
    height: auto;
    line-height: 1.4;
  }
  .topbar__sep { display: none; }

  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.08);
    z-index: 60;
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav__icons { margin-top: 24px; }

  .hero { padding: 60px 16px 0; }
  .hero__tag { font-size: 18px; margin-top: 20px; }

  .cat-row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .cat-tile__label { font-size: 22px; bottom: 14px; }

  .process__copy { padding: 60px 9%; }
  .process__image { padding: 0; }
  .process__image-inner { min-height: 360px; }

  .products { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .product__name { font-size: 18px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .page-title { padding: 60px 16px 40px; }
}

/* Mobile nav backdrop + scroll lock */
body.no-scroll { overflow: hidden; }
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  z-index: 55;
}
.nav-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }

/* =============================================================
   ABOUT PAGE — Valeska-style intro / gallery / belief
   ============================================================= */
.about-intro {
  background: #fff;
  padding: 120px 24px 60px;
  text-align: center;
}
.about-intro__inner { max-width: 760px; margin: 0 auto; }
.about-intro__title {
  font-family: var(--font-serif);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 96px;
  line-height: .95em;
  margin: 8px 0 24px;
  color: var(--color-heading);
}
.about-intro__text {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 auto;
  max-width: 580px;
}
.about-intro__social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.about-intro__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--color-heading);
  transition: all .2s ease-out;
}
.about-intro__social a:hover { background: var(--color-burgundy); border-color: var(--color-burgundy); color: #fff; }

.about-gallery { padding: 60px 0; background: #fff; }
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-gallery__item { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: #f4f4f0; }
.about-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.about-gallery__item:hover img { transform: scale(1.04); }

.about-belief { background: #fff; padding: 100px 24px 120px; text-align: center; }
.about-belief__inner { max-width: 720px; margin: 0 auto; }
.about-belief__title {
  font-family: var(--font-serif);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 80px;
  line-height: .92em;
  margin: 8px 0 0;
  color: var(--color-heading);
}
.about-belief__text {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 18px auto 0;
  max-width: 580px;
}
.about-belief__cta { margin-top: 40px; }

@media (max-width: 1024px) {
  .about-intro__title { font-size: 72px; }
  .about-belief__title { font-size: 64px; }
  .about-gallery__grid { gap: 14px; }
}
@media (max-width: 767px) {
  .about-intro { padding: 60px 16px 40px; }
  .about-intro__title { font-size: 50px; }
  .about-belief__title { font-size: 50px; }
  .about-belief { padding: 60px 16px 80px; }
  .about-gallery__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   HOMEPAGE — Valeska-style sections
   ============================================================= */

/* Split hero (text left, 2 stacked images right) */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 100px var(--gutter);
  background: #fff;
  max-width: 1600px;
  margin: 0 auto;
}
.split-hero__text { padding: 0 0 0 4%; }
.split-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 100px;
  line-height: .92em;
  margin: 16px 0 18px;
  color: var(--color-heading);
}
.split-hero__title em {
  font-style: italic;
  font-weight: 400;
}
.split-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--color-burgundy);
  margin: 0 0 18px;
  text-transform: none;
}
.split-hero__text p {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 28px;
}
.split-hero__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  align-self: stretch;
}
.split-hero__images figure { margin: 0; overflow: hidden; aspect-ratio: 5 / 3; background: #f4f4f0; }
.split-hero__images img { width: 100%; height: 100%; object-fit: cover; }

/* Section heading (centered, eyebrow + serif title) */
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 56px;
  line-height: .95em;
  margin: 6px 0 0;
}
.section-head h2 em { font-style: italic; font-weight: 400; }

/* 5-column product strip */
.products--five { grid-template-columns: repeat(5, 1fr); }

/* "Popular items" 3-col grid */
.popular { padding: 40px var(--gutter); }
.popular__inner { max-width: var(--container); margin: 0 auto; }
.popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 22px;
}

/* Contact band: split text + image */
.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px var(--gutter);
  background: var(--color-cream);
  max-width: 1600px;
  margin: 0 auto;
}
.contact-band__copy { padding-left: 4%; }
.contact-band__title {
  font-family: var(--font-serif);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 64px;
  line-height: .95em;
  margin: 8px 0 24px;
}
.contact-band__title em { font-style: italic; font-weight: 400; }
.contact-band__list {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.contact-band__list strong {
  display: inline-block;
  min-width: 90px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--color-heading);
}
.contact-band__image { aspect-ratio: 4 / 5; overflow: hidden; background: #fff; }
.contact-band__image img { width: 100%; height: 100%; object-fit: cover; }

/* Inline newsletter (used inside contact band) */
.inline-newsletter {
  display: flex;
  max-width: 460px;
  border-bottom: 1px solid var(--color-heading);
  padding-bottom: 8px;
  align-items: center;
}
.inline-newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-heading);
}
.inline-newsletter input:focus { outline: 0; }
.inline-newsletter button {
  background: transparent;
  border: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-heading);
  padding: 8px 0 8px 14px;
  cursor: pointer;
}
.inline-newsletter button:hover { color: var(--color-burgundy); }

/* Dark 4-column footer (Valeska-style) */
.footer--dark {
  background: #111;
  color: #aaa;
  border-top: 0;
  padding: 90px var(--gutter) 30px;
}
.footer--dark .footer__cols {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  text-align: left;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer--dark .footer__brand-block { text-align: left; }
.footer--dark .footer__brand-block .logo {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  display: block;
}
.footer--dark .footer__brand-block p { font-size: 14px; line-height: 1.6; color: #888; max-width: 280px; }
.footer--dark .footer__col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin: 0 0 22px;
}
.footer--dark .footer__col ul li { margin-bottom: 12px; }
.footer--dark .footer__col a { color: #aaa; font-size: 14px; transition: color .2s; }
.footer--dark .footer__col a:hover { color: #fff; }
.footer--dark .footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
  gap: 12px;
}
.footer--dark .footer__bottom a { color: #aaa; }
.footer--dark .footer__bottom a:hover { color: #fff; }

@media (max-width: 1280px) {
  .split-hero__title { font-size: 78px; }
  .section-head h2 { font-size: 48px; }
  .contact-band__title { font-size: 52px; }
}
@media (max-width: 1024px) {
  .split-hero { grid-template-columns: 1fr; gap: 50px; padding: 60px 24px; }
  .split-hero__text { padding: 0; }
  .split-hero__title { font-size: 64px; }
  .split-hero__images { grid-template-rows: auto auto; }
  .products--five { grid-template-columns: repeat(3, 1fr); }
  .popular__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-band { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .contact-band__copy { padding-left: 0; }
  .contact-band__title { font-size: 44px; }
  .footer--dark .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .split-hero__title { font-size: 50px; }
  .split-hero__sub { font-size: 20px; }
  .section-head h2 { font-size: 38px; }
  .products--five { grid-template-columns: 1fr 1fr; }
  .popular__grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .contact-band__title { font-size: 36px; }
  .footer--dark .footer__cols { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer--dark .footer__bottom { flex-direction: column; text-align: center; }
}

/* Blog hidden for now — may bring back later */
.menu-item-41,
.menu-item-8003 { display: none !important; }

/* ---------- Theme overrides (load after Valeska/Elementor) ---------- */

/* Hero mandala: sit behind the text as a watermark, keep text legible */
.qodef-offset-image-appear-animation--yes .qodef-offset-image-holder {
  z-index: 0 !important;
}
.qodef-offset-image-appear-animation--yes .qodef-offset-image-wrapper,
.qodef-offset-image-appear-animation--yes.qodef-appeared .qodef-offset-image-wrapper {
  opacity: 0.55;
}
/* Hero mandala section: grow it so the larger mandala fits below the navbar,
   clip anything that would otherwise bleed up under the transparent header,
   force the mandala to true center (overrides JS-injected top:55%), and
   vertically center the text column so it lands inside the mandala. */
.elementor-element-34d3794 {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.elementor-element-34d3794 > .elementor-container {
  width: 100%;
}
.elementor-element-34d3794 .qodef-offset-image-holder {
  top: 50% !important;
  left: 50% !important;
}
.qodef-offset-image-wrapper img {
  /* Source PNG is 300×300 — capping at ~440px keeps softness in check */
  width: clamp(360px, 38vw, 440px);
  height: auto;
  max-width: none;
}
@media (max-width: 768px) {
  .elementor-element-34d3794 { min-height: 520px; }
  .qodef-offset-image-wrapper img { width: clamp(280px, 70vw, 360px); }
}
.qodef-offset-image-appear-animation--yes > .elementor-container,
.qodef-offset-image-appear-animation--yes .elementor-column,
.qodef-offset-image-appear-animation--yes .elementor-widget-wrap {
  position: relative;
  z-index: 2;
}

/* Text-selection highlight: neutral standard, not the accent */
::selection { background: rgba(0, 0, 0, .2); color: inherit; }
::-moz-selection { background: rgba(0, 0, 0, .2); color: inherit; }

/* Back-to-top: fainter background, black arrow */
#qodef-back-to-top .qodef-back-to-top-icon {
  background-color: #F6E8EA;
  border-color: #F6E8EA;
  color: #000;
}
#qodef-back-to-top:hover .qodef-back-to-top-icon {
  background-color: #ECD3D5;
  border-color: #ECD3D5;
  color: #000;
}
/* Optical-center the chevron: its viewBox has slightly more empty space
   below the arrow than above, so geometric centering reads a touch high. */
#qodef-back-to-top .qodef-back-to-top-icon svg {
  transform: translateY(1px);
}

/* Subscribe popup: white card (theme baseline is cream) */
#qodef-subscribe-popup-modal .qodef-sp-inner {
  background-color: #fff;
}

/* Footer: light text gets a barely-there pink-white tint (version of accent) */
#qodef-page-footer .widget a:hover,
#qodef-page-footer .widget .qodef-widget-title a:hover,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: #FFF8FA;
}
#qodef-page-footer-top-area .widget a,
#qodef-page-footer-top-area .widget p {
  color: rgba(255, 248, 250, .55);
}

/* Footer mandala: shrink the watermark and fade it so the widget columns sit forward */
#qodef-page-footer-top-area-inner {
  background-image: none !important;
  position: relative;
}
#qodef-page-footer-top-area-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/mandala-white.png);
  background-position: right 90%;
  background-repeat: no-repeat;
  background-size: 200px auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
#qodef-page-footer-top-area-inner > * {
  position: relative;
  z-index: 1;
}
