:root {
  --fufka-bg: #0f1012;
  --fufka-paper: #f7f1e5;
  --fufka-panel: rgba(18, 20, 25, 0.82);
  --fufka-ink: #111112;
  --fufka-text: #efe6d0;
  --fufka-muted: #b4ab97;
  --fufka-gold: #c6a15b;
  --fufka-accent: #8f7551;
  --fufka-serif: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --fufka-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(198, 161, 91, 0.12), transparent 34rem),
    linear-gradient(180deg, #0b0c0f 0%, #13161b 38%, #f4ecdf 38%, #f4ecdf 100%);
  color: var(--fufka-text);
  font: 16px/1.7 var(--fufka-sans);
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(16px, 5vw, 72px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f4ead5;
  text-decoration: none;
}
.brand span { display: flex; flex-direction: column; }
.brand small {
  color: rgba(244, 234, 213, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand strong {
  font: 400 clamp(26px, 2.3vw, 36px)/0.95 var(--fufka-serif);
  letter-spacing: -0.03em;
}
.site-header nav ul {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header nav a {
  position: relative;
  color: rgba(244, 234, 213, 0.84);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--fufka-gold);
  transition: right 0.2s ease;
}
.site-header nav a:hover::after,
.site-header nav .is-active a::after { right: 0; }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(15,16,18,0.72);
  color: #fff;
  padding: 10px 14px;
  font: 700 10px/1 var(--fufka-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 960px;
  padding: 132px clamp(16px, 4vw, 64px) 64px;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 12, 15, 0.84), rgba(11, 12, 15, 0.32)),
    url("../Images/banner.png") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.hero-copy {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(30px, 6vw, 64px);
  background: linear-gradient(180deg, rgba(11, 12, 15, 0.28), rgba(11, 12, 15, 0.72));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(244, 234, 213, 0.75);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fufka-gold);
}
.hero-copy h1,
.page-hero h1,
.section-heading h2,
.content-wrap h2,
.content-wrap h3,
.home-editorial h2 {
  font-family: var(--fufka-serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #f8f1e2;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.9;
}
.hero-subtitle {
  margin: 24px 0 0;
  color: var(--fufka-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(248, 241, 226, 0.82);
  font-size: clamp(18px, 1.5vw, 22px);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.button-primary { background: var(--fufka-gold); color: #141311; }
.button-secondary { border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
.hero-card {
  padding: 34px 28px;
  background: var(--fufka-panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}
.hero-card .frame,
.entry-grid .frame,
.home-editorial .frame,
.content-wrap .frame { margin: 0; }
.hero-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 0.95;
}
.hero-card p { color: rgba(244, 234, 213, 0.78); }
.hero-card a {
  display: inline-flex;
  gap: 12px;
  margin-top: 18px;
  color: var(--fufka-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.entry-section {
  padding: 110px clamp(20px, 7vw, 110px);
  color: var(--fufka-ink);
}
.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-heading > p {
  margin: 10px 0 0;
  color: var(--fufka-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-heading h2 {
  width: min(760px, 72%);
  margin: 0;
  color: #181614;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
}
.section-heading em { color: var(--fufka-accent); }
.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.entry-grid > div { display: grid; gap: 22px; }
.entry-grid .frame {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 18, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 17, 18, 0.06);
}
.entry-grid h2,
.entry-grid h3 {
  margin: 0 0 14px;
  color: #1b1815;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}
.entry-grid p,
.content-wrap p,
.content-wrap li,
.content-wrap blockquote,
.home-editorial p { color: #5b5348; }
.entry-grid a,
.content-wrap a,
.home-editorial a {
  color: #42311f;
  font-weight: 700;
  text-decoration-color: var(--fufka-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.home-editorial { padding: 0 0 110px; color: var(--fufka-ink); }
.home-editorial > .frame {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 58px);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(17, 17, 18, 0.08);
}
.home-editorial h2 {
  margin: 0 0 18px;
  color: #1e1a15;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}
.home-editorial ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}
.home-editorial li {
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,18,0.14);
}
.home-editorial strong {
  display: block;
  margin-bottom: 8px;
  color: #1e1a15;
  font: 400 26px/1 var(--fufka-serif);
}

.page-hero {
  min-height: 460px;
  padding: 170px clamp(20px, 8vw, 120px) 88px;
  background:
    linear-gradient(135deg, rgba(11, 12, 15, 0.88), rgba(11, 12, 15, 0.55)),
    url("../Images/emblem-75.jpg") center/cover no-repeat;
  border-bottom: 4px solid var(--fufka-gold);
}
.page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #f8f1e2;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
}
.page-hero > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(248, 241, 226, 0.8);
  font-size: clamp(18px, 2vw, 23px);
}
.content-wrap {
  min-height: 480px;
  padding: 80px max(20px, calc((100vw - 980px) / 2)) 120px;
  background: #fff;
  color: var(--fufka-ink);
}
.content-wrap .frame { margin: 0 0 52px; }
.content-wrap h2 {
  margin: 0 0 18px;
  color: #1e1a15;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
}
.content-wrap h3 {
  margin: 34px 0 12px;
  color: #231d17;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
}
.content-wrap ul,
.content-wrap ol { padding-left: 22px; }
.content-wrap blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--fufka-gold);
  background: #f5efe4;
  font: 400 24px/1.45 var(--fufka-serif);
}
.contact-card {
  padding: 28px;
  border-radius: 20px;
  background: #f5efe4;
  border-bottom: 4px solid var(--fufka-gold);
}
.contact-card a { font-size: clamp(18px, 4vw, 34px); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px clamp(20px, 6vw, 86px);
  background: #0c0d10;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-contact p {
  margin: 0 0 6px;
  color: rgba(244, 234, 213, 0.72);
  font-size: 13px;
}
.footer-contact a {
  color: #f6eedc;
  font: 400 24px/1.1 var(--fufka-serif);
  text-decoration: none;
}
.site-footer > nav { display: flex; gap: 18px; }
.site-footer > nav a {
  color: rgba(244, 234, 213, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .menu-toggle { display: inline-flex; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 16px;
    right: 16px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(10, 11, 13, 0.96);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  }
  .site-header nav.is-open { display: block; }
  .site-header nav ul { flex-direction: column; align-items: flex-start; }
  .hero-shell, .entry-grid, .site-footer { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading h2 { width: 100%; margin-top: 16px; }
  .home-editorial ul { grid-template-columns: 1fr; }
  .site-footer > nav { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 14px; }
  .brand img { width: 56px; height: 56px; }
  .brand strong { font-size: 24px; }
  .home-hero { min-height: 0; padding: 110px 10px 28px; }
  .hero-copy { min-height: 0; padding: 26px 20px; }
  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .home-editorial h2,
  .content-wrap h2 { hyphens: auto; overflow-wrap: break-word; }
  .hero-copy h1 { font-size: clamp(42px, 14vw, 56px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .entry-section, .content-wrap, .home-editorial { padding-inline: 20px; }
  .home-editorial > .frame { padding: 28px 22px; }
  .page-hero { min-height: 360px; padding: 142px 20px 58px; }
  .site-footer { padding: 34px 20px; }
  .footer-contact a { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
