:root {
  --ink: #eef4f5;
  --muted: #9cb0b7;
  --deep: #07121a;
  --panel: #10212c;
  --line: rgba(210, 229, 233, .14);
  --accent: #e7aa55;
  --accent-soft: #7a5430;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 8%, rgba(46, 104, 119, .28), transparent 32rem),
    linear-gradient(160deg, #0a1823 0%, var(--deep) 45%, #081018 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
.masthead, main, footer { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.masthead {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 720; letter-spacing: .02em; }
.mark { width: 20px; height: 20px; border: 2px solid var(--accent); transform: rotate(45deg); }
nav { display: flex; gap: 28px; color: var(--muted); font-size: .92rem; }
nav a:hover, footer a:hover { color: var(--accent); }

.hero { min-height: 650px; padding: 112px 0 0; position: relative; overflow: hidden; }
.eyebrow, .section-head > p, .place {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 900px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 8.7vw, 7.4rem); font-weight: 500; }
.intro { max-width: 650px; margin: 28px 0 34px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.22rem); }
.button { display: inline-block; padding: 12px 18px; border: 1px solid var(--accent-soft); border-radius: 999px; color: #ffe4bd; transition: .2s ease; }
.button:hover { background: var(--accent); color: var(--deep); transform: translateY(-2px); }

.skyline { height: 126px; position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: end; gap: 9px; opacity: .48; }
.skyline span { flex: 1; min-width: 50px; background: linear-gradient(#244655, #102531); border-top: 1px solid #467082; }
.skyline span:nth-child(1) { height: 42%; }.skyline span:nth-child(2) { height: 70%; }.skyline span:nth-child(3) { height: 52%; }
.skyline span:nth-child(4) { height: 100%; clip-path: polygon(20% 22%, 44% 22%, 50% 0, 56% 22%, 82% 22%, 82% 100%, 20% 100%); }
.skyline span:nth-child(5) { height: 58%; }.skyline span:nth-child(6) { height: 82%; }.skyline span:nth-child(7) { height: 46%; }

.section { padding: 100px 0; border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: .7fr 2fr; gap: 40px; align-items: end; margin-bottom: 42px; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4.7rem); font-weight: 500; }
.cards { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.card { min-height: 385px; padding: 30px; display: flex; flex-direction: column; background: rgba(16, 33, 44, .76); border: 1px solid var(--line); border-radius: 18px; backdrop-filter: blur(12px); }
.card-featured { background: linear-gradient(150deg, rgba(35, 70, 82, .94), rgba(14, 31, 42, .92)); }
.number { margin-bottom: auto; color: #63808a; font-family: Georgia, serif; font-size: 2.3rem; }
.place { margin: 38px 0 10px; letter-spacing: .13em; }
.card h3 { font-family: Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.card > p:not(.place) { color: var(--muted); font-size: .94rem; }
.meta { display: flex; gap: 18px; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--line); color: #b9c7cb; font-size: .8rem; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.about > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
footer { min-height: 100px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
footer div { display: flex; gap: 24px; }

@media (max-width: 820px) {
  nav { display: none; }
  .hero { min-height: 590px; padding-top: 86px; }
  .section-head, .about { grid-template-columns: 1fr; gap: 22px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 320px; }
}

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