
:root {
  --ink: #111111;
  --ink-soft: #242424;
  --paper: #ffffff;
  --warm: #f4f1ec;
  --warm-2: #e9e3db;
  --muted: #66615b;
  --line: #ddd6ce;
  --accent: #b58a52;
  --accent-dark: #7d5a2e;
  --shadow: 0 20px 52px rgba(15, 12, 9, .14);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; color:var(--ink); background:var(--paper); font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; line-height:1.62; -webkit-font-smoothing:antialiased; }
img { display:block; max-width:100%; }
a { color:inherit; }
button,input,select,textarea { font:inherit; }
.container { width:min(calc(100% - 38px),var(--max)); margin-inline:auto; }
.skip-link { position:absolute; left:-9999px; top:0; z-index:999; background:#fff; padding:10px 14px; }
.skip-link:focus { left:10px; top:10px; }
.eyebrow { margin:0 0 11px; color:var(--accent-dark); text-transform:uppercase; font-size:.77rem; font-weight:900; letter-spacing:.17em; }
h1,h2,h3 { line-height:1.09; margin-top:0; letter-spacing:-.03em; }
h1 { font-size:clamp(2.7rem,6.7vw,5.65rem); margin-bottom:24px; }
h2 { font-size:clamp(2rem,4.3vw,3.65rem); margin-bottom:19px; }
h3 { font-size:1.34rem; margin-bottom:10px; }
p { margin-top:0; }
.lead { font-size:clamp(1.08rem,2vw,1.28rem); color:#d9d6d2; max-width:720px; }
.muted { color:var(--muted); }
.button-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:12px 22px; border:2px solid transparent; border-radius:999px; text-decoration:none; font-weight:850; transition:transform .18s ease,background .18s ease,border-color .18s ease; cursor:pointer; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--accent); color:#111; }
.btn-primary:hover { background:#c49b66; }
.btn-dark { background:var(--ink); color:#fff; }
.btn-white { background:#fff; color:#111; }
.btn-outline { color:#fff; border-color:rgba(255,255,255,.62); background:transparent; }
.btn-light-outline { color:var(--ink); border-color:var(--ink); background:transparent; }
.site-header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,.96); border-bottom:1px solid rgba(0,0,0,.08); backdrop-filter:blur(12px); }
.header-inner { min-height:88px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:flex; align-items:center; gap:13px; text-decoration:none; min-width:230px; }
.brand img { width:104px; height:70px; object-fit:contain; }
.brand span { display:grid; line-height:1.05; }
.brand small { color:var(--muted); margin-top:0; font-size:.75rem; font-weight:760; letter-spacing:.035em; white-space:nowrap; }
.nav-toggle { display:none; width:44px; height:44px; border:1px solid var(--line); border-radius:10px; background:white; }
.nav-toggle span,.nav-toggle::before,.nav-toggle::after { content:""; display:block; width:22px; height:2px; background:var(--ink); margin:5px auto; transition:transform .2s ease,opacity .2s ease; }
.site-nav { display:flex; align-items:center; gap:21px; }
.site-nav a { text-decoration:none; font-weight:760; font-size:.94rem; }
.site-nav a:hover,.site-nav a[aria-current="page"] { color:var(--accent-dark); }
.site-nav .nav-cta { padding:10px 16px; color:white; background:var(--ink); border-radius:999px; }
.hero { color:white; background:radial-gradient(circle at 78% 3%,#3c342b 0,transparent 31%),linear-gradient(135deg,#090909,#242220); padding:clamp(68px,9vw,116px) 0; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(36px,6vw,78px); align-items:center; }
.hero h1 span { color:#d1aa78; }
.hero-card { position:relative; }
.hero-card::before { content:""; position:absolute; inset:-16px 22px 18px -16px; border:2px solid var(--accent); border-radius:24px; opacity:.75; }
.hero-card img { position:relative; width:100%; aspect-ratio:16/11; object-fit:cover; border-radius:22px; box-shadow:0 28px 68px rgba(0,0,0,.42); }
.hero-note { position:absolute; left:-24px; bottom:-25px; z-index:2; max-width:290px; padding:18px 20px; border-radius:14px; background:white; color:var(--ink); box-shadow:var(--shadow); font-weight:900; }
.hero-note small { display:block; margin-top:4px; color:var(--muted); font-weight:650; }
.trust-strip { background:var(--accent); color:#15110d; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item { padding:22px 18px; text-align:center; border-right:1px solid rgba(0,0,0,.18); }
.trust-item:last-child { border-right:0; }
.trust-item strong { display:block; font-size:1.04rem; }
.trust-item span { font-size:.86rem; opacity:.82; }
.section { padding:clamp(72px,8vw,112px) 0; }
.section-warm { background:var(--warm); }
.section-dark { background:var(--ink); color:white; }
.section-head { max-width:790px; margin-bottom:40px; }
.section-head.center { margin-inline:auto; text-align:center; }
.grid-2 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(30px,5vw,72px); align-items:center; }
.grid-3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.card { border:1px solid var(--line); border-radius:var(--radius); background:#fff; padding:29px; box-shadow:0 8px 26px rgba(20,16,12,.055); }
.card .icon { width:50px; height:50px; display:grid; place-items:center; margin-bottom:18px; border-radius:13px; background:#eee7dd; color:var(--accent-dark); font-size:1.1rem; font-weight:950; }
.service-card { min-height:100%; display:flex; flex-direction:column; }
.service-card .text-link { margin-top:auto; padding-top:14px; color:var(--accent-dark); font-weight:850; text-decoration:none; }
.photo-frame { position:relative; }
.photo-frame img { width:100%; aspect-ratio:3/2; border-radius:var(--radius); box-shadow:var(--shadow); object-fit:cover; }
.gallery-row { display:grid; grid-template-columns:1.2fr .9fr .9fr; gap:16px; margin-top:44px; }
.gallery-row img { width:100%; height:310px; object-fit:cover; border-radius:16px; }
.check-list { list-style:none; padding:0; margin:25px 0 0; display:grid; gap:12px; }
.check-list li { position:relative; padding-left:31px; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:1px; width:21px; height:21px; border-radius:50%; background:#e8dfd2; color:var(--accent-dark); display:grid; place-items:center; font-size:.8rem; font-weight:900; }
.manifesto { padding:clamp(35px,5vw,62px); border:1px solid #373737; border-radius:24px; background:linear-gradient(145deg,#272727,#101010); }
.manifesto h2 { max-width:900px; }
.manifesto blockquote { margin:24px 0 0; font-size:clamp(1.3rem,2.8vw,2.25rem); line-height:1.34; font-weight:800; }
.manifesto .quality-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px 30px; margin-top:34px; color:#ddd8d2; }
.manifesto .quality-grid span::before { content:"— "; color:var(--accent); }
.page-hero { padding:clamp(70px,8vw,105px) 0; color:white; background:linear-gradient(135deg,#0b0b0b,#322c26); }
.page-hero .lead { max-width:800px; }
.service-detail { display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:stretch; }
.service-panel { padding:31px; border-radius:var(--radius); background:var(--warm); border:1px solid var(--line); }
.project-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.project-card { overflow:hidden; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.project-card img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.project-card div { padding:22px; }
.project-card p { margin-bottom:0; }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(34px,6vw,72px); align-items:start; }
.contact-card { padding:29px; border-radius:var(--radius); background:var(--ink); color:white; }
.contact-card a { color:#e8cda9; overflow-wrap:anywhere; }
.contact-list { list-style:none; padding:0; margin:25px 0 0; display:grid; gap:18px; }
.contact-list strong { display:block; font-size:.82rem; color:#bcb6b0; text-transform:uppercase; letter-spacing:.1em; }
.form-card { padding:clamp(26px,5vw,44px); border:1px solid var(--line); border-radius:22px; box-shadow:var(--shadow); background:white; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1/-1; }
.field label { font-weight:800; }
.field input,.field select,.field textarea { width:100%; border:1px solid #bdb7b0; border-radius:10px; padding:12px 13px; background:#fff; color:var(--ink); }
.field textarea { min-height:150px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus { outline:3px solid rgba(181,138,82,.25); border-color:var(--accent); }
.form-help { color:var(--muted); font-size:.88rem; }
.hidden { position:absolute!important; left:-9999px!important; }
.cta-band { padding:58px 0; background:var(--accent); color:#15110d; }
.cta-band .eyebrow { color:#4f3518; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:28px; }
.cta-inner>div:first-child { max-width:720px; }
.cta-inner h2 { margin-bottom:8px; font-size:clamp(1.8rem,3vw,2.65rem); }
.site-footer { background:#080808; color:#d5d0cb; padding:54px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .75fr .75fr; gap:38px; }
.footer-logo { width:220px; max-width:100%; height:auto; margin-bottom:18px; background:transparent; object-fit:contain; }
.footer-brand p { max-width:460px; }
.footer-links { display:grid; gap:8px; }
.footer-links a { text-decoration:none; }
.footer-links a:hover { color:white; }
.footer-bottom { margin-top:34px; padding-top:20px; border-top:1px solid #34302d; display:flex; justify-content:space-between; gap:20px; font-size:.88rem; }
.notice { padding:20px; border-left:4px solid var(--accent); background:#f6efe6; border-radius:8px; }
.error-page { min-height:65vh; display:grid; place-items:center; text-align:center; }
@media (max-width:980px) {
  .site-nav { gap:14px; }
  .brand small { display:none; }
}
@media (max-width:920px) {
  .hero-grid,.grid-2,.contact-grid,.service-detail { grid-template-columns:1fr; }
  .hero-card { max-width:720px; }
  .grid-3,.project-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid rgba(0,0,0,.18); }
  .gallery-row { grid-template-columns:1fr 1fr; }
  .gallery-row img:first-child { grid-column:1/-1; }
  .manifesto .quality-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid>:first-child { grid-column:1/-1; }
}
@media (max-width:800px) {
  .header-inner { min-height:76px; }
  .brand img { width:86px; height:58px; }
  .brand { min-width:0; }
  .nav-toggle { display:block; }
  .site-nav { position:absolute; inset:76px 0 auto 0; display:none; flex-direction:column; align-items:stretch; padding:20px; background:white; border-bottom:1px solid var(--line); box-shadow:0 18px 30px rgba(0,0,0,.1); }
  .site-nav.open { display:flex; }
  .site-nav a { padding:9px 5px; }
  .site-nav .nav-cta { text-align:center; }
  .nav-toggle[aria-expanded="true"] span { opacity:0; }
  .nav-toggle[aria-expanded="true"]::before { transform:translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"]::after { transform:translateY(-7px) rotate(-45deg); }
  .hero-note { left:10px; bottom:-22px; }
  .grid-3,.project-grid,.form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .cta-inner,.footer-bottom { align-items:flex-start; flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid>:first-child { grid-column:auto; }
}
@media (max-width:600px) {
  .container { width:min(calc(100% - 26px),var(--max)); }
  .brand span { display:none; }
  .hero { padding-top:58px; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-item,.trust-item:nth-child(2) { border-right:0; border-bottom:1px solid rgba(0,0,0,.18); }
  .trust-item:last-child { border-bottom:0; }
  .card,.service-panel { padding:23px; }
  .gallery-row { grid-template-columns:1fr; }
  .gallery-row img,.gallery-row img:first-child { grid-column:auto; height:245px; }
  .manifesto .quality-grid { grid-template-columns:1fr; }
}

/* Homepage photo separation */
.home-page .hero-card img,
.home-page .gallery-row img,
.home-page .photo-frame img {
  border: 5px solid #fff;
  box-shadow: 0 18px 42px rgba(15, 12, 9, .18);
}
