:root {
  --ink: #1c1815;
  --ink-soft: #5a5147;
  --cream: #faf8f4;
  --cream-dim: #f1ece2;
  --line: rgba(28,24,21,0.14);
  --brass: #9c7f52;
  --brass-dark: #7c6440;
  --white: #ffffff;
  --shadow: 0 16px 50px -24px rgba(28,24,21,0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Iowan Old Style', serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
h1, h2, h3, .brand-text { font-family: 'Palatino', 'Palatino Linotype', Georgia, serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- NAV ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 26px 0;
}
#nav.scrolled {
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 84px; width: auto; object-fit: contain; }
.brand-text { font-size: 14.5px; letter-spacing: 1.6px; color: var(--ink); font-weight: normal; }
.brand-text em { color: var(--brass-dark); font-style: normal; }
.nav-links { display: flex; gap: 30px; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13px; letter-spacing: 0.4px; color: var(--ink-soft); }
.nav-links a { position: relative; padding: 4px 0; transition: color 0.25s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--brass); transition:width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-toggle { display: flex; align-items: center; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 3px; cursor: pointer; font-family: 'Helvetica Neue', Arial, sans-serif; }
.lang-opt { padding: 5px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.4px; color: var(--ink-soft); transition: background 0.25s ease, color 0.25s ease; }
.lang-opt.active { background: var(--ink); color: var(--cream); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 13px 28px; font-size: 13px; letter-spacing: 0.8px;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 600; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.25s ease; border-radius: 2px;
}
.btn-solid { background: var(--ink); color: var(--cream); }
.btn-solid:hover { background: var(--brass-dark); }
.btn-line { border-bottom: 1px solid var(--ink); padding: 4px 0; border-radius: 0; text-transform: none; letter-spacing: 0.3px; font-size: 13.5px; }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light { border: 1px solid rgba(250,248,244,0.55); color: var(--cream); background: transparent; }
.btn-outline-light:hover { background: rgba(250,248,244,0.12); }
.btn-block { width: 100%; text-align: center; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,0.35) 0%, rgba(20,17,14,0.32) 45%, rgba(15,12,10,0.72) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 720px; padding: 0 24px; color: var(--cream); }
.hero-eyebrow { display: block; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,248,244,0.8); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0 0 20px; font-weight: normal; letter-spacing: 1px; color: var(--cream); }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: rgba(250,248,244,0.86); margin: 0 auto 42px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(180deg, rgba(250,248,244,0.7), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:0.3; transform:scaleY(0.7); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); transform-origin:top; } }

/* ---------- SECTIONS ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 120px 32px; }
.section.alt { background: var(--cream-dim); max-width: none; padding-left: 0; padding-right: 0; }
.section.alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 32px; padding-right: 32px; box-sizing: border-box; }

.section-head { max-width: 620px; margin-bottom: 60px; }
.kicker { display: inline-block; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--brass-dark); font-weight: 700; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--ink); margin: 0 0 16px; line-height: 1.3; font-weight: normal; }
.section-desc { color: var(--ink-soft); line-height: 1.8; font-size: 1.02rem; }

/* ---------- STATS ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.stat { text-align: center; padding: 34px 16px; background: var(--cream); }
.stat-num { font-size: 2.2rem; color: var(--ink); font-family: 'Palatino', serif; }
.stat-unit { font-size: 1.1rem; color: var(--brass-dark); margin-left: 2px; }
.stat-label { display: block; margin-top: 8px; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 12px; letter-spacing: 0.3px; color: var(--ink-soft); line-height: 1.5; }

.trust-line { margin-top: 32px; text-align: center; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink-soft); }
.trust-line .sep { color: var(--line); margin: 0 8px; }

/* ---------- EDITORIAL (family section) ---------- */
.editorial { max-width: 1200px; margin: 0 auto; padding: 0 32px 120px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.editorial-media { position: relative; }
.editorial-media img { border-radius: 2px; width: 100%; }
.editorial-copy .kicker { color: var(--brass-dark); }
.editorial-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: normal; margin: 12px 0 18px; line-height: 1.35; }
.editorial-copy p { color: var(--ink-soft); line-height: 1.8; margin: 0 0 24px; }
.editorial-portrait { max-width: 260px; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow); }

/* ---------- GRID / CARDS ---------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--cream); padding: 38px 34px; }
.section.alt .card { background: var(--cream-dim); }
.card h3 { color: var(--ink); margin: 6px 0 10px; font-size: 1.1rem; font-weight: normal; }
.card p { color: var(--ink-soft); line-height: 1.7; margin: 0; font-size: 0.96rem; }
.card-icon { margin-bottom: 16px; color: var(--brass-dark); }
.card-icon svg { width: 30px; height: 30px; }

.check-list li { position: relative; padding-left: 22px; margin-bottom: 13px; color: var(--ink-soft); line-height: 1.65; font-size: 0.96rem; }
.check-list li::before { content:'\2014'; position:absolute; left:0; top:0; color: var(--brass-dark); }

/* ---------- LOCATION ---------- */
.location-layout { margin-bottom: 40px; }
.map-frame { overflow: hidden; border: 1px solid var(--line); }
.map-frame img { width: 100%; display: block; }

/* ---------- SHOWCASE (slideshow) ---------- */
.showcase { position: relative; width: 100%; aspect-ratio: 16/9; max-height: 74vh; overflow: hidden; border: 1px solid var(--line); background: var(--ink); }
.showcase-track { position: relative; width: 100%; height: 100%; }
.showcase-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.showcase-slide.is-active { opacity: 1; z-index: 1; }
.showcase-slide img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.showcase-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 30px 22px;
  background: linear-gradient(0deg, rgba(20,17,14,0.75), transparent);
  color: var(--cream); font-family: 'Palatino', Georgia, serif; font-size: 1.15rem; letter-spacing: 0.3px;
}
.showcase-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(250,248,244,0.4); background: rgba(20,17,14,0.3); backdrop-filter: blur(6px);
  color: var(--cream); font-size: 13px; cursor: pointer; z-index: 3; transition: background 0.25s ease;
}
.showcase-arrow:hover { background: rgba(250,248,244,0.2); }
.showcase-prev { left: 16px; } .showcase-next { right: 16px; }
.showcase-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.showcase-dot { width: 7px; height: 7px; border-radius: 50%; border: 1px solid rgba(250,248,244,0.7); background: rgba(250,248,244,0.2); cursor: pointer; padding: 0; transition: all 0.25s ease; }
.showcase-dot.is-active { background: var(--brass); border-color: var(--brass); transform: scale(1.3); }

.lightbox { position: fixed; inset: 0; background: rgba(20,17,14,0.94); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; }
.lightbox-close { position: absolute; top: 24px; right: 34px; background: none; border: none; color: var(--cream); font-size: 2.2rem; cursor: pointer; line-height: 1; }

/* ---------- BROCHURE CTA ---------- */
.brochure-cta { max-width: 1200px; margin: 0 auto; padding: 0 32px 120px; }
.brochure-inner {
  display: flex; align-items: center; gap: 28px; padding: 40px 44px;
  border: 1px solid var(--line); flex-wrap: wrap;
}
.brochure-icon { color: var(--brass-dark); flex-shrink: 0; }
.brochure-icon svg { width: 38px; height: 38px; }
.brochure-copy { flex: 1; min-width: 240px; }
.brochure-copy h3 { margin: 0 0 6px; font-size: 1.25rem; font-weight: normal; }
.brochure-copy p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CALLBACK ---------- */
.callback-section { padding-top: 0; padding-bottom: 130px; }
.callback-panel {
  background: var(--ink); padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; color: var(--cream);
}
.callback-copy .kicker { color: var(--brass); }
.callback-copy h2 { color: var(--cream); font-weight: normal; }
.callback-copy p { color: rgba(250,248,244,0.75); line-height: 1.8; }
.callback-form { display: flex; flex-direction: column; gap: 22px; }
.callback-form label { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(250,248,244,0.6); display: flex; flex-direction: column; gap: 10px; }
.callback-form .optional { text-transform: none; letter-spacing: 0; color: rgba(250,248,244,0.4); }
.callback-form input {
  font-family: Georgia, serif; padding: 10px 0; border: none; border-bottom: 1px solid rgba(250,248,244,0.3);
  background: transparent; color: var(--cream); font-size: 15px; outline: none; transition: border-color 0.25s;
}
.callback-form input::placeholder { color: rgba(250,248,244,0.35); font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13.5px; }
.callback-form input:focus { border-color: var(--brass); }
.form-success { display: none; text-align: center; color: var(--brass); font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13px; margin: 0; }
.form-success.show { display: block; }

/* ---------- FLOATING CONTACT ---------- */
.floating-contact { position: fixed; right: 22px; bottom: 26px; z-index: 500; display: flex; flex-direction: column; gap: 10px; }
.floating-contact a {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--cream); background: var(--ink); box-shadow: var(--shadow); transition: background 0.25s ease, transform 0.25s ease;
}
.floating-contact a:hover { background: var(--brass-dark); transform: translateY(-2px); }
.floating-contact svg { width: 20px; height: 20px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: rgba(250,248,244,0.7); padding: 56px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .brand-text { color: var(--cream); }
.footer p { margin: 6px 0; font-size: 0.92rem; line-height: 1.7; }
.footer-meta { color: rgba(250,248,244,0.55); font-size: 0.85rem; }
.footer-meta a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .callback-panel { grid-template-columns: 1fr; padding: 40px 28px; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 84px 22px; }
  .brochure-inner { padding: 30px 26px; }
}
