:root {
  --ink: #172322;
  --ink-soft: #4d5957;
  --forest: #192b2a;
  --forest-2: #27403d;
  --cream: #f5f0e7;
  --sand: #e5d6c1;
  --paper: #fbfaf7;
  --white: #fff;
  --terracotta: #bd6b4c;
  --line: rgba(23, 35, 34, 0.14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1220px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { width: 1.15em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.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; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--ink); transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { background: rgba(251, 250, 247, .94); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(16px); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: baseline; gap: 8px; letter-spacing: .13em; }
.logo__name { font-size: 1rem; font-weight: 600; }
.logo__descriptor { color: var(--terracotta); font-size: .58rem; font-weight: 600; letter-spacing: .24em; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: .85rem; font-weight: 500; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--terracotta); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 { max-width: 920px; font-size: clamp(3.4rem, 7.2vw, 7.1rem); }
h2 { font-size: clamp(2.6rem, 4.5vw, 4.6rem); }
h3 { font-size: 1.1rem; line-height: 1.3; }
.eyebrow { margin-bottom: 24px; color: var(--terracotta); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #e3a387; }
.lede { max-width: 680px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6; }

.hero { position: relative; min-height: 840px; display: flex; align-items: flex-end; overflow: hidden; background: var(--cream); }
.hero__image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,240,231,.98) 0%, rgba(245,240,231,.84) 37%, rgba(245,240,231,.05) 68%), url("/assets/images/velinto-bathroom-hero.png") 65% center / cover no-repeat; }
.hero__content { position: relative; z-index: 1; padding: 180px 0 150px; }
.hero__content h1 { max-width: 760px; margin-bottom: 34px; }
.hero__content .lede { max-width: 570px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 22px; border: 1px solid var(--ink); border-radius: 999px; font-size: .85rem; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--forest); border-color: var(--forest); }
.button--primary:hover { background: var(--terracotta); border-color: var(--terracotta); }
.button--quiet { background: rgba(255,255,255,.35); }
.button--light { color: var(--forest); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: var(--terracotta); border-color: var(--terracotta); }
.button--full { width: 100%; }
.hero__rail { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; height: 58px; display: flex; align-items: center; justify-content: center; gap: clamp(30px, 8vw, 120px); color: rgba(255,255,255,.75); background: var(--forest); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 130px 0; }
.section--statement { background: var(--paper); }
.section--soft { background: var(--cream); }
.section--dark { color: var(--white); background: var(--forest); }
.section--cta { padding-top: 70px; }
.split-heading { display: grid; grid-template-columns: 1fr 2.2fr; gap: 60px; }
.split-heading h2 { max-width: 820px; margin-bottom: 36px; }
.split-heading div > p { max-width: 720px; color: var(--ink-soft); font-size: 1.15rem; }
.section-heading { max-width: 750px; margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 0; }

.brand-panel { min-height: 660px; display: grid; grid-template-columns: .9fr 1.4fr; overflow: hidden; color: var(--white); background: var(--forest); border-radius: var(--radius); }
.brand-panel__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(42px, 6vw, 86px); }
.velinto-logo { display: block; width: min(100%, 235px); height: auto; margin: 0 0 28px; }
.velinto-logo--large { width: min(100%, 325px); margin-bottom: 32px; }
.brand-panel h2 { margin-bottom: 28px; }
.brand-panel__copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.brand-panel__visual { min-height: 520px; background: url("/assets/images/velinto-bathroom-hero.png") 71% center / cover no-repeat; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 600; }
.text-link--light { color: var(--white); }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability { min-height: 300px; padding: 38px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability > svg { width: 26px; height: 26px; margin-bottom: 70px; color: var(--terracotta); }
.capability p { color: var(--ink-soft); font-size: .94rem; }
.cta { max-width: 980px; text-align: center; }
.cta h2 { margin-bottom: 45px; }

.brand-hero { position: relative; min-height: 860px; display: flex; align-items: flex-end; overflow: hidden; background: var(--cream); }
.brand-hero__visual { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,240,231,.96), rgba(245,240,231,.56) 44%, rgba(245,240,231,.03) 73%), url("/assets/images/velinto-bathroom-hero.png") 66% center / cover no-repeat; }
.brand-hero__content { position: relative; padding-top: 170px; padding-bottom: 100px; }
.brand-hero h1 { margin-bottom: 28px; }
.brand-hero .button { margin-top: 24px; }
.section--products { scroll-margin-top: 70px; padding-top: 20px; }
.products-heading { display: grid; grid-template-columns: 1.4fr .75fr; gap: 70px; align-items: end; margin-bottom: 62px; }
.products-heading h2 { max-width: 790px; margin-bottom: 0; }
.products-heading > p { max-width: 460px; margin-bottom: 4px; color: var(--ink-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 20px; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(23,35,34,.10); }
.product-card__image { display: block; overflow: hidden; aspect-ratio: 1; background: #eeeae4; }
.product-card__image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__copy { padding: 27px 28px 30px; }
.product-card__market { margin-bottom: 15px; color: var(--terracotta); font-size: .67rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 9px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.product-card__copy > p:not(.product-card__market) { margin-bottom: 22px; color: var(--ink-soft); font-size: .88rem; }
.product-card__link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 600; }
.store-banner { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-top: 48px; padding: clamp(38px, 5vw, 68px); color: var(--white); background: var(--forest); border-radius: var(--radius); }
.store-banner__copy { display: flex; align-items: center; gap: clamp(38px, 5vw, 74px); }
.store-banner .velinto-logo { flex: 0 0 auto; width: min(22vw, 230px); margin: 0; }
.store-banner h2 { max-width: 650px; margin-bottom: 16px; font-size: clamp(2.2rem, 3.6vw, 3.8rem); }
.store-banner__copy > div > p:last-child { max-width: 600px; margin-bottom: 0; color: rgba(255,255,255,.68); }
.store-banner .button { flex: 0 0 auto; }
.marketplace-note { margin: 18px 4px 0; color: var(--ink-soft); font-size: .72rem; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.numbered { padding: 40px; background: rgba(255,255,255,.58); border: 1px solid rgba(23,35,34,.08); border-radius: 18px; }
.numbered span, .partner-card span { display: block; margin-bottom: 70px; color: var(--terracotta); font-family: var(--serif); font-size: 1.5rem; }
.numbered p, .partner-card p { color: var(--ink-soft); }
.editorial { display: grid; grid-template-columns: 1.3fr 1fr; min-height: 620px; }
.editorial__image { border-radius: var(--radius) 0 0 var(--radius); background: url("/assets/images/velinto-bathroom-hero.png") 73% center / cover no-repeat; }
.editorial__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; }
.editorial__copy h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.editorial__copy p { color: var(--ink-soft); }

.page-hero { min-height: 700px; display: flex; align-items: flex-end; padding-top: 100px; background: radial-gradient(circle at 80% 20%, rgba(189,107,76,.22), transparent 33%), var(--cream); }
.page-hero--partners { background: radial-gradient(circle at 78% 22%, rgba(115,145,130,.30), transparent 34%), var(--cream); }
.page-hero__inner { padding-bottom: 100px; }
.page-hero h1 { max-width: 1040px; margin-bottom: 36px; }
.page-hero .button { margin-top: 26px; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.value-grid article { min-height: 220px; padding: 38px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.value-grid p { max-width: 470px; color: rgba(255,255,255,.65); }
.fact-band, .contact-facts { display: grid; grid-template-columns: repeat(3, 1fr); padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-band div, .contact-facts div { padding: 0 32px; border-right: 1px solid var(--line); }
.fact-band div:first-child, .contact-facts div:first-child { padding-left: 0; }
.fact-band div:last-child, .contact-facts div:last-child { border-right: 0; }
.fact-band span, .contact-facts span { display: block; margin-bottom: 9px; color: var(--ink-soft); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.fact-band strong, .contact-facts strong, .contact-facts a { font-size: 1.03rem; font-weight: 500; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card { min-height: 360px; padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.process { display: grid; grid-template-columns: 1fr 1.25fr; gap: 90px; }
.process__intro { position: sticky; top: 140px; align-self: start; }
.process__steps { margin: 0; padding: 0; list-style: none; }
.process__steps li { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); }
.process__steps li:last-child { border-bottom: 1px solid var(--line); }
.process__steps span { color: var(--terracotta); font-family: var(--serif); font-size: 1.35rem; }
.process__steps h3 { margin-bottom: 8px; }
.process__steps p { color: var(--ink-soft); }

.contact-hero { min-height: 800px; display: flex; align-items: center; padding: 150px 0 80px; background: radial-gradient(circle at 15% 30%, rgba(189,107,76,.18), transparent 28%), var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1.2fr .7fr; gap: 100px; align-items: center; }
.contact-copy h1 { margin-bottom: 34px; }
.email-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.contact-card { padding: 45px; background: rgba(255,255,255,.62); border: 1px solid rgba(23,35,34,.1); border-radius: var(--radius); backdrop-filter: blur(12px); }
.contact-card ul { margin: 0 0 38px; padding-left: 21px; }
.contact-card li { margin-bottom: 10px; color: var(--ink-soft); }

.site-footer { padding: 90px 0 26px; color: rgba(255,255,255,.72); background: #132120; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; padding-bottom: 80px; }
.logo--footer { color: var(--white); margin-bottom: 20px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p { max-width: 350px; }
.footer-label { color: #e3a387; font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.company-details { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-style: normal; }
.company-details strong { color: rgba(255,255,255,.92); font-weight: 500; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 920px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .site-header { background: rgba(251,250,247,.95); }
  .header-inner { height: 72px; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: none; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; padding: 24px; background: var(--cream); font-family: var(--serif); font-size: 2.4rem; }
  .site-nav[data-open] { display: flex; }
  .split-heading, .contact-layout, .process { grid-template-columns: 1fr; gap: 35px; }
  .brand-panel { grid-template-columns: 1fr; }
  .brand-panel__visual { min-height: 400px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .products-heading { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .store-banner, .store-banner__copy { align-items: flex-start; flex-direction: column; }
  .store-banner .velinto-logo { width: 220px; }
  .principle-grid, .partner-grid { grid-template-columns: 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial__image { min-height: 430px; border-radius: var(--radius) var(--radius) 0 0; }
  .editorial__copy { padding: 48px 32px; border-radius: 0 0 var(--radius) var(--radius); }
  .process__intro { position: static; }
  .contact-layout { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .section { padding: 90px 0; }
  .hero, .brand-hero { min-height: 760px; }
  .hero__image, .brand-hero__visual { background: linear-gradient(180deg, rgba(245,240,231,.98) 10%, rgba(245,240,231,.77) 56%, rgba(245,240,231,.18) 100%), url("/assets/images/velinto-bathroom-hero.png") 69% center / cover no-repeat; }
  .hero__content { padding: 130px 0 115px; }
  .brand-hero__content { padding: 135px 0 70px; }
  .hero__rail { justify-content: flex-start; gap: 28px; padding: 0 18px; overflow: hidden; white-space: nowrap; }
  .capability-grid, .value-grid, .fact-band, .contact-facts { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__copy { padding: 24px; }
  .store-banner { padding: 34px 26px; }
  .store-banner__copy { gap: 32px; }
  .store-banner .button { width: 100%; }
  .capability { min-height: auto; }
  .capability > svg { margin-bottom: 42px; }
  .fact-band div, .contact-facts div, .fact-band div:first-child, .contact-facts div:first-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-band div:last-child, .contact-facts div:last-child { border-bottom: 0; }
  .contact-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}
