:root {
  --bg: #fbf8f1;
  --bg-warm: #f5efe0;
  --surface: #ffffff;
  --ink: #2a2218;
  --ink-soft: #5a4f3e;
  --muted: #8e8472;
  --line: #ece4d0;
  --gold: #b08a4a;
  --gold-deep: #8a6a35;
  --gold-light: #d4af6a;
  --gold-soft: #f5ecd5;
  --gold-ink: #4a3a1c;
  --dark: #2a2218;
  --dark-soft: #3d3325;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(74, 58, 28, 0.05), 0 2px 8px rgba(74, 58, 28, 0.04);
  --shadow-md: 0 6px 24px rgba(74, 58, 28, 0.09);
  --shadow-lg: 0 18px 50px rgba(74, 58, 28, 0.15);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-family: 'Frank Ruhl Libre', 'Heebo', serif;
}

p { margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  font-family: 'Frank Ruhl Libre', serif;
}

.brand-sub {
  font-size: 12.5px;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--gold-deep); }

.nav-cta {
  padding: 9px 20px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 8px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover { background: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 100px;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/e/e9/Belz_World_Center_Outside.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.7) brightness(0.5);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(212, 175, 106, 0.32), transparent 60%),
    linear-gradient(180deg, rgba(42, 34, 24, 0.78) 0%, rgba(42, 34, 24, 0.92) 100%);
}

.hero-inner {
  max-width: 880px;
  text-align: center;
}

.hero-logo {
  width: 110px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 18px;
  border: 1px solid rgba(212, 175, 106, 0.55);
  border-radius: 999px;
  background: rgba(212, 175, 106, 0.12);
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.05;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #fff 0%, var(--gold-light) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(19px, 2.3vw, 24px);
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15.5px;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(176, 138, 74, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(176, 138, 74, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(212, 175, 106, 0.5);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(212, 175, 106, 0.16);
  border-color: var(--gold-light);
}

.btn-gold {
  background: var(--gold-light);
  color: var(--gold-ink);
}

.btn-gold:hover {
  background: #e2bd76;
  transform: translateY(-1px);
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  position: relative;
  padding-right: 26px;
}

.kicker::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-head.center .kicker { padding-right: 0; }
.section-head.center .kicker::before { display: none; }

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
}

/* ---------- About / Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: right;
}

.stat:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat:hover::before { transform: scaleX(1); }

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-family: 'Frank Ruhl Libre', serif;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Pillars / Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.card-featured {
  background: linear-gradient(180deg, #fff 0%, var(--gold-soft) 100%);
  border-color: rgba(176, 138, 74, 0.35);
}

.card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 22px;
  transition: background 0.2s ease;
}

.card:hover .card-icon {
  background: var(--gold);
  color: #fff;
}

.card-icon svg { width: 28px; height: 28px; }

.card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  position: relative;
  padding-right: 22px;
  padding-block: 6px;
  font-size: 15px;
  color: var(--ink-soft);
}

.card-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- Gallery ---------- */
.gallery {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 520px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.gallery-item-lg {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(42, 34, 24, 0.92) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cap-title {
  font-weight: 700;
  font-size: 17px;
  font-family: 'Frank Ruhl Libre', serif;
}

.cap-sub {
  font-size: 13.5px;
  color: var(--gold-light);
  opacity: 0.95;
}

.gallery-credit {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Impact ---------- */
.impact {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(212, 175, 106, 0.22), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(176, 138, 74, 0.14), transparent 60%);
  pointer-events: none;
}

.impact .kicker { color: var(--gold-light); }
.impact .kicker::before { background: var(--gold-light); }
.impact h2 { color: #fff; }

.impact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.impact-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17.5px;
  margin-bottom: 30px;
}

.impact-quote {
  border-right: 3px solid var(--gold);
  padding-right: 26px;
}

.impact-quote blockquote {
  margin: 0;
  font-size: 23px;
  line-height: 1.55;
  font-weight: 500;
  font-family: 'Frank Ruhl Libre', serif;
  color: #fff;
}

/* ---------- Contact ---------- */
.contact { background: var(--surface); }

.info-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-grid li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.info-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}

.info-icon svg { width: 24px; height: 24px; }

.info-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.info-detail {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 44px 0;
}

.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: var(--gold-light); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-tag {
  margin-top: 10px;
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { gap: 18px; }
  .nav a:not(.nav-cta) { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .impact-inner { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 72px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item { height: 240px; }
  .gallery-item-lg { height: 320px; }
}

@media (max-width: 540px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
  .brand-name { font-size: 15px; }
  .stats { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 90px; }
}
