* { box-sizing: border-box; }

:root {
  --black: #101820;
  --black2: #17242d;
  --cream: #f4efe6;
  --paper: #fbfaf7;
  --orange: #f0733e;
  --orange2: #d95f32;
  --text: #14202a;
  --muted: #67727a;
  --line: #dedbd4;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(16, 24, 32, .89);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.02em;
}

.logo-number {
  font-size: 32px;
  letter-spacing: -2px;
}

.logo-text {
  padding-left: 11px;
  border-left: 1px solid rgba(255,255,255,.35);
  font-size: 10px;
  line-height: 1.12;
  letter-spacing: .16em;
}

.links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}

.links > a:not(.fb-small):hover { color: #fff; }

.fb-small {
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 10px 17px;
  color: #fff;
}

.fb-small:hover { background: #fff; color: var(--black); }

.menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  min-height: 760px;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,24,31,.98), rgba(17,38,48,.95)),
    var(--black);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.12);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.glow-one {
  width: 700px; height: 700px;
  right: -280px; top: -240px;
  background: radial-gradient(circle, rgba(240,115,62,.25), rgba(240,115,62,0) 68%);
}
.glow-two {
  width: 500px; height: 500px;
  left: 35%; bottom: -360px;
  background: radial-gradient(circle, rgba(255,255,255,.09), rgba(255,255,255,0) 68%);
}

.cross-art {
  position: absolute;
  right: 8%;
  top: 115px;
  width: 390px;
  height: 520px;
  opacity: .15;
  transform: rotate(4deg);
}
.cross-v, .cross-h {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.12));
}
.cross-v { width: 82px; height: 500px; left: 154px; top: 0; }
.cross-h { width: 350px; height: 78px; left: 20px; top: 120px; }

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: 90px;
  align-items: end;
}

.kicker, .section-tag, .small-title, .closing-small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}

.kicker {
  color: var(--orange);
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 8vw, 104px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.055em;
}

.hero h1 em { color: var(--orange); font-weight: 400; }

.hero-copy > p {
  max-width: 610px;
  margin: 32px 0 34px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange2); }
.btn-ghost { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.08); }

.hero-card {
  padding: 28px 0 4px 28px;
  border-left: 1px solid rgba(255,255,255,.2);
  margin-bottom: 5px;
}
.mini-label {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}
.hero-card blockquote {
  margin: 20px 0 14px;
  color: rgba(255,255,255,.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.45;
}
.verse { color: rgba(255,255,255,.48); font-size: 12px; }

.scroll-note {
  position: absolute;
  left: max(24px, calc((100vw - 1160px) / 2));
  bottom: 30px;
  z-index: 3;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}
.scroll-note span { margin-left: 10px; color: var(--orange); }

.section { padding: 118px 0; }

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.section-tag {
  color: var(--orange);
  margin-bottom: 23px;
}
.section-tag.light { color: #ffc0a2; }

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.04em;
}

.body-copy { padding-top: 32px; }
.body-copy p { color: var(--muted); max-width: 620px; font-size: 16px; }
.body-copy .lead { color: var(--text); font-size: 21px; margin-top: 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--orange2);
  font-size: 13px;
  font-weight: 800;
}

.values {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value {
  min-height: 270px;
  padding: 44px 40px 42px;
  border-left: 1px solid var(--line);
}
.value:last-child { border-right: 1px solid var(--line); }

.value-num {
  display: block;
  margin-bottom: 47px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}
.value h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}
.value p { margin: 0; color: var(--muted); max-width: 280px; }

.visit {
  background: var(--black2);
  color: white;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 440px;
}

.visit-card {
  padding: 0 80px 0 0;
  border-right: 1px solid rgba(255,255,255,.12);
}

.visit-card h2 { max-width: 580px; }
.visit-note {
  max-width: 570px;
  margin: 25px 0 28px;
  color: rgba(255,255,255,.66);
}

.btn-light { background: white; color: var(--black); }

.address-card {
  display: flex;
  gap: 24px;
  padding: 10px 0 0 70px;
  align-items: flex-start;
}
.pin { color: var(--orange); font-size: 30px; line-height: 1; }
.small-title { display: block; color: rgba(255,255,255,.42); margin-bottom: 23px; }
address {
  color: white;
  font-style: normal;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.45;
}
.text-link.pale { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.25); }

.contact-links {
  display: grid;
  gap: 10px;
  margin: 28px 0 8px;
}
.contact-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
  transition: background .2s ease, border-color .2s ease;
}
.contact-links a:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.28);
}
.contact-links span, .contact-links strong { display: block; }
.contact-links span {
  color: rgba(255,255,255,.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-links strong {
  color: #fff;
  font-size: 15px;
  word-break: break-word;
}

.connect { background: var(--paper); }

.connect-inner { max-width: 840px; text-align: center; }
.connect .section-tag { text-align: center; }
.connect h2 { text-align: center; }
.connect-inner > p { color: var(--muted); margin: 22px auto 38px; }

.facebook-card {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  padding: 19px 22px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.facebook-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(20,30,38,.08);
}
.fb-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #1877f2;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 31px;
}
.facebook-card strong, .facebook-card small { display: block; }
.facebook-card small { color: var(--muted); margin-top: 4px; }
.arrow { font-size: 25px; color: var(--orange); }

.closing {
  padding: 88px 0;
  background: var(--orange);
  color: white;
  text-align: center;
}
.closing-small { color: rgba(255,255,255,.7); }
.closing h2 { margin-top: 14px; font-size: clamp(54px, 8vw, 92px); }
.closing p { margin: 16px 0 0; color: rgba(255,255,255,.83); }

footer { background: #0b1117; color: white; padding: 34px 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-logo .logo-number { font-size: 24px; }
.footer-logo .logo-text { font-size: 8px; }
.footer-info {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}
.footer-info a:hover { color: white; }

@media (max-width: 900px) {
  .menu { display: block; cursor: pointer; }
  .links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 24px;
    background: #101820;
    flex-direction: column;
    align-items: stretch;
  }
  .links.open { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 55px; }
  .hero-card { max-width: 520px; }
  .cross-art { right: -90px; opacity: .09; }
  .two-col { grid-template-columns: 1fr; gap: 45px; }
  .body-copy { padding-top: 0; }
  .visit-grid { grid-template-columns: 1fr; gap: 60px; }
  .visit-card { padding-right: 0; padding-bottom: 60px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .address-card { padding-left: 0; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 1160px); }
  .nav { min-height: 72px; }
  .links { top: 72px; }
  .hero { min-height: auto; padding: 128px 0 95px; }
  .hero h1 { font-size: clamp(52px, 15vw, 78px); }
  .hero-copy > p { font-size: 16px; }
  .hero-card { margin-top: 5px; }
  .scroll-note { display: none; }
  .section { padding: 82px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value { min-height: 0; border-left: 0; border-bottom: 1px solid var(--line); padding: 34px 10px; }
  .value:last-child { border-right: 0; border-bottom: 0; }
  .value-num { margin-bottom: 22px; }
  address { font-size: 24px; }
  .address-card { gap: 16px; }
  .facebook-card { grid-template-columns: 48px 1fr auto; padding: 15px; }
  .fb-icon { width: 48px; height: 48px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-info { flex-direction: column; gap: 8px; }
}
