@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:wght@700&display=swap');

:root {
  --bg: #f5efe6;
  --card: #ffffff;
  --surface: #fff9f0;
  --text: #1f1a17;
  --muted: #5f554f;
  --brand: #9d2f2f;
  --brand-dark: #7d2323;
  --accent: #c9a76f;
  --shadow: 0 18px 45px rgba(40, 22, 10, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fff8ed, var(--bg) 52%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: 8px;
  top: -80px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
}
.skip-link:focus { top: 8px; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 239, 230, 0.88);
  border-bottom: 1px solid rgba(77, 56, 39, 0.14);
  backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.logo { font-weight: 800; font-size: 1.03rem; letter-spacing: 0.02em; display: flex; align-items: center; gap: .65rem; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), #be4f4f);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
}
.nav-links { display: flex; gap: .35rem; align-items: center; }
.nav-links a {
  font-size: .93rem;
  color: var(--muted);
  font-weight: 600;
  padding: .55rem .8rem;
  border-radius: 999px;
  transition: all .25s ease;
}
.nav-links a:hover, .nav-links a.active { background: #fff; color: var(--brand-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  border-radius: 999px;
  padding: .84rem 1.25rem;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:focus-visible, a:focus-visible { outline: 3px solid #1f1a17; outline-offset: 3px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(157,47,47,.22); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--brand-dark); border: 1px solid #eadfcc; }
.btn-secondary:hover { background: #fff8ef; }
.menu-btn { display: none; background: #fff; border: 1px solid #e7d9c3; padding: .6rem .9rem; border-radius: 12px; font-weight: 700; }

.hero {
  padding: 4.1rem 0 3.2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.2rem;
  align-items: center;
}
.kicker { color: var(--brand); font-weight: 700; letter-spacing: .05em; font-size: .76rem; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.2; margin: .4rem 0 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.35rem); font-family: Merriweather, serif; }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); font-family: Merriweather, serif; }
h3 { font-size: 1.15rem; }
.hero p { max-width: 58ch; color: #403733; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 4.1rem 0; }
.surface { background: var(--surface); border-top: 1px solid #eee2cf; border-bottom: 1px solid #eee2cf; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.1rem; }
.card {
  background: var(--card);
  border: 1px solid #eddcc2;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 8px 22px rgba(20, 13, 8, 0.05);
}
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }
.icon-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f4e2c5, #f9f0df);
  display: grid; place-items: center;
  color: #8b5a23;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.35rem;
  align-items: stretch;
}
.panel {
  background: #fff;
  border: 1px solid #ecdcc3;
  border-radius: 20px;
  overflow: hidden;
}
.panel img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.panel-body { padding: 1.4rem; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; margin-top: 1.1rem; }
.stat { background: #fff8ee; border: 1px solid #efddc2; border-radius: 14px; padding: .85rem; }
.stat strong { display: block; font-size: 1.35rem; color: var(--brand-dark); }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; }
.gallery img { border-radius: 14px; height: 180px; width: 100%; object-fit: cover; border: 1px solid #ecd6bc; }

.cta-band {
  background: linear-gradient(130deg, #7e2323, #9f3232 56%, #bd5656);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 42px rgba(104,27,27,.25);
}

footer {
  margin-top: 4rem;
  background: #231814;
  color: #eee2d7;
  padding: 2.4rem 0 1rem;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1rem; }
footer a { color: #f8e0bf; }
.footer-bottom { margin-top: 1.2rem; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .9rem; color: #d8cbc0; }

.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nav-links { position: fixed; inset: 75px 1rem auto 1rem; background: #fff; border-radius: 18px; border: 1px solid #eddcc1; box-shadow: var(--shadow); padding: .8rem; flex-direction: column; align-items: stretch; display: none; }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-flex; }
  .nav-links a { border-radius: 12px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 1.2rem, var(--max)); }
  .hero { padding-top: 2.5rem; }
  .grid-3, .gallery, .stats { grid-template-columns: 1fr; }
  .hero-media { min-height: 260px; }
  .cta-band { padding: 1.4rem; flex-direction: column; align-items: flex-start; }
}

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