:root {
  --bg: #f3efe7;
  --paper: #f8f4ee;
  --ink: #121212;
  --muted: #5a534d;
  --line: rgba(18, 18, 18, 0.12);
  --accent: #bb8a3c;
  --accent-deep: #8d672d;
  --card: #fffdf9;
  --silver: #e6e3dd;
  --shadow: rgba(18, 18, 18, 0.08);
  --button-dark: #171717;
  --button-light: #f8f4ee;
  --success: #3d5a4c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-links a {
  opacity: 0.8;
}

.masthead {
  background: rgba(250, 247, 242, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.masthead-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  align-items: center;
  gap: 20px;
  min-height: 86px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: #fff;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.text-link {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.08);
}

.button-dark {
  background: var(--button-dark);
  color: white;
}

.masthead .header-actions .button.button-dark,
.header-actions .button.button-dark,
.shared-site-header .button.button-dark {
  background-color: #111111 !important;
  color: #f5efe6 !important;
  border-color: #111111 !important;
  box-shadow: none !important;
}

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

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.hero {
  padding: 32px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 22px;
}

.lead-story {
  background: #111;
  color: #f4efe6;
  min-height: 610px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(120deg, rgba(17,17,17,0.1), rgba(17,17,17,0.78)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
}

.story-kicker,
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.lead-story h1 {
  margin: 0 0 18px;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead-story p {
  max-width: 540px;
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
  margin: 0 0 22px;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 26px;
}

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

.feature-stack {
  display: grid;
  gap: 18px;
}

.mini-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 196px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px var(--shadow);
}

.mini-story img {
  height: 100%;
  object-fit: cover;
}

.story-body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
}

.story-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.story-body .meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
}

.section-header a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.04);
}

.story-card img {
  height: 260px;
  object-fit: cover;
}

.story-card .content {
  padding: 18px 18px 20px;
}

.story-card .content h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
}

.story-card .content p {
  margin: 0;
  color: var(--muted);
}

.story-card .content .meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.city-card {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}

.city-card img {
  height: 210px;
  object-fit: cover;
}

.city-card .content {
  padding: 18px 18px 20px;
}

.city-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
}

.city-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.city-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 200px;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.04);
}

.event-date {
  background: #101010;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.event-date strong {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 4px;
}

.event-content {
  padding: 18px 18px 20px;
}

.event-content .label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.event-content h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.18;
  font-family: Georgia, "Times New Roman", serif;
}

.event-content p {
  margin: 0 0 14px;
  color: var(--muted);
}

.event-content .meta {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.culture-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px;
}

.feature-panel {
  background: #111;
  color: #f5efe6;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  padding: 28px;
  background-image: linear-gradient(180deg, rgba(17,17,17,0.1), rgba(17,17,17,0.82)),
    url('https://images.unsplash.com/photo-1514565131-fce0801e5785?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
}

.feature-panel .content {
  max-width: 540px;
}

.feature-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-family: Georgia, "Times New Roman", serif;
}

.feature-panel p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.list-panel {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px 18px;
}

.list-panel h3 {
  margin: 0 0 18px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
}

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

.list-panel li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.list-panel li:first-child {
  border-top: none;
}

.list-panel a {
  display: block;
  font-size: 1.06rem;
  line-height: 1.3;
  font-weight: 600;
}

.list-panel span {
  display: block;
  margin-top: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.membership-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.pricing-card.featured {
  background: #111;
  color: #f5efe6;
  border-color: #111;
}

.pricing-card .plan {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-card.featured .plan {
  color: rgba(255,255,255,0.72);
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 2.1rem;
  letter-spacing: -0.06em;
  font-family: Georgia, "Times New Roman", serif;
}

.pricing-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.pricing-card.featured p,
.pricing-card.featured li {
  color: rgba(255,255,255,0.8);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}

.opportunity-panel {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px 18px 10px;
}

.opportunity-panel h3 {
  margin: 0 0 18px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
}

.opportunity-grid {
  display: grid;
  gap: 14px;
}

.opportunity-item {
  padding: 16px 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.opportunity-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.opportunity-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter {
  padding: 0 0 64px;
}

.newsletter-box {
  background: #111;
  color: #f4efe6;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.newsletter-box h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: Georgia, "Times New Roman", serif;
}

.newsletter-box p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form button {
  border: 1px solid rgba(255,255,255,0.2);
  background: #f7efe2;
  color: #111;
  padding: 1rem 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  background: #0d0d0e;
  color: rgba(255,255,255,0.8);
  padding: 42px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 20px;
}

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

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  background: transparent;
  color: white;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,0.7);
}

.footer h4 {
  margin: 0 0 12px;
  color: white;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .masthead-inner {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-grid,
  .membership-wrap,
  .culture-layout,
  .newsletter-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .city-grid,
  .event-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar-inner,
  .section-header,
  .footer-bottom,
  .newsletter-form {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-grid,
  .city-grid,
  .event-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .mini-story {
    grid-template-columns: 1fr;
  }

  .lead-story {
    min-height: 520px;
    padding: 24px 20px;
  }

  .main-nav {
    gap: 12px 18px;
  }

  .button,
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-form {
    width: 100%;
  }
}
