:root {
  --ink: #090909;
  --paper: #f2efe9;
  --warm: #b88762;
  --silver: #d9d9d6;
  --line: rgba(242, 239, 233, 0.2);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 4vw;
  background: rgba(9, 9, 9, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 146px; height: 68px; object-fit: contain; object-position: left center; }
nav { display: flex; gap: 32px; color: #d0cdc7; font-size: .88rem; }
nav a:hover { color: white; }
.language-switcher { display: inline-flex; align-items: center; gap: 4px; margin-left: auto; padding: 4px; border: 1px solid var(--line); border-radius: 999px; color: #d0cdc7; font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.language-switcher a, .language-switcher span { display: inline-flex; align-items: center; gap: 4px; padding: 5px 8px; border-radius: 999px; white-space: nowrap; }
.language-switcher [aria-current="page"] { background: var(--paper); color: var(--ink); }
.header-cta { padding: 10px 18px; border: 1px solid var(--paper); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .9fr);
  min-height: calc(100vh - 76px);
  max-width: 1600px;
  margin: auto;
  overflow: hidden;
}
.hero-copy { align-self: center; padding: 90px 6vw; }
.eyebrow { margin: 0 0 22px; color: var(--warm); font-size: .76rem; font-weight: 700; letter-spacing: .22em; }
h1, h2, h3 { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.4vw, 8.2rem);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.055em;
}
h1 span { color: var(--warm); font-style: italic; }
.hero-lead { max-width: 590px; margin: 0 0 36px; color: #c8c4bd; font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; font-weight: 700; transition: .25s ease; }
.button-primary { background: var(--warm); color: #100d0a; }
.button-primary:hover { background: #d1a17c; transform: translateY(-2px); }
.button-ghost { border-color: #555; }
.button-ghost:hover { border-color: var(--paper); }
.hero-meta { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 560px; margin-top: 58px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; gap: 3px; }
.hero-meta strong { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-meta span { color: #aaa59d; font-size: .86rem; }
.hero-visual { position: relative; min-height: 700px; background: #17120f; }
.hero-portrait { position: absolute; inset: 0 24% 0 0; margin: 0; }
.hero-portrait img { object-position: center 43%; }
.hero-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.1), transparent 50%, rgba(9,9,9,.4)); }
.hero-detail { position: absolute; right: 3%; bottom: 6%; width: 42%; height: 42%; margin: 0; border: 8px solid var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.vertical-note { position: absolute; top: 8%; right: 5%; writing-mode: vertical-rl; color: rgba(255,255,255,.65); font-size: .64rem; letter-spacing: .32em; }

.manifesto { max-width: var(--max); margin: auto; padding: 130px 5vw; }
.manifesto > p { color: var(--warm); font-size: .73rem; font-weight: 700; letter-spacing: .24em; }
.manifesto h2 { max-width: 1050px; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 5.2rem); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; max-width: 890px; margin: 55px 0 0 auto; color: #bcb7b0; }

.gallery-section { padding: 110px 4vw 130px; background: var(--paper); color: var(--ink); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; max-width: var(--max); margin: 0 auto 55px; }
.section-heading h2, .services h2, .studio h2, .location h2 { font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.section-heading > p { max-width: 420px; color: #655f58; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 12px; max-width: 1480px; margin: auto; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #d7d1c9; cursor: zoom-in; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.gallery-item span { position: absolute; z-index: 1; left: 20px; bottom: 16px; color: white; text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; }

.services { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; max-width: var(--max); margin: auto; padding: 130px 5vw; }
.services-intro { position: sticky; top: 120px; align-self: start; }
.services-intro > p:not(.eyebrow) { color: #bcb7b0; }
.services-intro > a { display: inline-block; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid var(--warm); color: var(--warm); }
.service-list article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 34px 0; border-top: 1px solid var(--line); }
.service-list article:last-child { border-bottom: 1px solid var(--line); }
.service-list article > span { color: var(--warm); font-size: .75rem; }
.service-list h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.service-list p { margin: 0; color: #aaa59d; }
.service-link { border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.service-link:hover { color: var(--warm); border-color: var(--warm); }

.seo-guides { padding: 110px 4vw 130px; background: var(--paper); color: var(--ink); }
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: var(--max); margin: auto; background: #cfc8bd; border: 1px solid #cfc8bd; }
.guide-grid a { display: flex; min-height: 230px; padding: 28px; flex-direction: column; background: #f8f5ef; transition: background .25s ease, transform .25s ease; }
.guide-grid a:hover { background: white; transform: translateY(-3px); }
.guide-grid span { margin-bottom: auto; color: #8f684d; font-size: .75rem; letter-spacing: .14em; }
.guide-grid strong { font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; line-height: 1.08; }
.guide-grid small { margin-top: 12px; color: #655f58; font-size: .86rem; line-height: 1.5; }

.content-page { background: var(--paper); color: var(--ink); }
.content-header { background: var(--ink); color: var(--paper); }
.content-shell { max-width: 1060px; margin: auto; padding: 90px 5vw 110px; }
.content-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw; align-items: center; max-width: 1280px; margin: auto; padding: 80px 5vw 100px; }
.content-hero h1 { font-size: clamp(3.5rem, 7vw, 7.2rem); }
.content-hero p:not(.eyebrow) { max-width: 620px; color: #c8c4bd; font-size: 1.12rem; }
.content-hero figure { min-height: 600px; margin: 0; overflow: hidden; }
.content-intro { max-width: 780px; margin-bottom: 70px; font-family: Georgia, serif; font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.22; }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 54px 7vw; }
.content-grid h2 { margin-bottom: 14px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.content-grid p, .content-grid li { color: #514b45; }
.content-grid ul { padding-left: 20px; }
.content-cta { margin-top: 80px; padding: 48px; background: var(--warm); color: #110d0a; }
.content-cta h2 { max-width: 700px; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; line-height: 1.05; }
.content-cta p { max-width: 680px; }
.breadcrumbs { margin: 0 0 24px; color: #8d867e; font-size: .8rem; }
.breadcrumbs a { border-bottom: 1px solid currentColor; }

.studio { display: grid; grid-template-columns: 1fr 1fr; min-height: 780px; background: #16110e; }
.studio-image { min-height: 650px; }
.studio-copy { align-self: center; padding: 90px 8vw; }
.studio-copy > p:not(.eyebrow) { color: #c3bdb5; font-size: 1.08rem; }
.studio-copy ul { margin: 35px 0 0; padding: 0; list-style: none; }
.studio-copy li { padding: 15px 0 15px 28px; border-top: 1px solid var(--line); position: relative; }
.studio-copy li::before { content: "·"; position: absolute; left: 5px; color: var(--warm); }

.location { padding: 130px 6vw; background: var(--warm); color: #110d0a; }
.location .eyebrow { color: #4a2b1d; }
.location h2 { max-width: 900px; font-size: clamp(3.4rem, 7vw, 7.8rem); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; align-items: end; margin-top: 70px; padding-top: 28px; border-top: 1px solid rgba(17,13,10,.3); }
.location-grid > div:not(.location-action) { display: flex; flex-direction: column; gap: 10px; }
.location-grid span { text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }
.location-grid strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { transform: translateY(-2px); background: white; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 4vw; color: #888; font-size: .8rem; }
.footer-brand .brand-logo { width: 190px; height: auto; }

.lightbox { width: min(88vw, 820px); height: min(90vh, 980px); padding: 0; border: 0; background: #111; box-shadow: 0 30px 90px rgba(0,0,0,.7); }
.lightbox::backdrop { background: rgba(0,0,0,.88); }
.lightbox img { object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.5); background: rgba(0,0,0,.6); color: white; cursor: pointer; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 6vw 65px; }
  .hero-visual { min-height: 760px; }
  .hero-portrait { inset: 0 15% 0 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .studio { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-action { grid-column: 1 / -1; margin-top: 20px; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .content-hero { grid-template-columns: 1fr; }
  .content-hero figure { min-height: 520px; }
}

@media (max-width: 620px) {
  .site-header { min-height: 66px; padding: 0 18px; }
  .brand-logo { width: 112px; height: 58px; }
  .language-switcher { margin-left: auto; font-size: .62rem; }
  .language-switcher a, .language-switcher span { padding: 4px 6px; }
  .header-cta { display: none; }
  h1 { font-size: clamp(3.2rem, 17vw, 5.3rem); }
  .hero-copy { padding: 62px 22px 52px; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-visual { min-height: 620px; }
  .hero-portrait { inset: 0 7% 0 0; }
  .hero-detail { width: 47%; height: 38%; right: 1%; bottom: 4%; }
  .vertical-note { display: none; }
  .manifesto, .services { padding: 90px 22px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-section { padding: 85px 12px; }
  .section-heading { display: block; padding: 0 10px; }
  .section-heading > p { margin-top: 24px; }
  .gallery { grid-auto-rows: 230px; gap: 7px; }
  .gallery-item-wide { grid-column: auto; }
  .gallery-item-tall { grid-row: span 2; }
  .studio-image { min-height: 560px; }
  .studio-copy { padding: 80px 22px; }
  .location { padding: 90px 22px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-action { grid-column: auto; }
  footer { align-items: flex-start; flex-direction: column; }
  .guide-grid, .content-grid { grid-template-columns: 1fr; }
  .guide-grid a { min-height: 190px; }
  .content-hero { padding: 58px 22px 72px; }
  .content-hero figure { min-height: 460px; }
  .content-shell { padding: 70px 22px 90px; }
  .content-cta { padding: 34px 24px; }
}

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