:root {
  --ink: #0b151d;
  --ink-soft: #15242e;
  --gold: #d5ad69;
  --gold-light: #f0d7a6;
  --paper: #f6f4ef;
  --white: #fff;
  --muted: #667078;
  --line: rgba(11, 21, 29, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header { position: sticky; top: 0; z-index: 10; min-height: 84px; padding: 10px clamp(20px, 5vw, 72px); display: flex; align-items: center; gap: 36px; color: var(--white); background: rgba(11, 21, 29, .94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(213, 173, 105, .25); }
.brand { margin-right: auto; }
.brand img { width: 86px; height: 58px; object-fit: cover; object-position: center 33%; border-radius: 4px; }
nav { display: flex; gap: 28px; align-items: center; }
nav a { font-size: .92rem; font-weight: 600; }
nav a:hover { color: var(--gold-light); }
.language-toggle { width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%; background: transparent; color: var(--gold-light); cursor: pointer; font-weight: 700; }
.language-toggle:hover { background: var(--gold); color: var(--ink); }

.hero { min-height: 720px; display: grid; grid-template-columns: 1fr 1.05fr; background: var(--ink); color: var(--white); }
.hero-copy { padding: clamp(70px, 8vw, 130px) clamp(28px, 7vw, 110px); align-self: center; }
.eyebrow { margin: 0 0 18px; color: #a77b37; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow, .contact .eyebrow { color: var(--gold-light); }
h1, h2 { margin: 0; font-family: "Playfair Display", serif; line-height: 1.06; letter-spacing: -.025em; }
h1 { max-width: 700px; font-size: clamp(3.2rem, 6vw, 6.3rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); }
.hero-intro { max-width: 620px; margin: 28px 0 34px; color: #d5dadd; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 52px; padding: 13px 22px; align-items: center; justify-content: center; border: 1px solid transparent; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-outline { border-color: rgba(255,255,255,.42); color: var(--white); }
.phone-row { display: flex; gap: 30px; margin-top: 38px; }
.phone-row a { display: grid; }
.phone-row span { color: #aeb6bc; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.phone-row strong { font-size: 1rem; }
.hero-image { position: relative; min-height: 640px; overflow: hidden; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,21,29,.35), transparent 38%); pointer-events: none; }
.hero-image img { height: 100%; object-fit: cover; object-position: 52% center; }
.hero-badge { position: absolute; z-index: 1; right: 26px; bottom: 26px; width: 126px; height: 126px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--ink); transform: rotate(-8deg); }
.hero-badge span { font-family: "Playfair Display", serif; font-size: 1.75rem; line-height: 1; }
.hero-badge strong { font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }

.materials { padding: 21px 5vw; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 52px); background: var(--gold); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.materials i { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }
.section { padding: clamp(76px, 9vw, 130px) clamp(22px, 7vw, 110px); }
.section-heading { max-width: 850px; margin-bottom: 54px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-grid article { padding: 34px 34px 10px 0; border-right: 1px solid var(--line); }
.service-grid article + article { padding-left: 34px; }
.service-grid article:last-child { border-right: 0; }
.service-grid article > span { color: #a77b37; font-size: .8rem; font-weight: 700; }
.service-grid h3 { margin: 46px 0 12px; font-family: "Playfair Display", serif; font-size: 1.75rem; line-height: 1.15; }
.service-grid p { color: var(--muted); }

.work { background: var(--white); }
.row-heading { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; gap: 10vw; align-items: end; }
.row-heading > p { margin: 0; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 330px; gap: 12px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: #d8d9d5; }
.gallery .gallery-wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; background: rgba(11,21,29,.86); color: var(--white); font-size: .8rem; font-weight: 600; }

.service-area { padding: 70px clamp(22px, 7vw, 110px); display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; background: var(--gold); }
.service-area .eyebrow { color: rgba(11,21,29,.68); }
.service-area h2 { font-size: clamp(2rem, 3.8vw, 3.7rem); }
.service-area > p { margin: 0; }

.contact { padding: clamp(80px, 10vw, 140px) clamp(22px, 7vw, 110px); display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: var(--ink-soft); color: var(--white); }
.contact-copy > p:last-child { max-width: 610px; color: #c9d0d4; font-size: 1.06rem; }
.contact-options { border-top: 1px solid rgba(255,255,255,.18); }
.contact-options a { min-height: 92px; padding: 20px 4px; display: grid; align-content: center; border-bottom: 1px solid rgba(255,255,255,.18); transition: padding .2s ease, color .2s ease; }
.contact-options a:hover { padding-left: 12px; color: var(--gold-light); }
.contact-options span { color: #9da7ad; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-options strong { font-size: clamp(1rem, 2vw, 1.3rem); overflow-wrap: anywhere; }

footer { padding: 26px clamp(22px, 5vw, 72px); display: flex; align-items: center; gap: 30px; background: #071016; color: #aeb6bc; font-size: .78rem; }
.footer-brand { margin-right: auto; display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 600; }
.footer-brand img { width: 54px; height: 42px; object-fit: cover; object-position: center 31%; border-radius: 3px; }

@media (max-width: 950px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 560px; order: -1; }
  .hero-copy { padding-top: 60px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article, .service-grid article + article { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid h3 { margin-top: 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .service-area, .contact { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-wrap: wrap; }
}

@media (max-width: 650px) {
  .site-header { min-height: 70px; gap: 14px; padding: 8px 16px; }
  .brand img { width: 70px; height: 48px; }
  nav { gap: 14px; }
  nav a { font-size: .78rem; }
  nav a:nth-child(2) { display: none; }
  .language-toggle { width: 38px; height: 38px; }
  .hero { min-height: auto; }
  .hero-image { min-height: 440px; }
  .hero-copy { padding: 48px 22px 58px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .hero-actions { display: grid; }
  .phone-row { display: grid; gap: 16px; }
  .materials { gap: 12px; flex-wrap: wrap; }
  .materials i { display: none; }
  .materials span { flex: 0 0 42%; text-align: center; }
  .section { padding-left: 20px; padding-right: 20px; }
  .row-heading { grid-template-columns: 1fr; gap: 22px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .gallery .gallery-wide { grid-column: auto; }
  .service-area, .contact { padding-left: 20px; padding-right: 20px; }
  footer { display: grid; gap: 10px; }
  footer p { margin: 0; }
}

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