:root {
  --bg: #eee6d8;
  --panel: #fff8ee;
  --text: #1d1b18;
  --muted: #72695e;
  --gold: #b78a4d;
  --line: rgba(29, 27, 24, .12);
  --gold-line: rgba(183, 138, 77, .3);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fbf4e8 0%, var(--bg) 58%, #e2d7c7 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, .9);
  backdrop-filter: blur(14px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--text); }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.brand strong { display: block; color: var(--text); font-size: 22px; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.navlinks { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.navlinks a:hover, .navlinks a.active { color: var(--text); }
.mobile-menu-toggle, .mobile-nav-actions { display: none; }
.mobile-menu-toggle {
  width: 46px; height: 46px; padding: 0; border: 1px solid var(--gold-line); border-radius: 6px;
  background: rgba(255,255,255,.62); color: var(--text); cursor: pointer;
}
.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 4px auto;
  border-radius: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease;
}
.topbar.menu-open .mobile-menu-toggle span { opacity: 0; }
.topbar.menu-open .mobile-menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.topbar.menu-open .mobile-menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: inline-flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 12px;
  border: 1px solid rgba(183,138,77,.22); border-radius: 6px; background: rgba(255,255,255,.36);
  color: var(--text); font-weight: 600;
}
.nav-dropdown > a::after {
  content: ""; width: 9px; height: 9px; margin-top: -4px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform .18s ease, margin .18s ease;
}
.nav-dropdown:hover > a::after, .nav-dropdown:focus-within > a::after { margin-top: 4px; transform: rotate(225deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: -18px; z-index: 40;
  width: 290px; display: grid; gap: 2px; padding: 8px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fffaf1; box-shadow: 0 18px 45px rgba(74, 55, 34, .16);
  opacity: 0; visibility: hidden; transform: translateY(-5px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown-menu a { padding: 11px 12px; border-radius: 5px; }
.nav-dropdown-menu a:hover { background: rgba(183, 138, 77, .1); }
.nav-menu-label {
  padding: 9px 12px 6px; color: var(--gold); font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav-menu-label.divider { margin-top: 6px; padding-top: 13px; border-top: 1px solid var(--line); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.actions { display: flex; gap: 10px; }
.button {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 18px; border: 1px solid var(--gold-line); border-radius: 6px;
  background: rgba(255,255,255,.55); font-weight: 700; white-space: nowrap;
}
.button.primary { background: linear-gradient(180deg, #e2c18b, #c99658); border-color: transparent; }
.breadcrumbs { padding-top: 28px; color: var(--muted); font-size: 13px; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) 470px; gap: 46px; align-items: center; min-height: 650px; padding: 42px 0 54px; }
.hero > * { min-width: 0; }
.eyebrow { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 36px; height: 1px; margin: 0 10px 4px 0; background: currentColor; }
h1, h2, h3, p { margin: 0; }
h1 { margin-top: 20px; font-size: clamp(42px, 6vw, 76px); line-height: .97; letter-spacing: 0; text-transform: uppercase; overflow-wrap: anywhere; }
.hero-copy { max-width: 680px; margin-top: 23px; color: var(--muted); font-size: 21px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-image { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: 0 28px 80px rgba(74,55,34,.16); }
.hero-image img { width: 100%; height: 510px; object-fit: cover; }
section { padding: 68px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 30px; }
h2 { max-width: 780px; font-size: clamp(34px, 5vw, 60px); line-height: 1; letter-spacing: 0; text-transform: uppercase; overflow-wrap: anywhere; }
.lead { max-width: 500px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.object-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.object-card {
  overflow: hidden; display: grid; min-height: 100%;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.68);
}
.object-card img { width: 100%; height: 270px; object-fit: cover; }
.object-card-copy { padding: 22px; }
.object-card-copy small { display: block; margin-bottom: 12px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.object-card h2, .object-card h3 { font-size: 25px; line-height: 1.08; text-transform: none; }
.object-card p { margin-top: 12px; color: var(--muted); line-height: 1.5; }
.case-status { display: block; width: fit-content; margin-top: 16px; padding: 7px 10px; border: 1px solid var(--gold-line); border-radius: 4px; color: #6b4827; font-size: 12px; font-weight: 800; }
.object-card .link { display: inline-block; margin-top: 20px; color: #6b4827; font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature { min-height: 205px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.66); }
.feature b { display: block; color: var(--gold); font-size: 30px; }
.feature h3 { margin-top: 26px; font-size: 19px; }
.feature p { margin-top: 11px; color: var(--muted); line-height: 1.48; }
.process { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.process article { min-height: 185px; padding: 20px; border-top: 1px solid var(--gold-line); }
.process b { color: var(--gold); font-size: 30px; }
.process h3 { margin-top: 18px; font-size: 18px; }
.process p { margin-top: 9px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split-image { overflow: hidden; min-height: 440px; border-radius: var(--radius); }
.split-image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.detail-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.66); }
.detail-panel h2 { font-size: 38px; }
.detail-panel ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--muted); line-height: 1.5; }
.detail-panel li { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 36px; border-radius: var(--radius); background: #1d1b18; color: #fffaf1; }
.cta h2 { color: #fffaf1; }
.cta p { margin-top: 14px; color: #d2c6b4; }
.commercial-note { padding: 34px; border: 1px solid var(--gold-line); border-radius: var(--radius); background: rgba(255,249,240,.72); }
.commercial-note h2 { font-size: 38px; }
.commercial-note p { max-width: 760px; margin-top: 14px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.project-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.project-fact { min-height: 118px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.62); }
.project-fact span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.project-fact strong { display: block; margin-top: 12px; font-size: 19px; line-height: 1.25; }
.project-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.project-gallery figure { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.project-gallery img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.project-gallery figcaption { padding: 14px 16px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.project-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.project-story h2 { font-size: 42px; }
.project-story-copy { display: grid; gap: 18px; color: var(--muted); font-size: 18px; line-height: 1.62; }
.project-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.project-list li { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--muted); line-height: 1.45; }
.scope-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scope-card { min-height: 210px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.4); }
.scope-card b { display: block; color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.scope-card h3 { margin-top: 22px; font-size: 21px; line-height: 1.16; }
.scope-card p { margin-top: 11px; color: var(--muted); line-height: 1.5; }
.decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.decision { min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.62); }
.decision h3 { font-size: 21px; }
.decision p { margin-top: 11px; color: var(--muted); line-height: 1.5; }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.related-link { min-height: 142px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.56); transition: transform .18s ease, border-color .18s ease; }
.related-link:hover { transform: translateY(-2px); border-color: var(--gold-line); }
.related-link small { display: block; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.related-link strong { display: block; margin-top: 22px; font-size: 18px; line-height: 1.25; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 54px 22px 0; list-style: none; font-size: 19px; font-weight: 750; line-height: 1.35; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 18px; right: 4px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 23px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 850px; padding: 0 54px 22px 0; color: var(--muted); font-size: 16px; line-height: 1.58; }
.note-panel { padding: 30px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.48); }
.note-panel h2 { font-size: 36px; text-transform: none; }
.note-panel p { max-width: 880px; margin-top: 14px; color: var(--muted); font-size: 17px; line-height: 1.58; }
footer { padding: 28px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.3); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; }
.legal { max-width: 850px; padding: 54px 0 90px; }
.legal h1 { font-size: clamp(38px, 6vw, 62px); }
.legal h2 { margin-top: 42px; font-size: 27px; text-transform: none; }
.legal p, .legal li { color: #484139; font-size: 17px; line-height: 1.65; }
.legal p { margin-top: 14px; }
.legal ul { padding-left: 22px; }

@media (max-width: 980px) {
  .nav { position: relative; min-height: 68px; }
  .mobile-menu-toggle { display: block; flex: 0 0 auto; }
  .actions { display: none; }
  .navlinks {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0; z-index: 60;
    display: none; max-height: calc(100vh - 82px); overflow-y: auto; padding: 14px;
    border: 1px solid var(--line); border-radius: 0 0 8px 8px; background: #fffaf1;
    box-shadow: 0 18px 40px rgba(74,55,34,.16); font-size: 16px;
  }
  .topbar.menu-open .navlinks { display: grid; gap: 4px; }
  .navlinks > a { min-height: 46px; display: flex; align-items: center; padding: 0 12px; border-bottom: 1px solid rgba(183,138,77,.14); }
  .nav-dropdown > a { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; width: auto; margin: 6px 0 10px; padding: 6px;
    border-radius: 6px; box-shadow: none; opacity: 1; visibility: visible; transform: none;
    background: rgba(183,138,77,.06);
  }
  .nav-dropdown-menu a { min-height: 42px; display: flex; align-items: center; }
  .mobile-nav-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 8px; }
  .mobile-nav-actions .button:first-child { grid-column: 1 / -1; }
  body.mobile-menu-open { overflow: hidden; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image img { height: 430px; }
  .object-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scope-list, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .page { width: min(1180px, calc(100% - 24px)); }
  .nav { padding: 10px 0; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 9px; }
  .brand img { width: 42px; height: 42px; }
  .mobile-nav-actions { grid-template-columns: 1fr; }
  .mobile-nav-actions .button:first-child { grid-column: auto; }
  .hero { padding-top: 28px; gap: 28px; }
  .hero-image img { height: 330px; }
  section { padding: 48px 0; }
  h2 { font-size: 30px; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 15px; }
  .object-grid, .feature-grid, .process, .split, .project-facts, .project-gallery, .project-story, .scope-list, .decision-grid, .related-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: auto; padding: 22px; }
  .faq-list summary { padding-right: 46px; font-size: 17px; }
  .faq-list details p { padding-right: 0; font-size: 15px; }
  .cta { grid-template-columns: 1fr; padding: 24px; }
  .footer-row { display: grid; }
}
