
:root {
  --bg: #f4f1eb;
  --surface: #ffffff;
  --surface-soft: #f8f8f7;
  --ink: #222326;
  --muted: #666d78;
  --line: rgba(34, 35, 38, 0.1);
  --dark: #171717;
  --dark-2: #252a32;
  --gold: #d89b00;
  --gold-2: #b88300;
  --wrap: min(1180px, calc(100vw - 32px));
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 18px 48px rgba(22, 27, 36, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
p { margin: 0 0 1rem; color: var(--muted); line-height: 1.62; }
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.03;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); max-width: 10.5ch; }
h2 { font-size: clamp(2rem, 4.8vw, 3.5rem); }
h3 { font-size: clamp(1.18rem, 2.4vw, 1.55rem); }
ul { margin: 0; padding-left: 1.1rem; }
li { margin-bottom: 0.7rem; color: var(--muted); }
.wrap { width: var(--wrap); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight-top { padding-top: 24px; }
.center { text-align: center; }
.section-head { margin-bottom: 34px; }
.section-head > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.section-label, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-label { color: var(--gold-2); }
.eyebrow { color: rgba(255,255,255,0.82); }
.eyebrow.dark { color: var(--gold-2); }
.dark-copy { color: var(--muted); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.logo-mark { width: 48px; height: 48px; flex: 0 0 48px; }
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.92;
}
.brand-text strong { font-size: 1.22rem; }
.brand-text small {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737b86;
}
.brand-footer .brand-text strong,
.brand-footer .brand-text small { color: #fff; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links > a,
.nav-link {
  font-weight: 600;
  color: #434a55;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 250px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(22, 27, 36, 0.14);
  padding: 12px;
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 600;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible { background: #f5f1e5; }
.nav-cta,
.button-primary {
  background: linear-gradient(180deg, #efb514, #cf9400);
  color: #181818 !important;
  box-shadow: 0 10px 26px rgba(216, 155, 0, 0.22);
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
}
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero-home {
  min-height: min(880px, calc(100svh - 78px));
  display: grid;
  align-items: center;
}
.hero-media,
.hero-overlay,
.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img,
.page-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(11,13,16,0.82), rgba(11,13,16,0.56) 46%, rgba(11,13,16,0.28) 100%);
}
.page-hero-overlay {
  background: linear-gradient(90deg, rgba(11,13,16,0.78), rgba(11,13,16,0.52) 50%, rgba(11,13,16,0.30));
}
.hero-inner,
.page-hero-grid {
  position: relative;
  z-index: 1;
}
.hero-inner { padding: 94px 0 110px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
}
.hero-copy { color: #fff; max-width: 720px; }
.hero-lead {
  max-width: 42rem;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.86);
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 160ms ease, opacity 160ms ease;
}
.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible { transform: translateY(-1px); }
.button-secondary {
  background: rgba(255,255,255,0.96);
  color: #171717;
  border: 1px solid rgba(255,255,255,0.98);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}
.button-dark { background: var(--dark); color: #fff; }
.hero-pills,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-pills span,
.chip-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.hero-pills span {
  color: white;
  background: rgba(23,23,23,0.42);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.dark-chips span {
  background: #fff;
  border: 1px solid var(--line);
}
.hero-side-card,
.info-card,
.accent-card { padding: 26px; }
.check-list { list-style: none; padding-left: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; margin: 0; }
.check-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--gold-2);
}
.stats-grid,
.service-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stats-grid article,
.service-card,
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.stats-grid article { padding: 22px 20px; }
.stats-grid strong { display: block; margin-bottom: 8px; font-size: 1.04rem; }
.stats-grid p { margin: 0; font-size: 0.98rem; }
.services-section { background: #f7f5f0; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid-5 { grid-template-columns: repeat(3, 1fr); }
.service-card { overflow: hidden; }
.service-card a { display: block; height: 100%; }
.service-card img { aspect-ratio: 1.25 / 1; object-fit: cover; }
.service-body { padding: 20px 20px 22px; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { margin-bottom: 0.85rem; font-size: 0.99rem; }
.text-link { display: inline-flex; font-weight: 700; color: var(--gold-2); }
.banner-cta {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  align-items: center;
  color: white;
}
.banner-image,
.banner-overlay {
  position: absolute;
  inset: 0;
}
.banner-image {
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}
.banner-overlay {
  background: linear-gradient(90deg, rgba(16,18,22,0.78), rgba(16,18,22,0.52));
}
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.banner-content p { color: rgba(255,255,255,0.86); }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.preview-grid figure,
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.preview-grid img { aspect-ratio: 1.08 / 1; object-fit: cover; }
.split-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
.detail-list li { font-size: 1rem; }
.contact-section { background: linear-gradient(180deg, #f7f5f0, #f1eee6); }
.contact-card {
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 22px;
  align-items: center;
}
.page-hero.small-hero {
  background: linear-gradient(180deg, #f8f6f1, #f1ece2);
  color: var(--ink);
}
.page-hero.small-hero .page-hero-grid {
  padding: 90px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 24px;
  align-items: end;
}
.page-hero-grid.single-col { grid-template-columns: 1fr; }
.service-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
}
.overlay-grid {
  padding: 120px 0 54px;
  color: white;
}
.gallery-page .page-hero.small-hero {
  background: linear-gradient(180deg, #ebe5d8, #e3ddcf);
}
.gallery-page .page-hero.small-hero .page-hero-grid {
  padding: 64px 0 14px;
}
.gallery-first-view {
  padding: 14px 0 84px;
}
.gallery-lead {
  max-width: 780px;
  font-size: 1.06rem;
  color: #49515e;
  line-height: 1.68;
  margin-bottom: 0;
}
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-card {
  background: #ffffff;
  border: 1px solid rgba(28, 32, 40, 0.1);
  box-shadow: 0 20px 44px rgba(22, 27, 36, 0.10);
}
.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}
.gallery-card figcaption {
  padding: 16px 16px 18px;
  display: grid;
  gap: 7px;
  background: linear-gradient(180deg, #ffffff, #f7f4ed);
}
.gallery-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #202733;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-card strong {
  color: #171b22;
  font-size: 1.02rem;
  line-height: 1.22;
}
.gallery-card span {
  color: #59616f;
  font-size: 0.95rem;
  line-height: 1.5;
}
.gallery-card figcaption > span:last-child {
  color: #59616f;
}
.gallery-card:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 24px 54px rgba(22, 27, 36, 0.14);
}
.preview-grid-service { grid-template-columns: repeat(3, 1fr); }
.related-links {
  display: grid;
  gap: 10px;
}
.related-links a {
  font-weight: 700;
  color: var(--dark-2);
  padding: 10px 12px;
  border-radius: 12px;
  background: #f5f1e5;
}
.site-footer {
  background: linear-gradient(180deg, #2b3340, #202631);
  color: white;
  padding: 36px 0 96px;
}
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr; align-items: start; }
.footer-brand { display: grid; gap: 12px; }
.site-footer p { color: rgba(255,255,255,0.78); font-size: 0.96rem; }
.site-footer h3 { font-size: 1rem; margin-bottom: 12px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: white; font-size: 0.98rem; }
.footer-note { color: rgba(255,255,255,0.72); font-size: 0.94rem; }
.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-bar a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(14, 18, 28, 0.18);
}
.mobile-bar a:first-child { background: linear-gradient(180deg, #efb514, #cf9400); color: #181818; }
.mobile-bar a:last-child { background: #171717; color: white; }
@media (max-width: 980px) {
  .hero-grid,
  .page-hero.small-hero .page-hero-grid,
  .split-grid,
  .contact-card,
  .footer-grid,
  .stats-grid,
  .service-grid,
  .service-grid-5,
  .preview-grid,
  .preview-grid-service,
  .full-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { position: static; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(22, 27, 36, 0.14);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-dropdown { display: grid; gap: 8px; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: #f6f3ea;
    min-width: 0;
    padding: 8px;
  }
  .nav-row { min-height: 72px; }
  .brand { gap: 10px; }
  .logo-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text small { font-size: 0.72rem; }
  .section { padding: 74px 0; }
  .hero-home { min-height: auto; }
  .hero-inner { padding: 72px 0 64px; }
  .hero-grid,
  .page-hero.small-hero .page-hero-grid,
  .split-grid,
  .contact-card,
  .footer-grid,
  .stats-grid,
  .service-grid,
  .service-grid-5,
  .preview-grid,
  .preview-grid-service,
  .full-gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-overlay,
  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(11,13,16,0.78), rgba(11,13,16,0.56));
  }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .gallery-page .page-hero.small-hero .page-hero-grid {
    padding: 48px 0 10px;
  }
  .gallery-first-view {
    padding: 8px 0 84px;
  }
  .hero-actions .button,
  .contact-actions .button,
  .nav-cta { width: 100%; }
  .service-card img,
  .preview-grid img,
  .gallery-card img { aspect-ratio: 1.35 / 1; }
  .hero-pills span,
  .chip-row span { font-size: 0.9rem; }
  .gallery-lead {
    font-size: 1rem;
    line-height: 1.62;
  }
  .gallery-card figcaption {
    padding: 15px 14px 16px;
    gap: 6px;
  }
  .gallery-tag {
    font-size: 0.68rem !important;
    padding: 6px 9px;
  }
  .gallery-card strong {
    font-size: 0.98rem;
  }
  .gallery-card span {
    font-size: 0.93rem;
  }
  .overlay-grid { padding: 90px 0 40px; }
  .page-hero.small-hero .page-hero-grid { padding: 74px 0 22px; }
  .contact-card { padding: 24px; }
  .mobile-bar { display: grid; }
}
