/* ===== Modern editorial · monochrome ===== */
:root {
  --ink: #111110;
  --ink-2: #5b5a57;
  --paper: #f6f5f2;
  --paper-2: #ecebe7;
  --dark: #15140f;
  --line: #d9d7d1;
  --accent: #c4452f;          /* single restrained editorial red */
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1280px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .7rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 1.4rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: .9rem 1.7rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all .25s ease;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: transparent; color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.6rem);
  background: rgba(246,245,242,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { font-family: var(--serif); font-size: 1.25rem; letter-spacing: .01em; }
.nav-menu { list-style: none; display: flex; gap: 2.2rem; }
.nav-menu a {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-2);
  position: relative; transition: color .2s;
}
.nav-menu a:hover { color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 1.2rem; }
.lang { display: flex; gap: .15rem; }
.lang button {
  background: none; border: none; cursor: pointer; padding: .25rem .35rem;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .08em; color: var(--ink-2);
  transition: color .2s;
}
.lang button:hover { color: var(--ink); }
.lang button.is-active { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(7rem, 12vh, 10rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 6vh, 5rem);
  max-width: var(--maxw); margin: 0 auto;
}
.hero-text h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); margin-bottom: 1.6rem; }
.hero-text .lead { font-size: 1.05rem; color: var(--ink-2); max-width: 30ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { aspect-ratio: 4/5; object-fit: cover; filter: grayscale(8%) contrast(1.02); }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 5vw, 4rem); }
.section-head { margin-bottom: 3rem; max-width: 40ch; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.section-head .lead { color: var(--ink-2); margin-top: 1rem; }

/* ===== Gallery (uniform editorial grid) ===== */
.section-work { max-width: none; background: var(--paper-2); }
.section-work > .section-head, .section-work > .gallery { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.g-item { overflow: hidden; background: var(--line); }
.g-item img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(10%); transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .4s; }
.g-item:hover img { transform: scale(1.04); filter: grayscale(0%); }

/* ===== Services (dark band) ===== */
.section-dark { max-width: none; background: var(--dark); color: var(--paper); }
.section-dark .section-head h2,
.section-dark .brand { color: var(--paper); }
.section-dark .eyebrow { color: #9d9a90; }
.section-dark > .section-head,
.section-dark > .services { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2.8rem 2rem; }
.srv { display: flex; flex-direction: column; }
.srv-media { overflow: hidden; margin-bottom: 1.1rem; background: rgba(246,245,242,.06); }
.srv-media img { aspect-ratio: 4/5; object-fit: cover; filter: grayscale(18%); transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .4s; }
.srv:hover .srv-media img { transform: scale(1.05); filter: grayscale(0%); }
.srv-num { font-family: var(--serif); font-size: .85rem; color: var(--accent); letter-spacing: .1em; }
.srv h3 { font-size: 1.4rem; margin: .5rem 0 .55rem; color: var(--paper); }
.srv p { font-size: .9rem; color: #b9b6ac; }
.srv p.srv-incl { font-size: .8rem; color: #918e85; margin-top: .8rem; line-height: 1.55; }
.srv p.srv-price { margin-top: auto; padding-top: 1.1rem; font-family: var(--serif); font-size: 1.25rem; color: var(--paper); }
.pricing-note { max-width: var(--maxw); margin: 2.8rem auto 0; font-size: .8rem; color: #908d84; text-align: center; }

/* ===== Testimonials ===== */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.4rem; }
.tst { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.tst p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; color: var(--ink); margin-bottom: 1.1rem; }
.tst cite { font-style: normal; font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; color: var(--ink-2); }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-media img { aspect-ratio: 4/5; object-fit: cover; filter: grayscale(12%); }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.4rem; }
.about-text p { color: var(--ink-2); margin-bottom: 1.1rem; max-width: 46ch; }
.facts { list-style: none; display: flex; gap: 2.6rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.facts li { display: flex; flex-direction: column; }
.facts strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.facts span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-2); margin-top: .3rem; }

/* ===== Contact ===== */
.contact-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; padding: .8rem .2rem;
  border: none; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.form-note { font-size: .76rem; color: var(--ink-2); }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 1.1rem; }
.contact-info p { color: var(--ink-2); margin-bottom: .55rem; }
.contact-info a { border-bottom: 1px solid var(--line); }
.contact-info a:hover { border-color: var(--ink); color: var(--ink); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #b9b6ac; text-align: center; padding: 4rem 1.5rem; display: grid; gap: .7rem; }
.footer-brand { font-family: var(--serif); font-size: 1.6rem; color: var(--paper); }
.footer-copy { font-size: .8rem; }
.site-footer a { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: #b9b6ac; }
.site-footer a:hover { color: var(--paper); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { order: -1; max-width: 460px; }
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 320px; }
  .nav-menu li { text-align: center; padding: .9rem 0; border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
