@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --orange: #C15E23;
  --orange-dark: #9d4619;
  --ink: #2A2625;
  --muted: #746f6b;
  --cream: #f4f0ea;
  --soft: #faf8f5;
  --white: #ffffff;
  --line: rgba(42, 38, 37, .14);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Open Sans', Arial, sans-serif;
  --container: min(1240px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(30, 25, 22, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.05; }
::selection { color: #fff; background: var(--orange); }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--ink); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--orange); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { width: 34px; height: 1px; content: ''; background: currentColor; }
.display { max-width: 780px; font-size: clamp(2.65rem, 5vw, 5.2rem); letter-spacing: -.03em; }
.section-title { font-size: clamp(2.25rem, 4vw, 4.35rem); letter-spacing: -.025em; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.9; }
.section--dark .lead { color: rgba(255,255,255,.68); }
.accent { color: var(--orange); font-style: italic; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; padding: 0 24px; cursor: pointer; font-size: .76rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn--primary { color: #fff; background: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--outline { border-color: var(--line); background: transparent; }
.btn--outline:hover { color: #fff; border-color: var(--ink); background: var(--ink); }
.btn--light { color: var(--ink); background: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link::after { content: '→'; font-size: 1.1rem; transition: transform .25s ease; }
.text-link:hover::after { transform: translateX(5px); }

/* Header */
.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 90px; border-bottom: 1px solid rgba(255,255,255,.15); transition: height .3s ease, background .3s ease, box-shadow .3s ease; }
.site-header.scrolled, .site-header.inner-header { height: 76px; border-color: var(--line); background: rgba(255,255,255,.96); box-shadow: 0 12px 45px rgba(35,30,27,.08); backdrop-filter: blur(14px); }
.nav { display: flex; width: var(--container); height: 100%; align-items: center; justify-content: space-between; margin-inline: auto; }
.brand { position: relative; z-index: 1002; display: flex; width: 136px; height: 100%; align-items: center; overflow: hidden; }
.brand img { width: 128px; height: 128px; max-width: none; flex: 0 0 128px; object-fit: contain; filter: brightness(0) invert(1); transition: filter .3s ease; }
.site-header.scrolled .brand img, .site-header.inner-header .brand img { filter: none; }
.nav-menu { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 33px 0; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: color .25s ease; }
.site-header.scrolled .nav-link, .site-header.inner-header .nav-link { color: var(--ink); padding-block: 26px; }
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }
.chevron { width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown { position: absolute; top: calc(100% - 8px); left: -24px; width: 245px; margin: 0; padding: 12px 0; border-top: 3px solid var(--orange); background: #fff; box-shadow: var(--shadow); list-style: none; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; }
.dropdown--wide { display: grid; left: auto; right: -80px; width: 520px; grid-template-columns: 1fr 1fr; }
.nav-item:hover > .dropdown, .nav-item:focus-within > .dropdown, .nav-item.open > .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 11px 24px; color: var(--ink); font-size: .77rem; transition: color .2s, background .2s, padding .2s; }
.dropdown a:hover { color: var(--orange); background: var(--soft); padding-left: 29px; }
.nav-cta { min-height: 44px; padding-inline: 18px; }
.menu-toggle { position: relative; z-index: 1002; display: none; width: 45px; height: 45px; border: 0; padding: 0; background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; left: 10px; width: 25px; height: 1px; background: #fff; transition: .25s ease; }
.site-header.scrolled .menu-toggle span, .site-header.inner-header .menu-toggle span { background: var(--ink); }
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }
.menu-open .menu-toggle span { background: var(--ink); }
.menu-open .menu-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; height: max(760px, 100svh); min-height: 660px; overflow: hidden; color: #fff; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(25,20,18,.76) 0%, rgba(25,20,18,.42) 42%, rgba(25,20,18,.12) 76%), linear-gradient(0deg, rgba(24,19,17,.38), transparent 55%); }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 7s linear; }
.hero-slide.active img { transform: scale(1); }
.hero-content { position: relative; z-index: 2; display: flex; height: 100%; align-items: center; padding-top: 70px; }
.hero-copy { max-width: 790px; }
.hero-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero-kicker::before { width: 45px; height: 1px; content: ''; background: var(--orange); }
.hero h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(3.5rem, 7.5vw, 7.5rem); letter-spacing: -.045em; text-shadow: 0 8px 50px rgba(0,0,0,.25); }
.hero-subtitle { max-width: 700px; margin: -6px 0 16px; color: #fff; font-family: var(--sans); font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 500; line-height: 1.35; letter-spacing: -.02em; }
.hero-copy .hero-description { max-width: 650px; margin-bottom: 35px; color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.55vw, 1.22rem); }
.hero-controls { position: absolute; z-index: 4; right: max(24px, calc((100vw - 1240px) / 2)); bottom: 52px; display: flex; align-items: center; gap: 15px; }
.hero-arrow { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.35); color: #fff; background: rgba(0,0,0,.1); cursor: pointer; transition: background .2s, border-color .2s; }
.hero-arrow:hover { border-color: var(--orange); background: var(--orange); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 26px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: width .25s, background .25s; }
.hero-dot.active { width: 48px; background: var(--orange); }
.scroll-note { position: absolute; z-index: 3; bottom: 55px; left: max(24px, calc((100vw - 1240px) / 2)); display: flex; align-items: center; gap: 12px; font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; }
.scroll-note::before { width: 42px; height: 1px; content: ''; background: rgba(255,255,255,.6); }

/* Intro */
.intro { overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.intro-mark { position: relative; color: var(--orange); font-family: var(--serif); font-size: clamp(4rem, 10vw, 10rem); line-height: .8; letter-spacing: -.07em; }
.intro-mark::after { position: absolute; right: -30px; bottom: -55px; color: rgba(193,94,35,.08); content: 'R'; font-size: 2.2em; }
.intro-copy { padding-top: 15px; }
.intro-copy p { max-width: 760px; color: var(--muted); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.75; }

/* Tabs appointment */
.studio-grid { display: grid; grid-template-columns: .92fr 1.08fr; box-shadow: var(--shadow); }
.studio-copy { position: relative; min-height: 620px; padding: clamp(46px, 7vw, 90px); color: #fff; background: var(--ink); overflow: hidden; }
.studio-copy::before { position: absolute; right: -120px; bottom: -140px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.08); content: ''; transform: rotate(35deg); }
.tab-nav { display: flex; gap: 28px; margin-bottom: 62px; border-bottom: 1px solid rgba(255,255,255,.14); }
.tab-button { border: 0; border-bottom: 2px solid transparent; padding: 0 0 16px; color: rgba(255,255,255,.5); background: none; cursor: pointer; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.tab-button.active { color: #fff; border-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }
.tab-panel h2 { margin-bottom: 22px; font-size: clamp(2.5rem, 4vw, 4.4rem); }
.tab-panel p { color: rgba(255,255,255,.68); }
.materials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 32px 0 0; padding: 0; list-style: none; }
.materials li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.materials li::before { width: 6px; height: 6px; content: ''; background: var(--orange); transform: rotate(45deg); }
.studio-form { display: flex; min-height: 620px; flex-direction: column; justify-content: center; padding: clamp(46px, 7vw, 90px); background: var(--cream); }
.studio-form h3 { margin-bottom: 32px; font-size: clamp(2.3rem, 4vw, 4rem); }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(42,38,37,.35); border-radius: 0; outline: none; padding: 12px 0; color: var(--ink); background: transparent; transition: border-color .2s; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.form-note { margin-top: 20px; color: var(--muted); font-size: .78rem; }
.form-status { min-height: 24px; margin-top: 14px; color: var(--orange-dark); font-size: .82rem; font-weight: 600; }

/* Services */
.services-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.service-card { position: relative; min-height: 500px; color: #fff; background: var(--ink); overflow: hidden; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.service-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(21,18,16,.88) 0%, rgba(21,18,16,.08) 72%); transition: background .35s; }
.service-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 34px; transform: translateY(48px); transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.service-card-number { display: block; margin-bottom: 13px; color: var(--orange); font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.service-card h3 { margin-bottom: 16px; font-size: 2rem; }
.service-card p { min-height: 52px; margin: 0 0 20px; color: rgba(255,255,255,.72); font-size: .87rem; line-height: 1.65; opacity: 0; transition: opacity .3s; }
.service-card .text-link { color: #fff; opacity: 0; }
.service-card:hover img { transform: scale(1.06); }
.service-card:hover::after { background: linear-gradient(0deg, rgba(21,18,16,.95) 0%, rgba(21,18,16,.24) 75%); }
.service-card:hover .service-card-content { transform: none; }
.service-card:hover p, .service-card:hover .text-link { opacity: 1; }

/* About & comparison */
.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.about-copy .section-title { margin-bottom: 28px; }
.about-copy .lead { margin-bottom: 34px; }
.compare { position: relative; height: 610px; overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.compare-before { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.compare-before img { width: calc(var(--compare-width, 200%) ); max-width: none; }
.compare-line { position: absolute; z-index: 3; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-1px); }
.compare-handle { position: absolute; top: 50%; left: 50%; display: grid; width: 58px; height: 58px; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--orange); box-shadow: 0 8px 26px rgba(0,0,0,.25); cursor: ew-resize; transform: translate(-50%,-50%); }
.compare-label { position: absolute; z-index: 4; top: 20px; padding: 7px 12px; color: #fff; background: rgba(42,38,37,.8); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.compare-label.before { left: 20px; }
.compare-label.after { right: 20px; }

/* CTA / allies */
.cta { padding: 84px 0; color: #fff; background: var(--orange); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta h2 { max-width: 760px; margin-bottom: 12px; font-size: clamp(2.5rem, 5vw, 5rem); }
.cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.social-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.social-strip h3 { font-size: 1.65rem; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); font-size: .7rem; font-weight: 700; transition: color .2s, background .2s; }
.socials a:hover { color: #fff; background: var(--ink); }
.allies-track-wrap { overflow: hidden; }
.allies-track { display: flex; width: max-content; align-items: center; animation: marquee 22s linear infinite; }
.allies-track:hover { animation-play-state: paused; }
.ally { display: grid; width: 290px; height: 150px; place-items: center; padding: 35px; filter: grayscale(1); opacity: .66; transition: filter .2s, opacity .2s; }
.ally:hover { filter: none; opacity: 1; }
.ally img { max-height: 78px; object-fit: contain; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Inner pages */
.page-hero { position: relative; display: flex; min-height: 540px; align-items: end; padding: 180px 0 80px; color: #fff; background: var(--ink); overflow: hidden; }
.page-hero--image { min-height: 680px; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .56; }
.page-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(25,21,19,.82), rgba(25,21,19,.18)), linear-gradient(0deg, rgba(25,21,19,.65), transparent 70%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px; font-size: clamp(3.3rem, 7vw, 7rem); letter-spacing: -.04em; }
.page-hero p { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.76); font-size: 1.1rem; }
.breadcrumb { margin-bottom: 20px; color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--orange); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.story-image { position: relative; min-height: 720px; }
.story-image img { width: 90%; height: 680px; object-fit: cover; }
.story-image::after { position: absolute; z-index: -1; right: 0; bottom: 0; width: 70%; height: 70%; content: ''; background: var(--cream); }
.story-copy .section-title { margin: 0 0 30px; }
.story-copy h3 { margin-bottom: 24px; font-family: var(--sans); font-size: 1.15rem; font-weight: 600; line-height: 1.5; }
.story-copy p { color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 55px; background: rgba(255,255,255,.14); }
.value-card { padding: 44px; background: var(--ink); }
.value-card span { display: block; margin-bottom: 26px; color: var(--orange); font-family: var(--serif); font-size: 2.4rem; }
.value-card h3 { margin-bottom: 13px; font-size: 1.7rem; }
.value-card p { color: rgba(255,255,255,.6); font-size: .88rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 55px; }
.process-card { padding: 42px; border: 1px solid var(--line); background: #fff; }
.process-card .number { color: var(--orange); font-family: var(--serif); font-size: 3.4rem; }
.process-card h3 { margin: 24px 0 15px; font-size: 1.85rem; }
.process-card p { color: var(--muted); font-size: .9rem; }

/* Testimonials */
.testimonials-shell { max-width: 980px; margin: 55px auto 0; }
.testimonial { display: none; text-align: center; }
.testimonial.active { display: block; animation: fadeUp .55s ease; }
.quote-mark { color: var(--orange); font-family: var(--serif); font-size: 7rem; line-height: .5; }
.testimonial blockquote { margin: 30px 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.75rem); line-height: 1.4; }
.testimonial cite { color: var(--muted); font-style: normal; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.round-btn { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; transition: .2s; }
.round-btn:hover { color: #fff; border-color: var(--orange); background: var(--orange); }

/* Services detail */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail-image { height: 650px; object-fit: cover; }
.service-detail-copy h2 { margin-bottom: 26px; font-size: clamp(2.5rem, 5vw, 5rem); }
.service-detail-copy p { color: var(--muted); font-size: 1.06rem; line-height: 1.9; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 38px; padding: 0; list-style: none; }
.service-features li { padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: .8rem; font-weight: 600; }
.variants { display: grid; gap: 1px; background: var(--line); }
.variant { display: grid; grid-template-columns: .8fr 1.2fr; background: #fff; }
.variant img { width: 100%; height: 360px; object-fit: cover; }
.variant-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.variant-copy h3 { margin-bottom: 20px; font-size: 2.4rem; }
.variant-copy p { color: var(--muted); }

/* Projects */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 45px 0; }
.filter-btn { border: 1px solid var(--line); padding: 10px 18px; background: #fff; cursor: pointer; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .2s; }
.filter-btn.active, .filter-btn:hover { color: #fff; border-color: var(--ink); background: var(--ink); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.project-card { position: relative; height: 520px; color: #fff; overflow: hidden; }
.project-card.hidden { display: none; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.project-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(20,17,16,.8), transparent 65%); }
.project-info { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 36px; }
.project-info span { color: #e6a57f; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-info h2 { margin-top: 8px; font-size: 2.3rem; }
.project-card:hover img { transform: scale(1.045); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.gallery-grid img { width: 100%; height: 680px; object-fit: cover; }
.gallery-stack { display: grid; gap: 16px; }
.gallery-stack img { height: 332px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.contact-list { margin: 40px 0; padding: 0; list-style: none; }
.contact-list li { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; margin-bottom: 5px; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a { font-family: var(--serif); font-size: 1.45rem; }
.contact-list a:hover { color: var(--orange); }
.contact-form { padding: clamp(40px, 6vw, 74px); background: var(--cream); }
.contact-form .section-title { margin-bottom: 15px; }
.contact-form > p { margin-bottom: 34px; color: var(--muted); }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.map-link { display: block; position: relative; min-height: 350px; padding: 70px; color: #fff; background: var(--ink); overflow: hidden; }
.map-link::before { position: absolute; right: -10%; bottom: -40%; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ''; }
.map-link h2 { position: relative; max-width: 700px; font-size: clamp(2.7rem, 5vw, 5rem); }
.map-link p { position: relative; margin-top: 18px; color: rgba(255,255,255,.65); }

/* Footer */
.site-footer { padding: 80px 0 0; color: #fff; background: #1c1918; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 55px; padding-bottom: 65px; }
.footer-brand img { width: 160px; height: 90px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-col h3 { margin-bottom: 23px; color: #fff; font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; color: rgba(255,255,255,.58); font-size: .82rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .7rem; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #fff; background: #25D366; box-shadow: 0 10px 35px rgba(0,0,0,.24); font-size: 0; transition: transform .2s; }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }
.whatsapp-float:hover { transform: scale(1.08); }

@media (max-width: 1080px) {
  .nav-menu { gap: 18px; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { gap: 50px; }
  .about-grid, .story-grid, .contact-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 34px, 680px); }
  .section { padding: 82px 0; }
  .site-header { height: 76px; }
  .site-header { z-index: 1200; }
  .menu-open::before { position: fixed; z-index: 1100; inset: 0; content: ''; background: #fff; }
  .menu-open .site-header { border-color: var(--line); background: #fff; box-shadow: none; backdrop-filter: none; }
  .brand { width: 126px; }
  .brand img { width: 118px; height: 118px; flex-basis: 118px; }
  .site-header .brand img { filter: brightness(0) invert(1); }
  .site-header.scrolled .brand img, .site-header.inner-header .brand img, .menu-open .site-header .brand img { filter: none; }
  .menu-toggle { display: block; }
  .nav-menu { position: fixed; z-index: 1201; inset: 0; display: flex; width: 100vw; min-height: 100svh; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 112px 24px 40px; background: #fff; opacity: 0; visibility: hidden; overflow-y: auto; transform: translateX(100%); transition: .35s cubic-bezier(.22,.61,.36,1); }
  .menu-open .nav-menu { opacity: 1; visibility: visible; background: #fff; transform: none; }
  .menu-open .brand, .menu-open .menu-toggle { z-index: 1202; }
  .nav-link, .site-header.scrolled .nav-link, .site-header.inner-header .nav-link { display: flex; justify-content: space-between; padding: 17px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .dropdown, .dropdown--wide { position: static; display: none; width: 100%; border: 0; box-shadow: none; grid-template-columns: 1fr; opacity: 1; visibility: visible; transform: none; }
  .nav-item.open > .dropdown { display: block; }
  .dropdown a { padding: 10px 18px; }
  .hero { height: 820px; }
  .hero-controls { right: 18px; bottom: 28px; }
  .scroll-note { bottom: 32px; left: 18px; }
  .hero h1 { font-size: clamp(3.4rem, 14vw, 6.2rem); }
  .intro-grid, .studio-grid, .about-grid, .story-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .intro-mark { font-size: 6rem; }
  .studio-copy, .studio-form { min-height: auto; }
  .services-head { align-items: start; flex-direction: column; }
  .compare { height: 520px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-grid .btn { justify-self: start; }
  .story-image { min-height: 580px; }
  .story-image img { height: 540px; }
  .values-grid, .process-grid { grid-template-columns: 1fr; }
  .service-detail-image { height: 540px; }
  .variant { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 520px; }
  .gallery-stack { grid-template-columns: 1fr 1fr; }
  .gallery-stack img { height: 280px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 68px 0; }
  .hero { height: 760px; min-height: 680px; }
  .hero-slide::after { background: linear-gradient(90deg, rgba(25,20,18,.78), rgba(25,20,18,.25)); }
  .hero-copy { padding-right: 8px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-subtitle { margin-top: -10px; font-size: 1.15rem; }
  .hero-copy .hero-description { font-size: .95rem; line-height: 1.6; }
  .scroll-note { display: none; }
  .hero-controls { left: 14px; right: auto; }
  .materials, .service-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 455px; }
  .service-card-content { transform: none; }
  .service-card p, .service-card .text-link { opacity: 1; }
  .compare { height: 440px; }
  .social-strip { align-items: flex-start; flex-direction: column; }
  .page-hero, .page-hero--image { min-height: 580px; padding-bottom: 55px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .story-image { min-height: 500px; }
  .story-image img { width: 94%; height: 460px; }
  .value-card, .process-card { padding: 32px; }
  .variant-copy { padding: 38px 28px; }
  .project-card { height: 440px; }
  .two-fields { grid-template-columns: 1fr; gap: 0; }
  .map-link { min-height: 400px; padding: 55px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .gallery-grid img { height: 430px; }
  .gallery-stack { grid-template-columns: 1fr; }
  .gallery-stack img { height: 300px; }
}

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