
:root{
  --linen:#f3eee5;
  --ivory:#fffaf1;
  --stone:#b6aea2;
  --taupe:#d6cab9;
  --olive:#6f7658;
  --charcoal:#25231f;
  --text:#2b2925;
  --muted:#766f64;
  --line:#ded3c2;
  --shadow:0 18px 50px rgba(45,38,28,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--linen);
  color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.6;
}
h1,h2,h3,.brand,.serif{
  font-family:Georgia, "Times New Roman", serif;
  font-weight:500;
  color:var(--charcoal);
  letter-spacing:-.025em;
}
a{color:inherit}
img{max-width:100%;display:block}

.site-header{
  position:sticky;top:0;z-index:10;
  display:flex;align-items:center;justify-content:space-between;
  gap:22px;padding:18px 6%;
  background:rgba(243,238,229,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(214,202,185,.75);
}
.brand{text-decoration:none;font-size:24px;letter-spacing:.045em}
.nav{display:flex;gap:20px;align-items:center;flex-wrap:wrap}
.nav a{text-decoration:none;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#575148}
.nav a:hover{color:var(--charcoal)}

.hero{
  min-height:74vh;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
  padding:52px 6% 64px;
}
.hero-copy{max-width:690px}
.eyebrow{
  margin:0 0 14px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.2em;
  color:var(--olive);
  font-weight:650;
}
.hero h1{
  margin:0;
  font-size:clamp(40px,5.7vw,82px);
  line-height:.98;
}
.lead{
  max-width:610px;
  margin:22px 0 0;
  font-size:clamp(16px,1.6vw,20px);
  color:var(--muted);
}
.hero-image{
  position:relative;
  min-height:500px;
  border-radius:4px 64px 4px 4px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--taupe);
}
.hero-image img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.hero-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.16))}
.caption-card{
  position:absolute;left:18px;bottom:18px;
  width:245px;background:var(--ivory);padding:18px;
  border:1px solid var(--line);box-shadow:0 14px 32px rgba(0,0,0,.10)
}
.caption-card p{margin:0;color:var(--muted);font-size:13px}

.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border:1px solid var(--charcoal);
  background:var(--charcoal);color:var(--ivory);text-decoration:none;
  border-radius:999px;font-size:12px;letter-spacing:.11em;text-transform:uppercase
}
.button.secondary{background:transparent;color:var(--charcoal)}

.section{padding:68px 6%;border-top:1px solid var(--line)}
.section-head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:32px}
.section-head h2{font-size:clamp(32px,4vw,54px);line-height:1.05;margin:0}
.section-head p{max-width:500px;color:var(--muted);font-size:16px}

.discoveries{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.piece-card{
  background:var(--ivory);
  border:1px solid var(--line);
  padding:14px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.piece-card:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(50,44,34,.11)}
.piece-card img{aspect-ratio:4/5;width:100%;object-fit:cover;background:#ddd}
.piece-meta{padding:17px 4px 3px}
.piece-meta h3{font-size:23px;line-height:1.13;margin:0 0 8px}
.piece-meta p{margin:0;color:var(--muted);font-size:15px}
.price{margin-top:11px!important;color:var(--charcoal)!important;font-weight:650}

.story-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:56px;align-items:start}
.quote{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px,3.6vw,50px);
  line-height:1.08;
  color:var(--charcoal);
  margin:0
}
.prose{font-size:17px;color:var(--muted);max-width:700px}

.promise-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.promise-card{
  min-height:165px;
  background:var(--ivory);border:1px solid var(--line);
  padding:22px;display:flex;flex-direction:column;justify-content:space-between
}
.promise-card span{color:var(--olive);letter-spacing:.15em;text-transform:uppercase;font-size:11px;font-weight:700}
.promise-card h3{font-size:23px;margin:14px 0 0}

.editorial-band{
  padding:80px 6%;
  background:var(--charcoal);
  color:var(--ivory);
}
.editorial-band h2{color:var(--ivory);font-size:clamp(36px,5vw,68px);line-height:1;margin:0 0 20px}
.editorial-band p{max-width:720px;color:#d8d0c5;font-size:18px}

.page-hero{padding:66px 6% 46px;border-bottom:1px solid var(--line)}
.page-hero h1{font-size:clamp(42px,5.6vw,72px);line-height:1;margin:0}
.page-hero .lead{max-width:760px}

.collection-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:46px;padding:58px 6%}
.collection-grid .piece-card:nth-child(even){margin-top:50px}

.piece-layout{display:grid;grid-template-columns:1fr .85fr;gap:58px;padding:58px 6%}
.gallery{display:grid;gap:16px}
.gallery img{width:100%;aspect-ratio:1/1;object-fit:cover}
.piece-panel{position:sticky;top:100px;align-self:start}
.piece-panel h1{font-size:clamp(36px,4.3vw,58px);line-height:1;margin:0 0 18px}
.details{border-top:1px solid var(--line);margin:24px 0;padding-top:20px;display:grid;gap:10px;color:var(--muted)}
.details div{display:flex;justify-content:space-between;gap:20px;border-bottom:1px solid rgba(214,202,185,.65);padding-bottom:10px}

.contact-box{background:var(--ivory);border:1px solid var(--line);padding:32px;max-width:740px}
footer{padding:40px 6%;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:22px;flex-wrap:wrap;color:var(--muted)}
footer a{text-decoration:none}

@media(max-width:900px){
  .hero,.story-grid,.piece-layout{grid-template-columns:1fr}
  .hero-image{min-height:380px;border-radius:4px 48px 4px 4px}
  .discoveries,.promise-grid,.collection-grid{grid-template-columns:1fr}
  .collection-grid .piece-card:nth-child(even){margin-top:0}
  .section-head{display:block}
}
@media(max-width:640px){
  .site-header{display:block;padding:16px 6%}
  .nav{margin-top:12px;gap:12px}
  .hero{padding-top:40px;min-height:auto}
  .hero h1{font-size:42px}
  .section{padding:54px 6%}
}

.piece-price{
  font-family:Georgia,"Times New Roman",serif;
  font-size:30px;
  margin:20px 0 0;
  color:var(--charcoal);
}
button.button{cursor:pointer;font-family:inherit}
.cart-items{display:grid;gap:18px;max-width:900px}
.cart-row{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:24px;
  align-items:center;
  background:var(--ivory);
  border:1px solid var(--line);
  padding:16px;
}
.cart-row img{width:160px;height:160px;object-fit:cover}
.cart-row h3{font-size:26px;margin:0 0 8px}
.cart-summary{margin-top:36px;background:var(--ivory);border:1px solid var(--line);padding:30px;max-width:900px}
.form-grid{display:grid;gap:14px;margin-top:20px}
input,textarea{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--line);
  background:white;
  font:inherit;
}
textarea{min-height:150px}
@media(max-width:640px){
  .cart-row{grid-template-columns:1fr}
  .cart-row img{width:100%;height:auto;aspect-ratio:1/1}
}

/* Studio Edition 3.0 */
.luxury-cart{display:grid;grid-template-columns:1.25fr .75fr;gap:42px;padding:58px 6%}.cart-summary{position:sticky;top:100px;align-self:start;background:var(--ivory);border:1px solid var(--line);padding:30px}.summary-line{display:flex;justify-content:space-between;gap:18px;padding:13px 0;border-bottom:1px solid var(--line)}.checkout-primary{width:100%;font-size:13px;padding:16px 20px;margin-top:20px}.cart-reassurance{font-size:13px;color:var(--muted);margin-top:18px}.checkout-grid{display:grid;grid-template-columns:1fr .75fr;gap:42px;padding:58px 6%}.checkout-promise{background:var(--charcoal);color:#ded7cd;padding:32px;align-self:start}.checkout-promise h2{color:var(--ivory);font-size:32px;margin-top:0}.checkout-promise li{margin:10px 0}.curation-label{font-family:Georgia,serif;font-size:24px;text-transform:none!important;letter-spacing:0!important;color:var(--charcoal)!important}.archived{position:relative}.archive-badge{position:absolute;z-index:2;top:26px;left:26px;background:rgba(37,35,31,.9);color:var(--ivory);padding:8px 12px;text-transform:uppercase;letter-spacing:.11em;font-size:10px}.archived img{filter:saturate(.78)}@media(max-width:900px){.luxury-cart,.checkout-grid{grid-template-columns:1fr}.cart-summary{position:static}}

/* Studio Edition 3.2 — clearer cart navigation */
.collection-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:700;
  color:var(--charcoal)!important;
}
.collection-link::before{
  content:"Cart";
  font-size:0;
}
#cart-count{
  min-width:22px;
  height:22px;
  font-size:11px;
  font-weight:700;
  box-shadow:0 0 0 2px rgba(37,35,31,.08);
}


/* Studio Edition 3.3 — visible cart pill */
.collection-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:10px 14px 10px 13px !important;
  border:1px solid rgba(111,118,88,.75) !important;
  border-radius:16px;
  background:rgba(255,250,242,.72);
  color:var(--charcoal)!important;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.collection-link:hover{
  background:var(--ivory);
  border-color:var(--olive)!important;
  transform:translateY(-1px);
}
.collection-link::before{content:none!important}
.cart-icon{
  display:inline-flex;
  color:var(--olive);
}
.cart-icon svg{display:block}
.cart-label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
#cart-count{
  display:inline-grid;
  place-items:center;
  min-width:26px;
  height:26px;
  padding:0 7px;
  border-radius:999px;
  background:var(--olive)!important;
  color:var(--ivory)!important;
  font-size:12px!important;
  font-weight:700;
  box-shadow:none!important;
}
@media(max-width:720px){
  .collection-link{
    width:max-content;
    padding:10px 13px!important;
    margin-top:4px;
  }
}

/* Cart page clarity */
.cart-summary .button.full{
  background:var(--olive);
  border-color:var(--olive);
}
.cart-summary .button.full:hover{
  background:#5f664a;
}


/* =========================================================
   SIFTED Studio Edition 3.4 — Navigation & Interaction Polish
   Built directly on Studio Edition 3.3
   ========================================================= */

/* 1. Lighter, more refined navigation */
.nav{
  gap:24px;
}
.nav a{
  font-size:10px;
  letter-spacing:.145em;
  transition:color .22s ease, opacity .22s ease;
}
.nav a:not(.collection-link):hover{
  color:var(--olive);
}

/* 2. Richer cart badge and refined cart-pill interaction */
.collection-link{
  box-shadow:0 3px 12px rgba(37,35,31,.035);
  transition:
    background .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    transform .24s ease;
}
.collection-link:hover{
  box-shadow:0 8px 20px rgba(37,35,31,.09);
}
#cart-count{
  background:#626a49!important;
  box-shadow:
    0 3px 8px rgba(55,62,38,.25),
    inset 0 1px 0 rgba(255,255,255,.18)!important;
  transition:transform .2s ease, box-shadow .2s ease;
}
.collection-link:hover #cart-count{
  transform:scale(1.05);
  box-shadow:
    0 5px 12px rgba(55,62,38,.3),
    inset 0 1px 0 rgba(255,255,255,.2)!important;
}

/* 3. Premium, restrained hover motion for collection cards */
.card,
.piece-card,
.archive-card,
.article-card{
  overflow:hidden;
  transition:
    transform .32s cubic-bezier(.2,.7,.2,1),
    box-shadow .32s cubic-bezier(.2,.7,.2,1),
    border-color .32s ease;
}
.card img,
.piece-card img,
.archive-card img{
  transition:
    transform .48s cubic-bezier(.2,.7,.2,1),
    filter .4s ease;
  transform-origin:center;
}
.card:hover,
.piece-card:hover,
.archive-card:hover,
.article-card:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 58px rgba(42,36,28,.12);
  border-color:#d3c5b2;
}
.card:hover img,
.piece-card:hover img,
.archive-card:hover img{
  transform:scale(1.015);
}
.archive-card:hover img{
  filter:saturate(.86);
}

/* Smoother button behavior throughout the site */
.button{
  transition:
    background .24s ease,
    border-color .24s ease,
    color .24s ease,
    transform .24s ease,
    box-shadow .24s ease,
    opacity .24s ease;
}
.button:hover{
  transform:translateY(-1px);
  box-shadow:0 7px 17px rgba(37,35,31,.10);
  opacity:1;
}
.button:active{
  transform:translateY(0);
  box-shadow:0 3px 8px rgba(37,35,31,.08);
}

/* Respect visitors who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .card,
  .piece-card,
  .archive-card,
  .article-card,
  .card img,
  .piece-card img,
  .archive-card img,
  .button,
  .collection-link,
  #cart-count{
    transition:none!important;
  }
  .card:hover,
  .piece-card:hover,
  .archive-card:hover,
  .article-card:hover,
  .card:hover img,
  .piece-card:hover img,
  .archive-card:hover img,
  .button:hover,
  .collection-link:hover,
  .collection-link:hover #cart-count{
    transform:none!important;
  }
}

@media(max-width:1100px){
  .nav{gap:17px}
  .nav a{font-size:9.5px;letter-spacing:.125em}
}

@media(max-width:720px){
  .nav{
    gap:13px;
  }
  .nav a{
    font-size:10px;
  }
}


/* Studio Edition 3.6 — Brand Identity Integration */
.brand-logo{
  display:inline-flex!important;
  align-items:center;
  width:190px;
  max-width:24vw;
}
.brand-logo img{
  display:block;
  width:100%;
  height:auto;
}
.footer-logo{
  display:block;
  width:210px;
  max-width:100%;
  margin-bottom:12px;
}
.footer-logo img{
  width:100%;
  height:auto;
}
.story-brand-mark{
  width:86px;
  margin:42px auto 0;
}
.story-brand-mark img{
  width:100%;
  height:auto;
}
.transaction-brand{
  width:220px;
  max-width:70vw;
  margin:38px auto 0;
}
.transaction-brand img{
  width:100%;
  height:auto;
}
@media(max-width:720px){
  .brand-logo{
    width:155px;
    max-width:55vw;
  }
  .footer-logo{
    width:180px;
  }
}

/* Submission-ready accessibility refinements */
.nav a:focus-visible,.button:focus-visible,a:focus-visible{outline:2px solid currentColor;outline-offset:4px}

/* Licensed editorial image integration — July 2026 */
.brand-logo img{width:190px;max-height:54px;object-fit:contain;position:static}
.editorial-hero{display:grid;grid-template-columns:1fr 1.15fr;align-items:stretch;min-height:560px;border-bottom:1px solid var(--line)}
.editorial-hero-copy{padding:76px 7%;display:flex;flex-direction:column;justify-content:center;background:var(--linen)}
.editorial-hero-copy h1{font-size:clamp(44px,5.6vw,78px);line-height:.98;margin:0}
.editorial-hero-image{position:relative;min-height:520px;overflow:hidden}
.editorial-hero-image img{width:100%;height:100%;object-fit:cover}
.editorial-hero-image::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(37,35,31,.06),transparent 34%)}
.image-feature{display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center}
.image-feature.reverse{grid-template-columns:.95fr 1.05fr}
.image-feature.reverse .feature-image{order:2}
.feature-image{position:relative;overflow:hidden;min-height:420px;background:var(--taupe);box-shadow:var(--shadow)}
.feature-image img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.feature-copy h2{font-size:clamp(34px,4.2vw,58px);line-height:1.03;margin:0 0 18px}
.feature-copy p{font-size:17px;color:var(--muted);max-width:620px}
.image-caption{margin-top:12px;color:var(--muted);font-size:12px;letter-spacing:.04em}
.process-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.process-tile{background:var(--ivory);border:1px solid var(--line);overflow:hidden}
.process-tile img{width:100%;aspect-ratio:4/3;object-fit:cover}
.process-tile div{padding:20px}
.process-tile h3{font-size:24px;margin:0 0 8px}
.process-tile p{margin:0;color:var(--muted)}
.journal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.journal-card{background:var(--ivory);border:1px solid var(--line);overflow:hidden}
.journal-card img{width:100%;aspect-ratio:16/10;object-fit:cover}
.journal-card div{padding:24px}
.journal-card h2{font-size:30px;line-height:1.05;margin:0 0 10px}
.journal-card p{margin:0;color:var(--muted)}
.archive-hero-image img{object-position:center 58%}
.promise-mosaic{display:grid;grid-template-columns:1.2fr .8fr;gap:20px}
.promise-mosaic .large{min-height:520px}
.promise-mosaic .stack{display:grid;grid-template-rows:1fr 1fr;gap:20px}
.promise-mosaic figure{margin:0;position:relative;overflow:hidden;background:var(--taupe)}
.promise-mosaic img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.welcome-strip{display:grid;grid-template-columns:1.2fr .8fr;gap:46px;align-items:center}
.welcome-strip img{width:100%;min-height:390px;object-fit:cover;box-shadow:var(--shadow)}
@media(max-width:900px){
  .editorial-hero,.image-feature,.image-feature.reverse,.welcome-strip{grid-template-columns:1fr}
  .editorial-hero-image{min-height:380px}
  .image-feature.reverse .feature-image{order:0}
  .process-gallery,.journal-grid{grid-template-columns:1fr}
  .promise-mosaic{grid-template-columns:1fr}
  .promise-mosaic .large{min-height:380px}
  .promise-mosaic .stack{grid-template-columns:1fr 1fr;grid-template-rows:none;min-height:260px}
}
@media(max-width:640px){
  .editorial-hero-copy{padding:54px 6%}
  .promise-mosaic .stack{grid-template-columns:1fr;min-height:auto}
  .promise-mosaic .stack figure{min-height:260px}
}


/* =========================================================
   SIFTED Gallery Refinement — July 2026
   The website is the gallery. The products are the artwork.
   ========================================================= */
:root{
  --gold:#b58a3b;
  --deep-olive:#596046;
}
body{overflow-x:hidden}
.site-header{
  min-height:76px;
  padding:12px clamp(24px,5vw,72px);
  background:rgba(243,238,229,.96);
}
.brand-lockup{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:178px;
  text-decoration:none;
}
.brand-lockup img{
  width:44px;
  height:54px;
  object-fit:contain;
}
.brand-words{display:flex;flex-direction:column;line-height:1}
.brand-words strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  font-weight:500;
  letter-spacing:.12em;
  color:var(--charcoal);
}
.brand-words small{
  margin-top:7px;
  font-size:9px;
  letter-spacing:.48em;
  color:var(--gold);
}
.nav{gap:clamp(12px,1.6vw,25px)}
.nav a{font-size:9.5px;letter-spacing:.14em}

/* Compact gallery heroes */
.editorial-hero{
  grid-template-columns:minmax(360px,.92fr) minmax(460px,1.08fr);
  min-height:0;
}
.editorial-hero-copy{padding:58px clamp(34px,6vw,88px)}
.editorial-hero-copy h1{font-size:clamp(42px,5vw,70px);line-height:1.01}
.editorial-hero-image{height:440px;min-height:0}
.editorial-hero-image img{position:absolute;inset:0}
.editorial-hero-image::after{background:linear-gradient(90deg,rgba(37,35,31,.10),transparent 38%)}
.page-hero{padding:58px clamp(24px,6vw,88px) 42px}
.page-hero h1{max-width:930px}

/* Homepage welcome image remains inviting, never overwhelming */
body:has(.editorial-hero) .editorial-hero:first-child .editorial-hero-image img{object-position:center}
.welcome-strip{grid-template-columns:1.05fr .95fr;gap:clamp(30px,5vw,68px)}
.welcome-strip img{height:340px;min-height:0;object-fit:cover}
.section{padding:62px clamp(24px,6vw,88px)}
.story-grid{gap:clamp(36px,6vw,86px)}

/* Interior editorial images: framed like works, not full-screen banners */
.image-feature{gap:clamp(34px,6vw,78px)}
.feature-image{min-height:0;height:370px;box-shadow:0 14px 38px rgba(45,38,28,.09)}
.image-feature.reverse .feature-image{height:350px}
.promise-mosaic{max-width:1180px;margin:0 auto;grid-template-columns:1.12fr .88fr}
.promise-mosaic .large{min-height:0;height:440px}
.promise-mosaic .stack{height:440px}
.promise-mosaic figure{border:1px solid var(--line)}
.process-tile img{aspect-ratio:3/2}
.journal-card img{height:300px;aspect-ratio:auto}
.archive-hero-image img{object-position:center 55%}

/* Refined page rooms */
.editorial-hero-copy .lead{font-size:clamp(16px,1.4vw,19px);line-height:1.65}
.contact-box{box-shadow:0 12px 34px rgba(45,38,28,.05)}
.promise-card{min-height:180px}
.promise-card p{color:var(--muted);margin:12px 0 0}

/* Transaction branding uses the approved monogram */
.transaction-brand{
  display:flex;align-items:center;justify-content:center;gap:14px;
  width:auto;margin:30px auto 0;
}
.transaction-brand img{width:52px;height:64px;object-fit:contain}
.transaction-brand div{display:flex;flex-direction:column;line-height:1}
.transaction-brand strong{font-family:Georgia,"Times New Roman",serif;font-size:28px;letter-spacing:.12em;font-weight:500}
.transaction-brand small{margin-top:7px;font-size:9px;letter-spacing:.48em;color:var(--gold)}

@media(max-width:1050px){
  .site-header{align-items:flex-start}
  .brand-lockup{min-width:155px}
  .brand-words strong{font-size:21px}
  .editorial-hero{grid-template-columns:1fr 1fr}
  .editorial-hero-image{height:400px}
}
@media(max-width:900px){
  .site-header{display:block}
  .nav{margin-top:12px}
  .editorial-hero{grid-template-columns:1fr}
  .editorial-hero-copy{padding:48px 6% 44px}
  .editorial-hero-image{height:330px}
  .welcome-strip img{height:300px}
  .feature-image,.image-feature.reverse .feature-image{height:310px}
  .promise-mosaic .large,.promise-mosaic .stack{height:360px}
}
@media(max-width:640px){
  .site-header{padding:12px 5%}
  .brand-lockup img{width:38px;height:46px}
  .brand-words strong{font-size:20px}
  .brand-words small{font-size:8px}
  .nav{gap:10px 14px}
  .nav a{font-size:9px}
  .editorial-hero-copy h1{font-size:42px}
  .editorial-hero-image{height:260px}
  .welcome-strip img{height:240px}
  .feature-image,.image-feature.reverse .feature-image{height:260px}
  .promise-mosaic .large{height:300px}
  .promise-mosaic .stack{height:auto}
  .promise-mosaic .stack figure{min-height:230px}
  .journal-card img{height:230px}
}

/* Exact approved logo replacement — supplied by SIFTED Living, July 2026 */
.brand-image-lockup{
  display:inline-flex;
  align-items:center;
  min-width:auto;
  width:auto;
  gap:0;
}
.brand-image-lockup img{
  display:block;
  width:auto;
  height:100px;
  max-width:370px;
  object-fit:contain;
}
.transaction-image-brand{
  display:block;
  width:260px;
  max-width:78vw;
  margin:30px auto 0;
}
.transaction-image-brand img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}
@media(max-width:1050px){
  .brand-image-lockup{min-width:auto}
  .brand-image-lockup img{height:87px;max-width:322px}
}
@media(max-width:640px){
  .brand-image-lockup img{height:74px;max-width:274px}
  .transaction-image-brand{width:220px}
}

/* Forms and transaction updates — 2026-07-20 */
.form-grid label{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:-8px}
.form-grid input,.form-grid textarea{width:100%;box-sizing:border-box;border:1px solid var(--line);background:#fff;padding:13px 14px;font:inherit;color:var(--charcoal)}
.form-grid input:focus,.form-grid textarea:focus{outline:2px solid rgba(13,35,64,.18);border-color:#0D2340}
.form-grid textarea{resize:vertical;min-height:140px}
.honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.optional{font-size:10px;text-transform:none;letter-spacing:0}
.form-status{margin:14px 0;padding:12px 14px;background:#f5efe5;border-left:3px solid #0D2340}
.form-status:empty{display:none}
.form-fallback{font-size:13px;color:var(--muted);margin-top:15px}
.checkout-selection{border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:16px 0;margin:8px 0}
.checkout-selection h3{margin:0 0 10px}.checkout-selection p{margin:6px 0}
.button.is-disabled,.button[aria-disabled="true"],button:disabled{opacity:.45;cursor:not-allowed;pointer-events:none}

/* Ray-Ban cart test listing — 2026-07-20 */
.product-detail{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:clamp(38px,6vw,86px);padding:64px clamp(24px,6vw,88px);align-items:start}
.product-image-wrap{border:1px solid var(--line);background:#f3ede2;box-shadow:0 14px 38px rgba(45,38,28,.07)}
.product-image-wrap img{display:block;width:100%;height:auto}
.product-copy{max-width:650px}.product-copy h1{font-family:Georgia,"Times New Roman",serif;font-size:clamp(42px,5vw,70px);line-height:1.03;margin:14px 0 24px;font-weight:400}
.test-notice{padding:16px 18px;border-left:3px solid #0D2340;background:#f5efe5;line-height:1.6}
.product-facts{margin:28px 0;border-top:1px solid var(--line)}
.product-facts p{display:grid;grid-template-columns:120px 1fr;gap:20px;margin:0;padding:14px 0;border-bottom:1px solid var(--line)}
.product-facts strong{font-size:11px;letter-spacing:.08em;text-transform:uppercase}.product-facts span{color:var(--muted)}
.price small{font-size:13px;font-family:Arial,sans-serif;font-weight:400;color:var(--muted)}
.test-collection-grid{max-width:720px}.piece-card h3 a{text-decoration:none;color:inherit}
@media(max-width:850px){.product-detail{grid-template-columns:1fr}.product-copy{max-width:none}}
@media(max-width:520px){.product-facts p{grid-template-columns:1fr;gap:5px}}
