:root { --ink: #171715; --paper: #f3efe7; --paper2: #e8e1d5; --gold: #9a7a52; --line: rgba(23,23,21,.18); --serif: 'Playfair Display', Georgia,'Times New Roman',serif; --sans: 'Poppins', Arial,Helvetica,sans-serif; --max: 1500px; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); overflow-x: hidden; }
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; color: inherit; cursor: pointer; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Site-wide animated cursor (desktop mouse devices only). */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  will-change: transform, width, height, margin;
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: #8f6c4b;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(83, 60, 42, 0.45);
  transition: width .18s ease, height .18s ease, margin .18s ease, border-color .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring { display: none !important; }
}

.container { width: min(calc(100% - 64px),var(--max)); margin: auto; }
.section { padding: 125px 0; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 23px; font-size: 10px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow:before { content: ''; width: 42px; height: 1px; background: currentColor; }
.display { font: 400 clamp(56px,7vw,112px)/.95 var(--serif); letter-spacing: -.035em; }
.title { font: 400 clamp(42px,5vw,76px)/1.03 var(--serif); letter-spacing: -.025em; }
.copy { font-size: 15px; line-height: 1.9; color: rgba(23,23,21,.64); }
.link { display: inline-flex; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid; font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.button { display: inline-flex; margin-top: 30px; padding: 17px 24px; color: #fff; background: var(--ink); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(38px); transition: .9s ease; }
.reveal.visible { opacity: 1; transform: none; }
.nav { position: absolute; inset: 0 0 auto; z-index: 1000; color: #fff; border-bottom: 1px solid rgba(255,255,255,.28); transition: .35s; }
.nav.fixed { position: fixed; color: var(--ink); background: rgba(243,239,231,.94); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-inner { height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links.right { justify-content: flex-end; }
.nav a, .menu-trigger { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.brand { font: 400 30px var(--serif)!important; letter-spacing: .05em!important; text-align: center; }
.brand small { display: block; margin-top: 3px; font: 600 7px var(--sans); letter-spacing: .36em; text-transform: uppercase; }
.mobile-trigger { display: none; width: 44px; }
.mobile-trigger:before, .mobile-trigger:after, .mobile-trigger i { content: ''; display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; }
.menu-overlay { position: fixed; inset: 0; z-index: 1200; display: grid; grid-template-columns: 1fr 1fr; color: #fff; background: #161614; opacity: 0; visibility: hidden; transition: .4s; }
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-visual { background: url('../images/placeholders/landscape.jpg') center/cover; }
.menu-panel { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 8vw; overflow: auto; }
.menu-panel a { width: max-content; margin: 5px 0; font: 400 clamp(30px,3.4vw,55px)/1.08 var(--serif); transition: .25s; }
.menu-panel a:hover { color: var(--gold); }
.menu-close { position: absolute; top: 30px; right: 35px; font-size: 40px; }
.hero, .inner-hero { position: relative; color: #fff; background: linear-gradient(90deg,rgba(8,8,7,.6),rgba(8,8,7,.06)),var(--hero) center/cover no-repeat; }
.hero { min-height: 100vh; }
.hero-content { min-height: 100vh; display: flex; align-items: flex-end; padding: 180px 0 90px; }
.hero-copy { max-width: 980px; }
.hero p, .inner-hero p { max-width: 550px; margin: 30px 0 36px; color: rgba(255,255,255,.78); line-height: 1.85; }
.scroll-text { position: absolute; right: 30px; bottom: 35px; writing-mode: vertical-rl; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.inner-hero { min-height: 680px; display: flex; align-items: flex-end; padding: 190px 0 75px; }
.inner-hero .container { position: relative; z-index: 2; }
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: center; }
.intro-grid .copy { max-width: 520px; margin: 32px 0; }
.intro-images { display: grid; grid-template-columns: .68fr 1fr; gap: 22px; align-items: end; }
.intro-images figure { overflow: hidden; }
.intro-images figure:first-child { height: 430px; }
.intro-images figure:last-child { height: 690px; }
.intro-images img, .category-card img, .product-card img, .project-card img { transition: transform .9s ease; }
.intro-images figure:hover img, .category-card:hover img, .product-card:hover img, .project-card:hover img { transform: scale(1.045); }
.marquee { overflow: hidden; padding: 31px 0; border-block: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: move 28s linear infinite; }
.marquee span { padding: 0 34px; font: 400 29px var(--serif); white-space: nowrap; }
.marquee em { color: var(--gold); font-style: normal; }
.categories { color: #fff; background: #171715; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 65px; }
.section-head .copy { max-width: 520px; }
.categories .copy { color: rgba(255,255,255,.62); }
.category-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 285px; gap: 18px; }
.category-card { position: relative; overflow: hidden; background: #333; }
.category-card:nth-child(7n+1) { grid-column: span 7; grid-row: span 2; }
.category-card:nth-child(7n+2) { grid-column: span 5; }
.category-card:nth-child(7n+3) { grid-column: span 5; }
.category-card:nth-child(7n+4) { grid-column: span 5; grid-row: span 2; }
.category-card:nth-child(7n+5) { grid-column: span 7; }
.category-card:nth-child(7n+6) { grid-column: span 7; }
.category-card:nth-child(7n) { grid-column: span 5; }
.category-shade { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,8,7,.8),transparent 70%); }
.category-info { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.category-info small, .product-info small { display: block; margin-bottom: 7px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.category-info h3 { font: 400 clamp(30px,3vw,51px) var(--serif); }
.round-arrow { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }
.statement { padding: 150px 0; background: var(--paper2); text-align: center; }
.statement p { max-width: 1260px; margin: auto; font: 400 clamp(40px,6vw,86px)/1.08 var(--serif); }
.statement em { color: var(--gold); font-style: normal; }
.products { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 70px 28px; }
.product-card:nth-child(3n+1) { grid-column: span 2; }
.product-card figure { height: 540px; overflow: hidden; background: #ddd; }
.product-card:nth-child(3n+1) figure { height: 760px; }
.product-info { display: flex; justify-content: space-between; gap: 25px; padding-top: 18px; }
.product-info h2, .product-info h3 { font: 400 30px var(--serif); }
.product-info span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.project-section { color: #fff; background: #171715; }
.project-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 430px 360px; gap: 18px; }
.project-card { position: relative; overflow: hidden; }
.project-card:first-child { grid-row: span 2; }
.product-detail { padding-top: 180px; }
.product-detail-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 8vw; align-items: center; }
.product-detail-grid figure { height: 760px; }
.product-detail-grid .rich { margin-top: 28px; }
.price { margin-top: 20px; font-size: 20px; }
.narrow { max-width: 900px; }
.rich { font-size: 17px; line-height: 2; }
.contact { padding: 120px 0 90px; color: #fff; background: #171715; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; }
.contact p { max-width: 570px; margin-top: 28px; color: rgba(255,255,255,.63); line-height: 1.8; }
.contact-form { align-self: end; }
.field { display: flex; border-bottom: 1px solid rgba(255,255,255,.35); }
.field input { width: 100%; padding: 18px 0; color: #fff; background: none; border: 0; outline: 0; }
.field input::placeholder { color: rgba(255,255,255,.53); }
.field button { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.form-msg { min-height: 22px; margin-top: 15px; font-size: 12px; }
footer { color: rgba(255,255,255,.64); background: #171715; }
.footer-main { display: grid; grid-template-columns: 1.2fr repeat(3,.6fr); gap: 60px; padding: 70px 0; border-top: 1px solid rgba(255,255,255,.14); }
.footer-logo { font: 400 38px var(--serif); color: #fff; }
.footer-main p { max-width: 340px; margin-top: 18px; font-size: 12px; line-height: 1.8; }
.footer-main h4 { margin-bottom: 20px; color: #fff; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.footer-main a { display: block; margin-bottom: 12px; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.error-page { min-height: 75vh; padding-top: 190px; }
.home-shell { padding: 88px 0; background: radial-gradient(circle at 50% 0,#d9c5b0 0,#c5ae99 34%,#aa927e 100%); }
.home-frame { width: min(calc(100% - 70px),1320px); margin: auto; padding: 44px; background: #f8f6f1; border-radius: 52px; box-shadow: 0 30px 90px rgba(54,36,23,.25); }
.compact-hero { position: relative; min-height: 610px; overflow: hidden; border-radius: 31px; background: var(--hero) center/cover no-repeat; color: #fff; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(18,13,9,.68),rgba(18,13,9,.2) 55%,rgba(18,13,9,.45)); }
.compact-hero-copy { position: absolute; z-index: 2; left: 7%; bottom: 13%; max-width: 590px; }
.compact-hero-copy h1 { font: 400 clamp(42px,5vw,72px)/1.02 var(--serif); letter-spacing: -.035em; }
.mini-label, .section-kicker { display: block; margin-bottom: 18px; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.compact-hero-side { position: absolute; z-index: 2; right: 6%; bottom: 14%; width: 320px; }
.compact-hero-side p { margin-bottom: 20px; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.86); }
.soft-button, .text-button { display: inline-flex; padding: 13px 18px; border-radius: 7px; background: #f8f4ec; color: #342a22; font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.hero-scroll { position: absolute; z-index: 2; right: 22px; top: 50%; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { margin-top: 10px; }
.home-section { padding: 92px 8%; }
.company-intro { display: grid; grid-template-columns: 285px 1fr; gap: 18px; }
.stat-card, .about-card { min-height: 265px; border-radius: 22px; overflow: hidden; }
.stat-card { position: relative; padding: 28px; color: #fff; background: linear-gradient(145deg,#c7a57d,#9f7a57); }
.stat-card>span { font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.stat-mark { position: absolute; right: 22px; top: 22px; font: 400 72px var(--serif); opacity: .28; }
.stat-row { position: absolute; left: 28px; right: 28px; bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.stat-row strong { font: 400 38px var(--serif); }
.stat-row b { font-size: 18px; font-weight: 400; }
.stat-row small { display: block; margin-top: 3px; font-size: 8px; line-height: 1.3; }
.about-card { display: grid; grid-template-columns: 1.2fr .8fr; background: #eee8dd; }
.about-copy { padding: 38px 34px; }
.about-copy h2, .home-heading h2 { font: 400 clamp(35px,4vw,57px)/1.04 var(--serif); }
.about-copy h2 em, .home-heading h2 em { color: #a88661; font-style: normal; }
.about-copy p { max-width: 530px; margin-top: 14px; font-size: 12px; line-height: 1.65; color: rgba(23,23,21,.68); }
.about-image { overflow: hidden; border-radius: 50% 0 0 50%; }
.home-heading { margin-bottom: 42px; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 45px; }
.heading-row>p { max-width: 430px; font-size: 12px; line-height: 1.7; color: rgba(23,23,21,.62); }
.process-stack { position: relative; height: 560px; }
.process-panel { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(23,23,21,.09); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 9px 30px rgba(40,27,18,.06); opacity: 0; transform: translateY(25px) scale(.985); pointer-events: none; }
.process-panel.active { opacity: 1; transform: none; pointer-events: auto; z-index: 5; }
.process-panel, .process-panel figure img { transition: .55s ease; }
.process-panel figure { overflow: hidden; }
.process-panel.active figure img { animation: softZoom 7s ease both; }
.process-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 44px; }
.step-number { position: absolute; top: 48px; font: 400 68px var(--serif); color: #e6d7c5; }
.process-copy h3 { position: relative; max-width: 420px; font: 400 30px/1.08 var(--serif); }
.process-copy p { max-width: 430px; margin-top: 17px; font-size: 12px; line-height: 1.7; color: rgba(23,23,21,.63); }
.process-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.process-dots button { width: 7px; height: 7px; border-radius: 50%; background: #cfc4b8; transition: .3s; }
.process-dots button.active { width: 30px; border-radius: 9px; background: #9a7a52; }
.compact-category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; }
.compact-category { position: relative; height: 285px; overflow: hidden; border-radius: 18px; color: #fff; }
.compact-category:nth-child(1), .compact-category:nth-child(8), .compact-category:nth-child(13) { grid-column: span 2; }
.compact-category img { transition: transform .7s ease; }
.compact-category:hover img { transform: scale(1.06); }
.compact-category-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(12,9,7,.79),transparent 72%); }
.compact-category>span { position: absolute; top: 18px; left: 18px; font-size: 8px; letter-spacing: .14em; }
.compact-category h3 { position: absolute; left: 18px; bottom: 19px; max-width: 75%; font: 400 24px/1.05 var(--serif); }
.compact-category b { position: absolute; right: 18px; bottom: 20px; font-size: 8px; font-weight: 500; text-transform: uppercase; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1.02fr; grid-template-rows: 230px 235px; gap: 14px; }
.why-card { position: relative; overflow: hidden; border-radius: 18px; }
.why-card.light { padding: 28px; background: #ede7dc; }
.why-card>span { font-size: 9px; letter-spacing: .14em; }
.why-card h3 { margin-top: 20px; font: 400 24px var(--serif); }
.why-card p { margin-top: 10px; font-size: 11px; line-height: 1.6; color: rgba(23,23,21,.62); }
.line-art { position: absolute; right: 22px; bottom: -20px; font: 400 125px var(--serif); color: #a68662; opacity: .42; }
.image-top { background: #f0ece4; }
.image-top img { height: 105px; }
.image-top>div { padding: 17px 23px; }
.image-top h3 { margin-top: 9px; }
.why-card.dark { grid-column: 3; grid-row: 1/span 2; padding: 32px; color: #fff; background: linear-gradient(145deg,#8c6b50,#2e211a); }
.why-card.dark p { color: rgba(255,255,255,.7); }
.why-bottom { position: absolute; left: 32px; right: 32px; bottom: 31px; }
.why-bottom h4 { font: 400 20px var(--serif); }
.wide-image { grid-column: 1/span 2; }
.wide-image img { position: absolute; inset: 0; }
.wide-image:after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(12,9,7,.82),transparent 65%); }
.wide-image>div { position: absolute; z-index: 2; left: 28px; bottom: 23px; color: #fff; }
.wide-image h3 { margin: 0; }
.wide-image p { color: rgba(255,255,255,.75); }
.featured-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.featured-mini figure { height: 300px; overflow: hidden; border-radius: 17px; }
.featured-mini img { transition: .6s; }
.featured-mini:hover img { transform: scale(1.05); }
.featured-mini small { display: block; margin-top: 13px; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #8a7765; }
.featured-mini h3 { margin-top: 5px; font: 400 22px var(--serif); }
.home-project-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 14px; }
.home-project-card { position: relative; height: 410px; overflow: hidden; border-radius: 18px; color: #fff; }
.home-project-card:first-child { height: 520px; }
.home-project-card img { transition: .7s; }
.home-project-card:hover img { transform: scale(1.05); }
.home-project-card:after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(12,9,7,.78),transparent 65%); }
.home-project-card>div { position: absolute; z-index: 2; left: 24px; bottom: 23px; }
.home-project-card small { font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.home-project-card h3 { margin-top: 6px; font: 400 25px var(--serif); }
.reveal-left, .reveal-right, .reveal-up { opacity: 0; transition: opacity .8s ease,transform .8s ease; }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal-up { transform: translateY(30px); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible { opacity: 1; transform: none; }
.home-page .nav { top: 110px; left: 50%; right: auto; width: min(calc(100% - 150px),1060px); transform: translateX(-50%); color: var(--ink); background: rgba(255,255,255,.94); border: 0; border-radius: 25px; box-shadow: 0 8px 25px rgba(50,35,23,.12); overflow: hidden; }
.home-page .nav .nav-inner { height: 56px; width: calc(100% - 35px); }
.home-page .nav.fixed { top: 12px; }
.home-page .brand { font-size: 22px!important; }
.home-page .brand small { font-size: 6px; }
.home-page .nav a, .home-page .menu-trigger { font-size: 8px; }
.home-page .nav-links { gap: 25px; }
.brand-image-link { display: inline-flex!important; align-items: center; justify-content: center; }
.site-logo-image { display: block; width: auto; height: 44px; max-width: 190px; object-fit: contain; }
.footer-logo-link { display: inline-flex!important; align-items: center; }
.footer-logo-image { display: block; width: auto; height: 58px; max-width: 230px; object-fit: contain; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 1400; display: flex!important; align-items: center; gap: 9px; min-height: 52px; padding: 0 17px 0 14px!important; margin: 0!important; border-radius: 999px; background: #25d366; color: #fff!important; box-shadow: 0 12px 32px rgba(0,0,0,.2); font-size: 11px!important; font-weight: 700; letter-spacing: .04em; transition: transform .25s ease,box-shadow .25s ease; }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 17px 38px rgba(0,0,0,.27); }
.site-footer { width: 100%; margin: 0; background: #151417; color: #fff; border-radius: 0; padding: 72px 0 28px; }
.site-footer-inner { width: min(1320px,calc(100% - 64px)); margin: 0 auto; }
.site-footer .footer-main { display: grid; grid-template-columns: 1.35fr .65fr .8fr 1fr; gap: 65px; padding: 0; border: 0; }
.site-footer .footer-brand p { max-width: 360px; margin-top: 25px; color: #fff; font-size: 12px; line-height: 1.8; }
.site-footer .footer-col h4 { margin-bottom: 22px; color: #ae8957; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.site-footer .footer-col a, .site-footer .footer-col p { display: block; margin-bottom: 11px; color: #fff; font-size: 11px; line-height: 1.7; }
.site-footer .footer-col a:hover { color: #ae8957; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.15); color: #ae8957; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.light-header .nav { color: var(--ink); background: rgba(255,255,255,.94); border-color: var(--line); }
.about-hero { position: relative; height: 700px; color: #fff; overflow: hidden; }
.about-hero:after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.62),rgba(0,0,0,.08)); }
.about-hero-copy { position: absolute; z-index: 2; left: max(32px,calc((100% - 1400px)/2)); bottom: 70px; max-width: 750px; }
.about-hero-copy p { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.about-hero-copy h1 { margin-top: 16px; font: 400 clamp(50px,7vw,100px)/.95 var(--serif); }
.about-intro { display: grid; grid-template-columns: .3fr 1fr; gap: 80px; }
.about-statement h2 { font: 400 clamp(36px,5vw,70px)/1.08 var(--serif); }
.about-statement em, .values-message em { color: #ae8957; font-style: normal; }
.about-image-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.about-image-grid figure { height: 650px; }
.about-detail h2 { font: 400 46px/1.08 var(--serif); }
.about-detail>p:not(.eyebrow) { margin: 25px 0; line-height: 1.8; color: #6b655f; }
.values { display: grid; grid-template-columns: .4fr 1fr .65fr; gap: 60px; align-items: center; }
.values-message h2 { font: 400 clamp(50px,7vw,95px)/.9 var(--serif); }
.values-copy { line-height: 1.8; color: #6b655f; }
.values-copy ul { margin-top: 25px; list-style: none; }
.values-copy li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.collections-hero { padding: 190px 0 110px; background: #eee8dd; }
.collections-hero>div>p:last-child { max-width: 620px; margin-top: 24px; line-height: 1.8; color: #6e675f; }
.all-collections-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 54px 24px; opacity: 1; visibility: visible; }
.all-collection-card figure { height: 510px; overflow: hidden; }
.all-collection-card:nth-child(3n+1) figure { height: 650px; }
.all-collection-card img { transition: .7s; }
.all-collection-card:hover img { transform: scale(1.04); }
.all-collection-info { display: grid; grid-template-columns: minmax(0,1fr) 34px; align-items: start; padding: 20px 4px; border-bottom: 1px solid rgba(21,20,23,.18); gap: 10px; }
.all-collection-info h2 { font: 400 28px var(--serif); }
.all-collection-info i { text-align: right; font-style: normal; padding-top: 4px; color: #ae8957; font-size: 20px; transition: transform .3s ease; }
.reference-product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px 20px; }
.reference-product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 22px rgba(28,22,18,.09); position: relative; }
.reference-product-card figure { position: relative; height: 270px; overflow: hidden; background: #eee; }
.reference-product-card figure img { transition: .55s; }
.reference-product-card figure span { position: absolute; inset: auto 12px 12px; display: block; padding: 12px; color: #fff; background: rgba(21,20,23,.9); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; transform: translateY(65px); transition: .35s; }
.reference-product-card:hover figure img { transform: scale(1.04); }
.reference-product-card:hover figure span { transform: none; }
.reference-product-name { padding: 15px 14px; font-size: 12px; font-weight: 600; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-detail-page { background: #f3efe7; }
.product-showcase { padding-top: 155px; }
.product-showcase-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; min-height: 720px; background: #f3efe7; border-radius: 24px; overflow: visible; }
.product-gallery { padding: 55px; background: #f3efe7; border-radius: 24px; }
.product-main-image { height: 520px; background: #fafafa; }
.product-main-image img { object-fit: contain; }
.product-thumbs { display: flex; justify-content: center; gap: 12px; margin-top: 25px; }
.product-thumb { width: 82px; height: 75px; padding: 4px; border: 1px solid transparent; border-radius: 8px; background: #f4f5f8; overflow: hidden; }
.product-thumb.active { border-color: #ae8957; }
.product-thumb img { object-fit: contain; }
.product-summary { padding: 70px; background: #fff; border-radius: 24px; box-shadow: 0 16px 45px rgba(39,31,24,.08); align-self: stretch; }
.product-category, .product-code { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #888; }
.product-code { margin-top: 28px; }
.product-summary h1 { margin-top: 8px; font: 600 clamp(34px,4vw,58px)/1.02 var(--sans); }
.product-short { max-width: 520px; margin-top: 24px; line-height: 1.8; color: #686d78; }
.product-swatches { display: flex; gap: 8px; margin: 22px 0; }
.product-swatches i { width: 14px; height: 14px; border-radius: 50%; background: #d9d2c8; border: 1px solid #aaa; }
.product-swatches i:nth-child(2) { background: #80786e; }
.product-swatches i:nth-child(3) { background: #20242d; }
.product-specs { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.product-specs div { min-width: 120px; padding: 12px; border: 1px solid #ccd0d9; }
.product-specs span { display: block; font-size: 8px; text-transform: uppercase; color: #888; }
.product-specs strong { display: block; margin-top: 5px; font-size: 12px; }
.product-price { margin-top: 30px; font-size: 24px; font-weight: 700; }
.stock-status { margin-top: 8px; font-size: 11px; color: #6f746f; }
.quantity-row { display: flex; align-items: center; margin-top: 25px; }
.quantity-row button, .quantity-row input { width: 40px; height: 38px; border: 1px solid #cfd2da; text-align: center; background: #fff; }
.quantity-row input { border-left: 0; border-right: 0; }
.product-actions { display: flex; gap: 12px; margin-top: 30px; }
.product-actions a, .product-actions button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 28px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-add-cart { width: 100%; border: 0; border-radius: 999px; background: #151417; color: #fff; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.product-add-cart:hover, .product-add-cart.added { background: #ae8957; transform: translateY(-2px); }
.product-description-section { padding: 80px 0 110px; background: #f3efe7; }
.product-long-copy { max-width: 900px; font-size: 15px; line-height: 1.9; color: #64605b; }
body:not(.home-page) { padding-top: 0; }
.shared-floating-header { height: 64px; width: min(1240px,calc(100% - 40px)); position: absolute; z-index: 1000; top: 24px; left: 50%; transform: translateX(-50%); border-radius: 32px; background: rgba(255,255,255,.96); display: grid; grid-template-columns: 170px 1fr 220px; align-items: center; padding: 0 18px 0 25px; box-shadow: 0 8px 24px rgba(40,30,20,.12); backdrop-filter: blur(12px); transition: .4s cubic-bezier(.22,.8,.2,1); }
.shared-floating-header.sticky { position: fixed; top: 16px; width: min(1240px,calc(100% - 40px)); }
.shared-floating-header .logo-image-link { display: flex; align-items: center; height: 100%; }
.shared-floating-header .site-logo-image { display: block; width: auto; max-width: 145px; height: auto; max-height: 42px; object-fit: contain; }
.shared-floating-header .desktop-nav { display: flex; justify-content: center; align-items: center; gap: 18px; }
.shared-floating-header .desktop-nav a { font-size: 9px; color: #59544d; position: relative; white-space: nowrap; }
.shared-floating-header .desktop-nav a:after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: #b59673; transition: .3s; }
.shared-floating-header .desktop-nav a:hover:after { right: 0; }
.shared-floating-header .header-cta { display: inline-flex; align-items: center; justify-content: center; background: #b59673; color: #fff; border-radius: 8px; padding: 13px 18px; font-size: 9px; border: 1px solid transparent; transition: .3s; }
.shared-floating-header .header-cta:hover { background: #49382d; transform: translateY(-2px); }
.shared-floating-header .menu-toggle { display: none; border: 0; background: none; width: 36px; }
.shared-floating-header .menu-toggle span { display: block; width: 21px; height: 1px; background: #222; margin: 6px auto; }
.mobile-menu { position: fixed; inset: 0; z-index: 1200; display: none; background: #151417!important; color: #fff!important; padding: 90px 34px 40px; }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu nav a { font: 400 34px/1.1 Georgia,serif; color: #fff!important; border-color: rgba(255,255,255,.13)!important; }
.mobile-menu nav a:hover { color: #ae8957!important; }
.mobile-close { position: absolute; right: 25px; top: 20px; border: 0; background: none; color: #fff!important; font-size: 42px; }
body:not(.home-page) .about-hero, body:not(.home-page) .collections-hero, body:not(.home-page) .inner-hero { padding-top: 105px; }
.collections-list-section { min-height: 520px; background: #f3efe7; }
.collections-intro { max-width: 650px; margin-top: 28px; color: rgba(21,20,23,.65); font-size: 15px; line-height: 1.8; }
.all-collection-card { display: block; min-width: 0; color: #151417; opacity: 1; visibility: visible; transition: transform .45s ease; }
.all-collection-card.reveal { opacity: 0; transform: translateY(28px); }
.all-collection-card.reveal.visible { opacity: 1; transform: none; }
.no-js .all-collection-card.reveal { opacity: 1; transform: none; }
.all-collection-image { height: 500px; margin: 0; overflow: hidden; border-radius: 18px; background: #e5ddd2; }
.all-collection-card:nth-child(3n+1) .all-collection-image { height: 650px; }
.all-collection-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.22,.8,.2,1); }
.all-collection-card:hover .all-collection-image img, .all-collection-card.is-hovered .all-collection-image img { transform: scale(1.045); }
.collection-copy h2 { margin: 0; font: 400 30px/1.15 Georgia,'Times New Roman',serif; }
.collection-copy p { max-width: 520px; margin: 9px 0 0; color: rgba(21,20,23,.6); font-size: 13px; line-height: 1.65; }
.all-collection-card:hover .all-collection-info i { transform: translate(4px,-4px); }
.collections-empty { padding: 110px 20px; text-align: center; }
.collections-empty h2 { margin-bottom: 12px; font: 400 42px/1.1 Georgia,'Times New Roman',serif; }
.collections-empty p { margin-bottom: 24px; color: rgba(21,20,23,.62); }
.collections-empty a { display: inline-block; padding-bottom: 6px; border-bottom: 1px solid #ae8957; color: #ae8957; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.floating-header { max-width: 1180px; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-icon-link { position: relative; display: flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; color: #151417; }
.header-icon { font-size: 11px; font-weight: 600; }
.header-count { position: absolute; right: -1px; top: -4px; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 20px; background: #ae8957; color: #fff; font-size: 8px; }
.product-wishlist { min-height: 54px; padding: 0 24px; border: 1px solid #d8d0c5; background: #fff; color: #151417; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-wishlist.active, .ajax-wishlist.active { color: #fff; background: #ae8957; }
.product-actions button { cursor: pointer; }
.product-card-link { display: block; }
.product-card-actions { display: flex; border-top: 1px solid #eee6db; }
.product-card-actions button { height: 42px; border: 0; background: #fff; cursor: pointer; }
.product-card-actions .ajax-wishlist { width: 48px; border-right: 1px solid #eee6db; font-size: 19px; }
.product-card-actions .ajax-cart { flex: 1; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.product-card-actions button:hover, .product-card-actions button.added { background: #151417; color: #fff; }
.category-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.category-back-button, .category-catalogue-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; margin: 0; padding: 0 19px; border: 1px solid rgba(255,255,255,.74); border-radius: 999px; color: #fff; background: rgba(21,20,23,.28); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .25s ease; }
.category-back-button:hover, .category-catalogue-button:hover { background: #fff; color: #151417; transform: translateY(-2px); }
.product-related-section { padding: 92px 0 110px; background: #fff; overflow: hidden; }
.product-related-heading { max-width: 720px; margin-bottom: 42px; }
.product-related-heading h2 { margin: 9px 0 14px; font: 400 clamp(42px,5vw,72px)/1 var(--serif); letter-spacing: -.04em; }
.product-related-heading > p:last-child { max-width: 580px; color: #6b655f; line-height: 1.75; }
.related-products-slider { display: flex; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; padding: 2px 2px 14px; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.related-products-slider::-webkit-scrollbar { display: none; }
.related-products-slider:focus { outline: 2px solid rgba(154,122,82,.65); outline-offset: 6px; }
.related-products-slider.is-paused { cursor: default; }
.related-product-card { flex: 0 0 min(255px, 72vw); scroll-snap-align: start; overflow: hidden; border: 1px solid #eee7de; border-radius: 17px; background: #fff; }
.related-product-card figure { height: 250px; margin: 0; overflow: hidden; background: #f1ece5; }
.related-product-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.related-product-card:hover figure img { transform: scale(1.04); }
.related-product-card h4 { min-height: 60px; margin: 0; padding: 16px; color: #151417; font: 400 21px/1.12 var(--serif); }
.related-product-card button { width: 100%; min-height: 43px; border: 0; border-top: 1px solid #eee7de; background: #fff; color: #151417; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.related-product-card button:hover, .related-product-card button.added { background: #151417; color: #fff; }
@media (max-width: 600px) { .category-hero-actions { gap: 9px; } .category-back-button, .category-catalogue-button { min-height: 42px; padding: 0 15px; font-size: 9px; } }
.cart-float { position: fixed; right: 26px; bottom: 98px; z-index: 999; display: flex; align-items: center; gap: 7px; height: 48px; padding: 0 17px; border-radius: 30px; background: #151417; color: #fff; font-size: 10px; font-weight: 700; }
.cart-float b { display: grid; place-items: center; min-width: 19px; height: 19px; border-radius: 50%; background: #ae8957; font-size: 8px; }
.shop-list-main { background: #f3efe7; min-height: 100vh; }
.shop-list-hero { padding: 165px 0 70px; }
.shop-list-hero h1 { font: 400 clamp(54px,8vw,105px)/1 Georgia,serif; }
.shop-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.shop-list-card { background: #fff; border-radius: 16px; overflow: hidden; }
.shop-list-card img { width: 100%; height: 310px; object-fit: cover; }
.shop-list-card > a > div { padding: 18px; }
.shop-list-card small { color: #ae8957; text-transform: uppercase; letter-spacing: .12em; }
.shop-list-card h2 { margin: 8px 0; font: 400 25px Georgia,serif; }
.shop-list-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #eee; }
.shop-list-actions button { min-height: 49px; padding: 12px; border: 0; background: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.shop-list-actions .ajax-cart { border-right: 1px solid #eee; background: #151417; color: #fff; }
.shop-list-actions .ajax-cart:hover, .shop-list-actions .ajax-cart.added { background: #ae8957; }
.shop-list-actions .ajax-wishlist:hover { background: #f5eee6; }
.empty-selection { grid-column: 1/-1; padding: 100px 0; text-align: center; }
@keyframes move {to{transform:translateX(-50%)}}
@keyframes softZoom {from{transform:scale(1.05)}to{transform:scale(1)}}
@media(max-width:1000px) {
  .nav-links { display: none; }
  .mobile-trigger { display: block; }
  .nav-inner { display: flex; justify-content: space-between; }
  .intro-grid, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 500px; }
  .category-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(n) { grid-column: auto; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 600px 360px; }
  .project-card:first-child { grid-column: span 2; grid-row: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .menu-overlay { grid-template-columns: 1fr; }
  .menu-visual { display: none; }
  .home-frame { width: min(calc(100% - 30px),1320px); padding: 22px; border-radius: 35px; }
  .company-intro { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 1fr 1fr; }
  .compact-category-grid { grid-template-columns: repeat(2,1fr); }
  .compact-category:nth-child(n) { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card.dark { grid-column: 2; grid-row: 1/span 2; }
  .wide-image { grid-column: 1; }
  .featured-strip, .home-project-grid { grid-template-columns: 1fr 1fr; }
  .home-project-card:first-child { grid-column: span 2; }
  .home-page .nav { top: 45px; width: calc(100% - 70px); }
  .home-page .nav .nav-inner { height: 58px; }
  .reference-product-grid { grid-template-columns: repeat(3,1fr); }
  .product-showcase-grid, .about-image-grid, .values { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .values { gap: 35px; }
}
@media(max-width:700px) {
  .container { width: min(calc(100% - 30px),var(--max)); }
  .section { padding: 82px 0; }
  .nav-inner { height: 76px; }
  .brand { font-size: 23px!important; }
  .hero-content { padding: 145px 0 65px; }
  .display { font-size: 55px; }
  .title { font-size: 42px; }
  .scroll-text { display: none; }
  .intro-images { grid-template-columns: 1fr; }
  .intro-images figure:first-child, .intro-images figure:last-child { height: 480px; }
  .section-head { display: block; }
  .section-head .copy { margin-top: 25px; }
  .category-grid { display: block; }
  .category-card { height: 500px; margin-bottom: 16px; }
  .statement { padding: 90px 0; }
  .statement p { font-size: 42px; }
  .product-card figure, .product-card:nth-child(n) figure { height: 500px; }
  .project-grid { display: block; }
  .project-card { height: 500px; margin-bottom: 16px; }
  .product-detail { padding-top: 120px; }
  .product-detail-grid figure { height: 520px; }
  .contact-grid { gap: 50px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { display: block; line-height: 1.8; }
  .inner-hero { min-height: 600px; }
  .home-shell { padding: 18px 0; }
  .home-frame { width: calc(100% - 16px); padding: 10px; border-radius: 24px; }
  .compact-hero { min-height: 690px; border-radius: 18px; }
  .compact-hero-copy { left: 24px; right: 24px; bottom: 190px; }
  .compact-hero-side { left: 24px; right: 24px; bottom: 35px; width: auto; }
  .home-section { padding: 68px 15px; }
  .about-card { grid-template-columns: 1fr; }
  .about-image { height: 240px; border-radius: 0; }
  .heading-row { display: block; }
  .heading-row>p, .heading-row>.text-button { margin-top: 18px; }
  .process-stack { height: 650px; }
  .process-panel { grid-template-columns: 1fr; grid-template-rows: 1fr 260px; }
  .process-copy { padding: 28px; }
  .step-number { top: 24px; }
  .compact-category-grid, .why-grid, .featured-strip, .home-project-grid { grid-template-columns: 1fr; }
  .compact-category:nth-child(n), .why-card.dark, .wide-image, .home-project-card:first-child { grid-column: auto; grid-row: auto; }
  .compact-category { height: 340px; }
  .why-grid { grid-template-rows: auto; }
  .why-card { min-height: 230px; }
  .why-card.dark { min-height: 430px; }
  .wide-image { height: 260px; }
  .featured-mini figure { height: 360px; }
  .home-project-card, .home-project-card:first-child { height: 390px; }
  .home-page .nav { top: 34px; width: calc(100% - 36px); }
  .home-page .nav.fixed { top: 8px; }
  .reference-product-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .reference-product-card figure { height: 190px; }
  .product-showcase { padding-top: 105px; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .product-gallery, .product-summary { padding: 25px; }
  .product-main-image { height: 360px; }
  .product-actions { display: grid; }
  .all-collections-grid { grid-template-columns: 1fr; }
  .all-collection-card figure, .all-collection-card:nth-child(3n+1) figure { height: 420px; }
  .about-hero { height: 600px; }
  .about-image-grid figure { height: 450px; }
}
@media(prefers-reduced-motion:reduce) {
  *, *:before, *:after { animation: none!important; transition: none!important; scroll-behavior: auto!important; }
  .all-collection-card.reveal { opacity: 1!important; transform: none!important; }
  .all-collection-image img { transition: none; }
}
@media(max-width:760px) {
  .site-logo-image { height: 35px; max-width: 150px; }
  .footer-logo-image { height: 48px; max-width: 190px; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 52px; padding: 0!important; justify-content: center; }
  .whatsapp-float span { display: none; }
}
@media(max-width:900px) {
  .site-footer .footer-main { grid-template-columns: 1fr 1fr; }
  .shared-floating-header { width: calc(100% - 24px); max-width: none; height: 58px; grid-template-columns: auto minmax(0,1fr) 42px; column-gap: 8px; padding: 0 10px 0 14px; border-radius: 29px; overflow: hidden; }
  .shared-floating-header .desktop-nav, .shared-floating-header .header-cta { display: none; }
  .shared-floating-header .menu-toggle { display: flex; align-items: center; justify-content: center; grid-column: 3; width: 40px; height: 40px; justify-self: end; }
  .shared-floating-header .site-logo-image { max-width: 112px; max-height: 34px; }
  .desktop-nav, .header-cta { display: none; }
  .floating-header { width: calc(100% - 24px); }
  .header-actions { grid-column: 2; min-width: 0; justify-content: flex-end; gap: 4px; margin: 0; overflow: hidden; }
  .header-actions .header-icon-link { display: flex; min-width: 30px; height: 30px; font-size: 10px; }
  .header-actions .header-icon-link:first-child { display: none; }
  .shop-list-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .site-footer-inner { width: calc(100% - 36px); }
  .site-footer .footer-main { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { display: block; line-height: 2; }
  .shop-list-grid { grid-template-columns: 1fr; }
  .product-summary { padding: 22px; border-radius: 18px; }
  .product-actions { display: grid; }
  .product-actions a, .product-actions button { width: 100%; }
  .product-related-section { padding: 68px 0 78px; }
  .product-related-heading { margin-bottom: 38px; }
  .related-products-slider { gap: 13px; padding-bottom: 12px; }
  .related-product-card { flex-basis: min(250px, 78vw); }
  .related-product-card figure { height: 225px; }
  .cart-float { right: 18px; bottom: 88px; }
}
@media(max-width:800px) {
  .all-collections-grid { grid-template-columns: 1fr; gap: 40px; }
  .all-collection-image, .all-collection-card:nth-child(3n+1) .all-collection-image { height: 420px; }
  .collection-copy h2 { font-size: 26px; }
}
@media(max-width:480px) {
  .all-collection-image, .all-collection-card:nth-child(3n+1) .all-collection-image { height: 340px; border-radius: 12px; }
  .all-collection-info { grid-template-columns: minmax(0,1fr) 28px; }
}

/* Editable footer social profiles */
.footer-follow{margin-top:24px}.footer-follow>span{display:block;margin-bottom:10px;color:#ae8957;font-size:10px;font-weight:600;letter-spacing:.14em;text-transform:uppercase}.footer-socials{display:flex;flex-wrap:wrap;gap:9px}.footer-socials a{width:34px;height:34px!important;display:grid!important;place-items:center;margin:0!important;border:1px solid rgba(255,255,255,.28);border-radius:50%;color:#fff;transition:transform .22s ease,border-color .22s ease,color .22s ease}.footer-socials a:hover{color:#ae8957;border-color:#ae8957;transform:translateY(-2px)}.footer-socials svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.footer-socials svg .fill{fill:currentColor;stroke:none}.footer-social-initial{font-size:12px;font-weight:700;line-height:1}

/* =========================================================
   CART CHECKOUT & PURCHASE ORDER
   ========================================================= */
.product-actions[data-product-cart-actions] { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; }
.product-remove-cart { min-width: 170px; border: 1px solid #ded5c8; border-radius: 999px; background: #fff; color: #6b5543; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
.product-remove-cart:hover { border-color: #b34e40; background: #fff6f4; color: #a43e31; transform: translateY(-2px); }
.product-remove-cart span, .cart-remove-button span { display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 6px; border: 1px solid currentColor; border-radius: 50%; font-size: 14px; line-height: 1; }
.is-hidden { display: none !important; }

.cart-section { padding-top: 18px; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 350px); gap: 30px; align-items: start; }
.cart-products { display: grid; gap: 16px; }
.cart-item { display: grid; grid-template-columns: 180px minmax(0, 1fr) 150px; gap: 22px; align-items: center; min-height: 210px; padding: 16px; border-radius: 20px; background: #fff; box-shadow: 0 10px 28px rgba(36,27,20,.06); transition: opacity .25s ease, transform .25s ease; }
.cart-item.is-removing { opacity: 0; transform: translateY(10px) scale(.985); }
.cart-item-image { display: block; height: 178px; overflow: hidden; border-radius: 14px; background: #f3efe7; }
.cart-item-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cart-item:hover .cart-item-image img { transform: scale(1.035); }
.cart-item-category { color: #ae8957; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.cart-item h2 { margin: 8px 0 6px; font: 400 clamp(22px,2.2vw,30px)/1.1 var(--serif); }
.cart-item h2 a { color: #151417; }
.cart-item-code { margin: 0 0 12px; color: #90867b; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.cart-item-specs { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0; }
.cart-item-specs div { display: flex; gap: 4px; font-size: 10px; color: #726b64; }
.cart-item-specs dt { font-weight: 700; color: #4d4742; }
.cart-item-specs dd { margin: 0; }
.cart-item-price { margin: 15px 0 0; color: #151417; font-size: 15px; font-weight: 700; }
.cart-item-actions { display: grid; gap: 12px; align-self: center; }
.cart-quantity { display: grid; grid-template-columns: 38px 42px 38px; overflow: hidden; border: 1px solid #ded6cb; border-radius: 999px; background: #fff; }
.cart-quantity button, .cart-quantity output { display: grid; place-items: center; min-height: 40px; border: 0; background: transparent; color: #151417; font-size: 14px; }
.cart-quantity button { cursor: pointer; transition: background .2s ease, color .2s ease; }
.cart-quantity button:hover { background: #151417; color: #fff; }
.cart-quantity output { border-inline: 1px solid #ded6cb; font-size: 11px; font-weight: 700; }
.cart-remove-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 13px; border: 1px solid #dfc8c0; border-radius: 999px; background: #fff; color: #a34234; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: border-color .22s ease, color .22s ease, background .22s ease, transform .22s ease; }
.cart-remove-button:hover { border-color: #a34234; background: #fff3f1; transform: translateY(-2px); }
.cart-remove-button.is-loading { opacity: .58; pointer-events: none; }

.cart-summary { position: sticky; top: 105px; padding: 31px 28px; border-radius: 21px; background: #151417; color: #fff; box-shadow: 0 18px 44px rgba(28,20,15,.16); }
.cart-summary .eyebrow { color: #d7b48b; }
.cart-summary h2 { margin: 11px 0 14px; font: 400 37px/1.02 var(--serif); }
.cart-summary-copy { margin: 0 0 27px; color: rgba(255,255,255,.73); font-size: 12px; line-height: 1.75; }
.cart-summary-line { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.74); font-size: 11px; }
.cart-summary-line strong { color: #fff; font-size: 12px; }
.cart-summary-total { padding-bottom: 20px; }
.checkout-open-button, .checkout-submit-button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; width: 100%; min-height: 52px; border: 0; border-radius: 999px; background: #d6ae7d; color: #151417; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.checkout-open-button:hover, .checkout-submit-button:hover { background: #fff; transform: translateY(-2px); }
.checkout-open-button span, .checkout-submit-button span { font-size: 17px; line-height: 1; }
.cart-continue-link { display: block; margin-top: 19px; color: rgba(255,255,255,.76); font-size: 9px; letter-spacing: .08em; line-height: 1.6; text-align: center; text-transform: uppercase; }
.cart-continue-link:hover { color: #fff; }
.empty-selection > p { margin: 11px 0 20px; color: #6e675f; }

.checkout-modal { position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility 0s linear .25s; }
.checkout-modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.checkout-modal-backdrop { position: absolute; inset: 0; background: rgba(17,15,13,.68); backdrop-filter: blur(5px); }
.checkout-modal-panel { position: relative; z-index: 1; width: min(690px, 100%); max-height: calc(100vh - 42px); overflow-y: auto; padding: clamp(28px,5vw,48px); border-radius: 24px; background: #fff; box-shadow: 0 25px 80px rgba(0,0,0,.28); transform: translateY(18px) scale(.985); transition: transform .35s cubic-bezier(.22,.8,.2,1); }
.checkout-modal.is-open .checkout-modal-panel { transform: translateY(0) scale(1); }
.checkout-close { position: absolute; top: 16px; right: 18px; display: grid; place-items: center; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #f0ebe4; color: #151417; font-size: 25px; line-height: 1; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.checkout-close:hover { background: #151417; color: #fff; transform: rotate(90deg); }
.checkout-modal-panel h2 { margin: 10px 0 12px; max-width: 500px; font: 400 clamp(34px,5vw,54px)/1.02 var(--serif); }
.checkout-modal-panel > p:not(.eyebrow) { max-width: 540px; margin-bottom: 28px; color: #6b655f; font-size: 13px; line-height: 1.75; }
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-form label { display: grid; gap: 8px; color: #463f39; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.checkout-form label small { color: #968675; font-size: 8px; font-weight: 500; letter-spacing: .04em; }
.checkout-form input, .checkout-form textarea { width: 100%; border: 1px solid #ded5ca; border-radius: 10px; background: #fdfcfb; color: #151417; font: 400 14px/1.45 var(--sans); letter-spacing: normal; text-transform: none; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.checkout-form input { height: 47px; padding: 0 13px; }
.checkout-form textarea { resize: vertical; min-height: 106px; padding: 12px 13px; }
.checkout-form input:focus, .checkout-form textarea:focus { border-color: #ae8957; box-shadow: 0 0 0 3px rgba(174,137,87,.14); }
.checkout-address { grid-column: 1/-1; }
.checkout-submit-button { margin-top: 24px; background: #151417; color: #fff; }
.checkout-submit-button:hover { background: #ae8957; color: #fff; }
.checkout-form.is-submitting .checkout-submit-button { pointer-events: none; opacity: .72; }
body.checkout-open { overflow: hidden; }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 650px) {
  .product-actions[data-product-cart-actions] { grid-template-columns: 1fr; }
  .product-remove-cart { min-width: 0; }
  .cart-item { grid-template-columns: 104px minmax(0, 1fr); gap: 14px; min-height: 0; padding: 13px; }
  .cart-item-image { height: 124px; }
  .cart-item-actions { grid-column: 1/-1; grid-template-columns: 1fr 1fr; align-items: center; }
  .cart-quantity { justify-self: start; }
  .cart-item h2 { font-size: 22px; }
  .cart-item-specs { display: grid; gap: 4px; }
  .cart-summary { padding: 27px 22px; }
  .cart-summary h2 { font-size: 34px; }
  .checkout-modal { padding: 12px; }
  .checkout-modal-panel { max-height: calc(100vh - 24px); padding: 31px 20px 25px; border-radius: 20px; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-address { grid-column: auto; }
}


/* Public catalogue library */
.footer-catalogue-download{display:inline-flex!important;align-items:center;gap:8px;width:max-content;margin-top:18px!important;padding:11px 15px;border:1px solid rgba(174,137,87,.9);border-radius:999px;color:#fff!important;font-size:10px!important;font-weight:600;letter-spacing:.08em;text-transform:uppercase;transition:background .25s ease,color .25s ease,transform .25s ease}.footer-catalogue-download span{font-size:15px;line-height:0}.footer-catalogue-download:hover{background:#ae8957!important;color:#151417!important;transform:translateY(-2px)}.catalogues-page{padding-top:106px;background:#f7f4ee}.catalogues-hero{padding:100px 0 72px;background:#171715;color:#fff}.catalogues-hero .catalogues-intro{max-width:600px;margin:20px 0 0;color:rgba(255,255,255,.72);line-height:1.75}.catalogues-section{padding:85px 0 110px}.catalogues-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:38px 24px}.catalogue-card{display:flex;min-width:0;flex-direction:column;overflow:hidden;border:1px solid rgba(21,20,23,.13);border-radius:18px;background:#fff;box-shadow:0 16px 35px rgba(36,29,22,.06);transition:transform .3s ease,box-shadow .3s ease}.catalogue-card:hover{transform:translateY(-5px);box-shadow:0 24px 48px rgba(36,29,22,.12)}.catalogue-cover{display:block;aspect-ratio:3/4;overflow:hidden;background:#e7dfd5}.catalogue-cover img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.catalogue-card:hover .catalogue-cover img{transform:scale(1.04)}.catalogue-card-copy{display:flex;min-height:205px;flex:1;flex-direction:column;padding:23px}.catalogue-card-copy .eyebrow{margin-bottom:10px;color:#986f40;font-size:9px}.catalogue-card-copy h2{margin:0;font:400 27px/1.12 var(--serif);color:#171715}.catalogue-card-copy p{margin:12px 0 20px;color:#6e665e;font-size:12px;line-height:1.7}.catalogue-card-download{display:inline-flex;align-items:center;justify-content:center;width:max-content;margin-top:auto;padding:12px 16px;border:1px solid #171715;border-radius:999px;color:#171715;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;transition:background .25s ease,color .25s ease,transform .25s ease}.catalogue-card-download:hover{background:#171715;color:#fff;transform:translateY(-2px)}.catalogues-empty{padding:48px;border:1px solid rgba(21,20,23,.13);background:#fff;text-align:center}.catalogues-empty h2{margin:0 0 10px;font:400 34px var(--serif)}.catalogues-empty p{margin:0;color:#6e665e}.collection-catalogues-section{padding-top:0}.collection-catalogues-heading{margin-bottom:30px}.collection-catalogues-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.collection-catalogue-link{display:flex;align-items:center;gap:14px;min-height:90px;padding:15px;border:1px solid rgba(21,20,23,.14);border-radius:14px;background:#fff;color:#171715;transition:transform .25s ease,box-shadow .25s ease}.collection-catalogue-link:hover{transform:translateY(-3px);box-shadow:0 16px 30px rgba(25,20,16,.1)}.collection-catalogue-link img{width:56px;height:62px;object-fit:cover;border-radius:8px;background:#e6ddd3}.collection-catalogue-link strong{display:block;font:400 18px var(--serif)}.collection-catalogue-link span{display:block;margin-top:4px;color:#896944;font-size:10px;font-weight:600;letter-spacing:.08em;text-transform:uppercase}.category-catalogue-button{appearance:none;border:1px solid rgba(255,255,255,.74)}@media(max-width:980px){.catalogues-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.collection-catalogues-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.catalogues-page{padding-top:80px}.catalogues-hero{padding:82px 0 56px}.catalogues-section{padding:55px 0 70px}.catalogues-grid,.collection-catalogues-grid{grid-template-columns:1fr;gap:20px}.catalogue-card-copy{min-height:180px}.footer-catalogue-download{margin-top:15px!important}.collection-catalogue-link{min-height:82px}}

/* Product image and video gallery */
.product-main-image{position:relative;overflow:hidden}.product-main-image img,.product-main-image video{display:block;width:100%;height:100%;object-fit:contain;background:#fafafa}.product-main-image video[hidden]{display:none!important}.product-thumbs{flex-wrap:wrap}.product-thumb{position:relative;cursor:pointer}.product-thumb video{display:block;width:100%;height:100%;object-fit:cover}.product-thumb.is-video span{position:absolute;inset:50% auto auto 50%;display:grid;width:27px;height:27px;place-items:center;border-radius:50%;background:rgba(20,18,16,.72);color:#fff;font-size:10px;transform:translate(-50%,-50%)}
