:root {
  --ink: #17100b;
  --ink-soft: #24170f;
  --ivory: #eee7dc;
  --paper: #f3ede4;
  --cognac: #985725;
  --bronze: #b57b45;
  --line: rgba(237, 226, 211, 0.2);
  --serif: 'Cormorant Garamond', 'Iowan Old Style', 'Baskerville', serif;
  --sans: 'Manrope', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ivory); background: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 0.97; letter-spacing: -0.035em; }
h1 { margin-bottom: 28px; font-size: clamp(4rem, 5.5vw, 6.3rem); }
h2 { margin-bottom: 26px; font-size: clamp(3.2rem, 4.5vw, 5.2rem); }
.skip-link { position: fixed; z-index: 100; top: 1rem; left: 1rem; padding: .7rem 1rem; color: var(--ink); background: var(--paper); transform: translateY(-200%); }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: 26px; font-size: 10px; font-weight: 600; letter-spacing: .28em; line-height: 1.3; text-transform: uppercase; }
.eyebrow.dark { color: #8d4e24; }
.rule { display: block; width: 38px; height: 1px; margin: 0 0 28px; background: var(--bronze); }
.section-frame { margin-inline: 24px; }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; display: flex; align-items: center; width: 100%; height: 96px; padding: 0 4.2vw; border-bottom: 1px solid var(--line); transition: background .4s ease, height .4s ease; }
.site-header.is-fixed { position: fixed; height: 76px; background: rgba(18, 11, 7, .94); backdrop-filter: blur(10px); }
.brand { width: 154px; flex: 0 0 auto; }
.brand img { height: auto; }
.nav { display: flex; align-items: center; gap: clamp(22px, 2.8vw, 48px); margin-left: auto; }
.nav a { position: relative; font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--bronze); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-switcher { display: flex; align-items: center; gap: 7px; margin-left: 2px; color: rgba(241,233,221,.3); white-space: nowrap; }
.nav .language-switcher a, .nav .language-switcher span { font-family: var(--sans); font-size: 8px; font-weight: 500; letter-spacing: .16em; line-height: 1; text-transform: uppercase; }
.language-switcher .is-active { color: var(--ivory); font-weight: 600; }
.language-switcher a { color: rgba(241,233,221,.48); transition: color .3s ease; }
.language-switcher a:hover, .language-switcher a:focus-visible { color: var(--ivory); }
.nav .language-switcher a::after { display: none; }
.menu-button { display: none; }

.hero { position: relative; min-height: min(900px, 100vh); overflow: hidden; background: #120c08; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-drift 18s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 9, 6, .9) 0%, rgba(14, 9, 6, .72) 31%, rgba(14, 9, 6, .08) 63%, rgba(14, 9, 6, .08) 100%), linear-gradient(0deg, rgba(14, 9, 6, .32), transparent 45%); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: min(660px, 48vw); min-height: min(900px, 100vh); margin-left: 6.2vw; padding-top: 90px; }
.hero-content .eyebrow { color: #d5ba9b; }
.hero-intro { max-width: 480px; margin-bottom: 38px; color: rgba(241, 233, 221, .8); font-size: 14px; line-height: 1.85; }
.hero-actions { display: flex; gap: 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid rgba(241, 233, 221, .62); font-size: 9px; font-weight: 600; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; transition: color .3s, border-color .3s, background .3s; }
.button-solid { border-color: var(--cognac); background: var(--cognac); }
.button-solid:hover { border-color: #b36e37; background: #b36e37; }
.button-outline:hover { color: var(--ink); background: var(--ivory); }
.scroll-cue { position: absolute; z-index: 2; right: 3vw; bottom: 30px; display: flex; align-items: center; gap: 16px; font-size: 8px; letter-spacing: .25em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 44px; background: rgba(255,255,255,.5); }

.house { display: grid; grid-template-columns: 1.08fr 1fr; min-height: 620px; background: var(--paper); }
.house-image { min-height: 620px; overflow: hidden; }
.house-image img { height: 100%; object-fit: cover; object-position: 50% center; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.house-image:hover img { transform: scale(1.025); }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: 9vw 8vw; color: #2c211a; }
.editorial-copy p:not(.eyebrow) { max-width: 470px; margin-bottom: 19px; }
.text-link { align-self: flex-start; margin-top: 17px; color: #7b3f1c; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: 10px; transition: transform .3s ease; }
.text-link:hover span { transform: translateX(6px); }
.text-link.light { color: #c99362; }

.story { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 660px; color: #2c211a; background: var(--ivory); }
.story-heading { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(80px, 9vw, 145px) 7vw; border-right: 1px solid rgba(55, 37, 25, .14); overflow: hidden; }
.story-heading h2 { position: relative; z-index: 1; }
.story-year { position: absolute; right: 4vw; bottom: 2.5vw; margin: 0; color: rgba(91, 53, 29, .1); font-family: var(--serif); font-size: clamp(5rem, 10vw, 10rem); line-height: .8; letter-spacing: -.06em; white-space: nowrap; }
.story-year span { font-size: 1.25em; }
.story-copy { align-self: center; max-width: 660px; padding: clamp(80px, 9vw, 145px) 8vw; }
.story-copy p { margin-bottom: 24px; color: #4d4037; font-size: 14px; line-height: 1.9; }
.story-copy p:first-child::first-letter { float: left; margin: 7px 10px 0 0; color: #8d4e24; font-family: var(--serif); font-size: 4.4rem; line-height: .62; }

.barcelona-gallery { padding: clamp(80px, 8vw, 130px) 6.2vw clamp(105px, 10vw, 155px); overflow: hidden; background: #130d09; }
.barcelona-feature { display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; width: 100%; max-width: 1500px; margin: 0 auto; gap: 6vw; }
.barcelona-intro { align-self: center; max-width: 450px; }
.barcelona-intro .eyebrow { color: #bd8d63; }
.barcelona-intro > p { max-width: 390px; margin: 0; color: rgba(241,233,221,.62); font-size: 13px; line-height: 1.85; }
.barcelona-interiors, .barcelona-caption { width: 100%; max-width: 1500px; margin-inline: auto; }
.barcelona-image { margin: 0; overflow: hidden; background: var(--ink-soft); }
.barcelona-image img { height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.barcelona-image:hover img { transform: scale(1.02); }
.barcelona-hero-image { aspect-ratio: 3 / 2; }
.barcelona-hero-image img { object-position: center; }
.barcelona-interiors { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(95px, 8vw, 125px); gap: clamp(14px, 1.25vw, 20px); }
.barcelona-interiors .barcelona-image { aspect-ratio: 1122 / 1402; min-width: 0; }
.barcelona-interiors img { object-position: center; }
.barcelona-caption { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 17px; border-top: 1px solid var(--line); color: rgba(241,233,221,.48); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.barcelona-caption span { color: #b98254; }

.moving-forward { display: grid; grid-template-columns: .8fr 1.2fr; padding: clamp(95px, 11vw, 170px) 8vw; gap: 8vw; background: #20140d; }
.moving-heading .eyebrow { color: #bd8d63; }
.moving-heading h2 { font-size: clamp(3.2rem, 4.5vw, 5.2rem); }
.moving-heading h2 em { color: #c69061; font-weight: 400; }
.moving-copy { max-width: 630px; }
.moving-copy > p { margin-bottom: 24px; color: rgba(241,233,221,.68); font-size: 14px; line-height: 1.9; }
.cambia-note { display: grid; grid-template-columns: 90px 1fr; align-items: start; margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--line); }
.cambia-note > span { color: #ba8355; font-size: 9px; font-weight: 600; letter-spacing: .2em; }
.cambia-note p { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 2.4vw, 2.7rem); line-height: 1.05; }
.cambia-note em { color: #c69061; font-weight: 400; }
.cambia-break-wide { display: none; }

.collection { display: grid; grid-template-columns: .68fr 1.32fr; min-height: 760px; padding: clamp(70px, 8vw, 130px) 6.2vw; gap: 6vw; background: #130d09; }
.section-heading { align-self: center; max-width: 450px; }
.section-heading .eyebrow { color: #bd8d63; }
.section-heading h2 em { color: #c69061; font-weight: 400; }
.section-heading > p:not(.eyebrow) { max-width: 380px; color: rgba(241,233,221,.64); }
.collection-feature { align-self: stretch; display: grid; grid-template-rows: minmax(430px, 1fr) auto; min-width: 0; }
.collection-feature > img { height: 100%; object-fit: cover; object-position: 68% center; }
.piece-caption { display: flex; justify-content: space-between; padding: 24px 0 0; border-top: 1px solid var(--line); }
.piece-caption span { color: #ad7a51; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.piece-caption h3 { margin: 7px 0 0; font-size: 28px; letter-spacing: -.01em; }
.piece-caption p { margin: 0; color: rgba(241,233,221,.5); font-size: 10px; letter-spacing: .1em; line-height: 1.7; text-align: right; text-transform: uppercase; }

.craft { display: grid; grid-template-columns: 1.25fr .68fr .72fr .58fr; min-height: 520px; padding: 24px; gap: 14px; background: #1c120c; }
.craft-copy { align-self: center; padding: 4vw 3vw 4vw 1.8vw; }
.craft-copy h2 { font-size: clamp(2.65rem, 3.3vw, 4rem); }
.craft-copy .eyebrow { color: #b98658; }
.craft-copy p:not(.eyebrow) { max-width: 380px; margin-bottom: 12px; color: rgba(241,233,221,.7); font-size: 13px; line-height: 1.65; }
.craft-image { min-height: 440px; margin: 0; overflow: hidden; }
.craft-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.craft-image:hover img { transform: scale(1.035); }
.craft-image.material img { object-position: 50% center; }

.restoration { display: grid; grid-template-columns: 1.55fr .95fr; padding: 24px; gap: 40px; background: var(--paper); color: #30241d; }
.material-studies { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 380px; gap: 14px; }
.material-studies figure { margin: 0; overflow: hidden; }
.material-studies img { height: 100%; object-fit: cover; }
.material-studies figure:nth-child(1) img { object-position: center; }
.material-studies figure:nth-child(2) img { object-position: center; }
.material-studies figure:nth-child(3) img { object-position: center; }
.restoration-copy { align-self: center; max-width: 430px; padding: 55px 3vw 55px 0; }
.restoration-copy h2 { font-size: clamp(3.1rem, 4vw, 4.6rem); }
.restoration-copy p:not(.eyebrow) { font-size: 13px; line-height: 1.7; }

.collector-trust { padding: clamp(78px, 8vw, 124px) 6.2vw; border-top: 1px solid var(--line); background: #17100b; }
.collector-trust-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); width: 100%; max-width: 1500px; margin-inline: auto; gap: 42px 8vw; }
.collector-trust-heading { max-width: 720px; }
.collector-trust-heading .eyebrow { color: #bd8d63; }
.collector-trust-heading h2 { margin: 0; font-size: clamp(2.8rem, 3.8vw, 4.5rem); }
.collector-trust-intro { align-self: end; max-width: 520px; margin: 0 0 7px; color: rgba(241,233,221,.64); font-size: 14px; line-height: 1.9; }
.marketplace-ratings { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.marketplace-rating { display: block; min-width: 0; padding: clamp(26px, 3vw, 42px); border: 1px solid rgba(237,226,211,.18); background: rgba(255,255,255,.012); cursor: pointer; transition: border-color .3s ease, background-color .3s ease; }
.marketplace-rating:hover, .marketplace-rating:focus-visible { border-color: rgba(190,137,89,.42); background: rgba(255,255,255,.028); }
.marketplace-rating-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.marketplace-rating h3 { margin: 0; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.seller-status { padding: 5px 9px 4px; border: 1px solid rgba(190,137,89,.5); color: #c28d5f; font-size: 8px; font-weight: 600; letter-spacing: .2em; line-height: 1; text-transform: uppercase; }
.rating-stars { margin-top: 26px; color: #b98658; font-size: 10px; letter-spacing: .28em; line-height: 1; }
.rating-value { margin: 12px 0 0; color: var(--ivory); font-family: var(--serif); font-size: clamp(2.7rem, 3.4vw, 4rem); line-height: .95; letter-spacing: -.025em; }
.rating-value span { color: rgba(241,233,221,.5); font-size: .42em; letter-spacing: .03em; }

.enquiries { position: relative; min-height: 580px; overflow: hidden; }
.enquiries > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 58%; }
.enquiry-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,11,7,.94), rgba(18,11,7,.65) 44%, rgba(18,11,7,.14)); }
.enquiry-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; width: min(560px, 48vw); min-height: 580px; margin-left: 8vw; }
.enquiry-content h2 { text-transform: none; }
.enquiry-content > p:not(.eyebrow) { max-width: 470px; margin-bottom: 32px; color: rgba(241,233,221,.72); }
.enquiry-content .button { align-self: flex-start; }

.footer { padding: clamp(72px, 7vw, 110px) 6vw 24px; border-top: 1px solid var(--line); color: rgba(241,233,221,.62); background: #130d09; font-size: 11px; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1.15fr 1.2fr .7fr .65fr; max-width: 1600px; margin-inline: auto; gap: clamp(30px, 4vw, 64px); }
.footer-brand img { width: 145px; margin-bottom: 20px; }
.footer p { margin-bottom: 12px; }
.footer .eyebrow { margin-bottom: 16px; color: #bf895d; font-size: 8px; }
.footer-company-name { color: var(--ivory); font-family: var(--serif); font-size: 19px; line-height: 1.2; }
.footer-company address { margin: 22px 0; font-style: normal; line-height: 1.8; }
.footer-legal span { color: #bf895d; font-size: 9px; letter-spacing: .08em; }
.footer-contact, .footer-retailers { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact > a:not(.text-link) { margin-bottom: 7px; border-bottom: 1px solid transparent; transition: color .3s ease, border-color .3s ease; }
.footer-contact > a:not(.text-link):hover { color: var(--ivory); border-color: #8d5a34; }
.footer-contact-label { margin: 14px 0 7px !important; color: #bf895d; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.footer-service { max-width: 210px; margin-top: 20px; }
.footer-retailers .text-link { margin: 0 0 14px; }
.footer-retailers .external-arrow { position: relative; width: 8px; height: 8px; margin-left: 10px; vertical-align: -1px; }
.footer-retailers .external-arrow::before { position: absolute; top: 6px; left: 0; width: 9px; height: 1px; background: currentColor; content: ''; transform: rotate(-45deg); transform-origin: left center; }
.footer-retailers .external-arrow::after { position: absolute; top: 0; right: 0; width: 5px; height: 5px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; content: ''; }
.footer-links { display: grid; align-content: start; gap: 10px; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a:hover { color: var(--ivory); }
.footer-links .eyebrow { margin-bottom: 6px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; max-width: 1600px; margin: clamp(52px, 6vw, 88px) auto 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.footer-policy-links { display: flex; flex-wrap: wrap; gap: clamp(18px, 2vw, 32px); margin-right: auto; margin-left: clamp(24px, 3vw, 48px); }
.footer-policy-links a { transition: color .3s ease; }
.footer-policy-links a:hover, .footer-policy-links a:focus-visible { color: var(--ivory); }
.footer-credit { color: rgba(241,233,221,.42); white-space: nowrap; }
.footer-credit a { color: rgba(241,233,221,.62); }

.legal-page .site-header { background: #130d09; }
.legal-main { min-height: 70vh; padding: clamp(170px, 12vw, 220px) 6.2vw clamp(90px, 9vw, 145px); background: #17100b; }
.legal-layout { display: grid; grid-template-columns: minmax(230px, .55fr) minmax(0, 1fr); width: 100%; max-width: 1500px; margin-inline: auto; gap: clamp(60px, 9vw, 150px); }
.legal-heading { align-self: start; max-width: 500px; }
.legal-heading .eyebrow { color: #bd8d63; }
.legal-heading h1 { margin: 0; font-size: clamp(3.8rem, 5.5vw, 6.2rem); text-transform: uppercase; }
.legal-heading .rule { margin-top: 34px; }
.legal-updated { color: rgba(241,233,221,.42); font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.legal-content { width: 100%; max-width: 780px; }
.legal-intro { margin-bottom: 44px; color: rgba(241,233,221,.78); font-family: var(--serif); font-size: clamp(1.65rem, 2.1vw, 2.15rem); line-height: 1.25; }
.legal-content section { padding: 34px 0 30px; border-top: 1px solid var(--line); }
.legal-content section:first-of-type { padding-top: 0; border-top: 0; }
.legal-content h2 { margin-bottom: 18px; color: var(--ivory); font-size: clamp(1.65rem, 2vw, 2rem); line-height: 1.1; letter-spacing: -.015em; }
.legal-content h3 { margin: 25px 0 10px; color: #d6b18f; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .2em; line-height: 1.4; text-transform: uppercase; }
.legal-content p, .legal-content li, .legal-content address { color: rgba(241,233,221,.66); font-size: 15px; line-height: 1.9; }
.legal-content p { margin-bottom: 17px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 0; padding-left: 19px; }
.legal-content li { margin-bottom: 9px; padding-left: 7px; }
.legal-content address { margin: 0; font-style: normal; }
.legal-content strong { color: rgba(241,233,221,.9); font-weight: 500; }
.legal-content a { color: #c99362; border-bottom: 1px solid rgba(201,147,98,.35); transition: color .3s ease, border-color .3s ease; }
.legal-content a:hover, .legal-content a:focus-visible { color: #e0b58f; border-color: currentColor; }
.legal-status { padding-left: 19px; border-left: 1px solid #9d6238; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-drift { from { transform: scale(1.045); } to { transform: scale(1); } }

@media (min-width: 1800px) {
  .cambia-note { width: 720px; }
  .cambia-note p, #restoration-title { white-space: nowrap; }
  .cambia-break-wide { display: inline; }
  .cambia-break-standard { display: none; }
  .restoration-copy { max-width: 620px; }
  .restoration-copy > p:not(.eyebrow) { max-width: 430px; }
}

@media (max-width: 1000px) {
  html.menu-open, body.menu-open { overflow: hidden; overscroll-behavior: none; }
  .site-header { height: calc(82px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) max(26px, env(safe-area-inset-right)) 0 max(26px, env(safe-area-inset-left)); }
  .site-header.menu-open { top: var(--menu-scroll-offset, 0px); background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .brand { position: relative; z-index: 2; width: 132px; }
  .menu-button { position: relative; z-index: 2; display: grid; width: 52px; height: 52px; margin-left: auto; padding: 13px 7px; border: 0; color: var(--ivory); background: transparent; cursor: pointer; }
  .menu-button span { align-self: end; font-size: 7px; letter-spacing: .2em; text-transform: uppercase; }
  .menu-button i { display: block; width: 27px; height: 1px; margin: 2px auto; background: currentColor; transition: transform .3s, opacity .3s; }
  .menu-button[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:nth-of-type(2) { transform: translateY(-2px) rotate(-45deg); }
  .nav { position: fixed; z-index: 1; inset: 0; display: flex; flex-direction: column; justify-content: center; width: 100%; height: 100vh; height: 100dvh; gap: 24px; margin: 0; padding: calc(82px + env(safe-area-inset-top)) max(26px, env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) max(26px, env(safe-area-inset-left)); overflow-y: auto; overscroll-behavior: contain; visibility: hidden; opacity: 0; pointer-events: none; background: #130d09; -webkit-overflow-scrolling: touch; transition: opacity .35s, visibility .35s; }
  .nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .nav a { font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .nav .language-switcher { margin: 10px 0 0; gap: 12px; }
  .nav .language-switcher a, .nav .language-switcher span { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
  .hero-content { width: min(680px, 75vw); }
  .house { grid-template-columns: 1fr 1fr; }
  .editorial-copy { padding: 70px 6vw; }
  .story-heading, .story-copy { padding-inline: 5vw; }
  .barcelona-feature { grid-template-columns: 1fr; gap: 58px; }
  .barcelona-intro { max-width: 600px; }
  .moving-forward { padding-inline: 6vw; gap: 6vw; }
  .craft { grid-template-columns: 1fr 1fr 1fr; }
  .craft-copy { grid-column: 1/-1; padding: 65px 6vw 45px; }
  .craft-image { min-height: 400px; }
  .restoration { grid-template-columns: 1.35fr .8fr; }
  .material-studies { grid-template-columns: 1fr 1fr; }
  .material-studies figure:last-child { display: none; }
  .collector-trust-inner { grid-template-columns: 1fr 1fr; gap: 38px 6vw; }
  .legal-layout { grid-template-columns: minmax(200px, .5fr) minmax(0, 1fr); gap: 7vw; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 14px; }
  h1 { font-size: clamp(3.3rem, 15vw, 4.65rem); line-height: .94; }
  h2 { font-size: clamp(3rem, 12.5vw, 4rem); }
  .section-frame { margin-inline: 10px; }
  .site-header, .site-header.is-fixed { height: calc(74px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left)); }
  .brand { width: 118px; }
  .hero { min-height: 800px; }
  .hero-image { object-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(13,8,5,.86), rgba(13,8,5,.28)), linear-gradient(0deg, rgba(13,8,5,.74) 0%, transparent 55%); }
  .hero-content { justify-content: flex-end; width: auto; min-height: 800px; margin: 0; padding: 115px 25px 72px; }
  .hero-content .eyebrow { margin-bottom: 20px; }
  .hero-intro { max-width: 370px; font-size: 13px; line-height: 1.7; }
  .hero-actions { display: grid; width: 100%; max-width: 390px; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .house { grid-template-columns: 1fr; }
  .house-image { min-height: 420px; }
  .editorial-copy { min-height: 510px; padding: 72px 30px; }
  .story { grid-template-columns: 1fr; min-height: 0; }
  .story-heading { min-height: 460px; padding: 78px 30px; border-right: 0; border-bottom: 1px solid rgba(55, 37, 25, .14); }
  .story-year { right: 24px; bottom: 24px; font-size: clamp(4.6rem, 24vw, 7rem); }
  .story-copy { max-width: none; padding: 70px 30px 78px; }
  .story-copy p { font-size: 13px; line-height: 1.8; }
  .barcelona-gallery { padding: 82px 20px 105px; }
  .barcelona-feature { display: grid; grid-template-columns: 1fr; gap: 58px; }
  .barcelona-intro { max-width: none; }
  .barcelona-intro > p { max-width: 430px; }
  .barcelona-hero-image { aspect-ratio: 3 / 2; }
  .barcelona-interiors { grid-template-columns: 1fr; margin-top: 78px; gap: 22px; }
  .barcelona-caption { margin-top: 32px; }
  .moving-forward { grid-template-columns: 1fr; padding: 82px 30px 90px; gap: 38px; }
  .moving-copy > p { font-size: 13px; line-height: 1.8; }
  .cambia-note { grid-template-columns: 58px 1fr; margin-top: 45px; }
  .collection { grid-template-columns: 1fr; min-height: 0; padding: 85px 26px; gap: 54px; }
  .collection-feature { grid-template-rows: 430px auto; }
  .piece-caption { gap: 20px; }
  .piece-caption h3 { font-size: 23px; }
  .craft { grid-template-columns: 1fr 1fr; padding: 10px; gap: 10px; }
  .craft-copy { padding: 72px 20px 52px; }
  .craft-image { min-height: 390px; }
  .craft-image.material { grid-column: 1/-1; min-height: 230px; }
  .craft-image.material img { object-position: center; }
  .restoration { grid-template-columns: 1fr; padding: 10px; gap: 0; }
  .material-studies { min-height: 330px; gap: 10px; }
  .restoration-copy { max-width: none; padding: 72px 20px; }
  .collector-trust { padding: 74px 30px 82px; }
  .collector-trust-inner { grid-template-columns: 1fr; gap: 26px; }
  .collector-trust-heading h2 { font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .collector-trust-intro { max-width: 470px; margin: 0; font-size: 13px; line-height: 1.8; }
  .marketplace-ratings { grid-column: auto; grid-template-columns: 1fr; margin-top: 18px; gap: 12px; }
  .marketplace-rating { padding: 28px 25px 30px; }
  .rating-stars { margin-top: 22px; }
  .enquiries { min-height: 650px; }
  .enquiries > img { object-position: 62% center; }
  .enquiry-shade { background: linear-gradient(0deg, rgba(16,10,7,.94), rgba(16,10,7,.25) 85%); }
  .enquiry-content { justify-content: flex-end; width: auto; min-height: 650px; margin: 0; padding: 60px 30px; }
  .legal-main { padding: 138px 30px 85px; }
  .legal-layout { grid-template-columns: 1fr; gap: 52px; }
  .legal-heading h1 { font-size: clamp(3.15rem, 14vw, 4.2rem); }
  .legal-heading .rule { margin: 28px 0 22px; }
  .legal-intro { margin-bottom: 34px; font-size: 1.55rem; }
  .legal-content section { padding: 30px 0 26px; }
  .legal-content p, .legal-content li, .legal-content address { font-size: 14px; line-height: 1.85; }
  .footer { padding: 68px 30px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-row: auto; padding-bottom: 10px; }
  .footer-company address { margin-block: 18px; }
  .footer-links { grid-template-columns: 1fr 1fr; padding-top: 20px; border-top: 1px solid var(--line); }
  .footer-links .eyebrow { grid-column: 1 / -1; }
  .footer-bottom { flex-wrap: wrap; gap: 14px 20px; margin-top: 55px; }
  .footer-policy-links { order: 3; width: 100%; margin: 6px 0 0; gap: 20px; }
  .footer-credit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
