﻿:root {
  --black: #0c0c0c;
  --black-soft: #141414;
  --white: #f8f7f4;
  --white-muted: rgba(248, 247, 244, 0.72);
  --gold: #c9a962;
  --gold-deep: #a8894a;
  --gold-glow: rgba(201, 169, 98, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
  --organize-frame: #cc9c4e;
  --organize-mat: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.site-header-inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-link img {
  height: 83px;
  width: auto;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem 2rem;
}

.nav-main a {
  font-size: 0.90rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-muted);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.35s var(--ease-out);
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.45s var(--ease-out);
}

.nav-main a:hover { color: var(--white); }
.nav-main a:hover::after { width: 100%; }

.nav-main a.is-active {
  color: var(--gold);
}
.nav-main a.is-active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 98, 0.3));
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border: none;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.45);
  cursor: pointer;
  transition: border-color 0.35s, background 0.35s, color 0.35s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
  color: var(--gold);
}

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-image:
    radial-gradient(ellipse 85% 65% at 50% 38%, rgba(201, 169, 98, 0.1) 0%, transparent 58%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.42) 0%, rgba(12, 12, 12, 0.72) 42%, rgba(6, 6, 6, 0.88) 100%),
    url("../images/slider1.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  transform: translateZ(0);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.28;
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 2%); }
  50% { transform: translate(2%, -1%); }
  75% { transform: translate(-1%, -2%); }
}

.hero-parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-line {
  position: absolute;
  width: 1px;
  height: 120%;
  left: 18%;
  top: -10%;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.25), transparent);
  opacity: 0.6;
}

.hero-line.right { left: auto; right: 22%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 920px;
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--white-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.55s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.35);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

/* Inner page hero */
.page-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(201, 169, 98, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, var(--black) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero-inner.hero-wide {
  max-width: none;
}

.page-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--white-muted);
  max-width: 560px;
}

/* Home: feature tiles */
.home-intro {
  padding: clamp(5rem, 12vw, 8rem) 0;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.home-intro-text {
  max-width: 38rem;
}

.home-intro-text .section-lead {
  margin-bottom: 1.5rem;
}

.home-intro-text .section-title {
  max-width: none;
}

/* Ana sayfa karÅŸÄ±lama: yatay dikdÃ¶rtgen gÃ¶rsel + metin dengesi */
.home-intro-grid .about-visual.about-visual--organize {
  aspect-ratio: 16 / 10;
  align-self: center;
  width: 100%;
  max-width: min(100%, 480px);
  margin-inline: auto 0;
}

.home-intro-text p.muted {
  font-weight: 300;
  color: var(--white-muted);
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1.25rem;
  margin-top: clamp(3rem, 8vw, 5rem);
}

.tile-link {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1.5fr) minmax(0, 1fr);
  height: 100%;
  min-height: clamp(163px, 26.25vw, 250px);
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.18);
  background:
    linear-gradient(165deg, rgba(201, 169, 98, 0.06) 0%, transparent 55%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

.tile-link__media {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 98, 0.14);
  background: var(--black-soft);
}

.tile-link__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 12, 12, 0.65) 100%);
}

.tile-link__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.tile-link:hover .tile-link__media img {
  transform: scale(1.06);
}

.tile-link__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.5rem 1.15rem;
}

.tile-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 140px;
  height: 140px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
}

.tile-link:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.tile-link:hover::before {
  opacity: 1;
}

.tile-num {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.tile-link h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.tile-link p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.tile-arrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  margin-top: auto;
  padding-top: 0.35rem;
}

.strip-quote {
  padding: clamp(4rem, 10vw, 6rem) 0;
  border-block: 1px solid rgba(201, 169, 98, 0.1);
  background: var(--black-soft);
  text-align: center;
}

.strip-quote p {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-style: italic;
  color: var(--white-muted);
  max-width: 820px;
  margin-inline: auto;
}

section {
  padding: clamp(5rem, 12vw, 8.5rem) 0;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-muted);
  max-width: 640px;
}

.bg-alt {
  background: var(--black-soft);
}

.parallax-band {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-image:
    linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(12, 12, 12, 0.88)),
    radial-gradient(ellipse at center, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  background-size: cover;
  background-position: center;
  border-block: 1px solid rgba(201, 169, 98, 0.1);
}

.parallax-quote {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  text-align: center;
  max-width: 780px;
  padding: 2rem;
  color: var(--white-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
  margin-top: 3rem;
}

.about-grid .about-text {
  max-width: 38rem;
}

.about-grid .about-visual.about-visual--organize {
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: min(100%, 440px);
  margin-inline: auto;
}

.about-text p + p { margin-top: 1.25rem; color: var(--white-muted); font-weight: 300; }

.about-visual {
  aspect-ratio: 4/5;
  border: 1px solid rgba(201, 169, 98, 0.2);
  background:
    linear-gradient(145deg, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
    var(--black);
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(248, 247, 244, 0.06);
  pointer-events: none;
}

.about-visual.about-visual--organize {
  display: flex;
  flex-direction: column;
  padding: var(--organize-mat);
  box-sizing: border-box;
  background: #0a0a0a;
  border: 1px solid var(--organize-frame);
  cursor: pointer;
  transition:
    transform 0.55s var(--ease-out),
    border-color 0.45s,
    box-shadow 0.55s var(--ease-out);
}

.about-visual.about-visual--organize::before {
  content: none;
}

.about-visual.about-visual--organize::after {
  content: none;
}

.about-visual__frame-inner {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--organize-frame);
  transition: border-color 0.45s ease;
}

.about-visual__frame-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(10, 10, 10, 0.35) 0%, transparent 52%, rgba(10, 10, 10, 0.2) 100%);
  opacity: 1;
  transition: opacity 0.45s ease;
}

@media (hover: hover) {
  .about-visual.about-visual--organize:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--organize-frame);
    box-shadow:
      0 36px 80px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(204, 156, 78, 0.35),
      0 0 40px rgba(204, 156, 78, 0.18);
  }

  .about-visual.about-visual--organize:hover .about-visual__frame-inner::before {
    opacity: 0.72;
    background: linear-gradient(155deg, rgba(201, 169, 98, 0.12) 0%, transparent 50%, rgba(8, 8, 8, 0.35) 100%);
  }

  .about-visual.about-visual--organize:hover .about-visual__frame-inner {
    border-color: var(--organize-frame);
  }

  .about-visual.about-visual--organize:hover .about-visual__img {
    transform: scale(1.08);
  }
}

.about-visual__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  transition: transform 0.65s var(--ease-out);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card {
  padding: 2.25rem 1.85rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(201, 169, 98, 0.14);
  transition: transform 0.5s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.card-num {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--white-muted);
}

.approach-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 720px;
}

.approach-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(248, 247, 244, 0.06);
}

.approach-item:last-child { border-bottom: none; }

.approach-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.menu-page-aside {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.menu-page-aside h3 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.menu-page-aside p {
  font-weight: 300;
  color: var(--white-muted);
  font-size: 0.95rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.menu-layout .menu-grid {
  margin-top: 0;
}

.menu-block {
  padding: 2rem 2rem 2.25rem;
  border: 1px solid rgba(201, 169, 98, 0.18);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, background 0.4s;
}

.menu-block:hover {
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.04);
}

.menu-block h3 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  color: var(--gold);
}

.menu-block ul { list-style: none; }
.menu-block li {
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(248, 247, 244, 0.06);
  color: var(--white-muted);
  transition: color 0.3s, padding-left 0.3s;
}

.menu-block li:last-child { border-bottom: none; }
.menu-block li:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pill {
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--white-muted);
  transition: border-color 0.35s, color 0.35s;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.vm-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
  min-height: 220px;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}

.vm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.35);
}

.vm-card h3 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.vm-card p {
  font-weight: 300;
  color: var(--white-muted);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.icon-item {
  padding: 1.75rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

.icon-item p { font-size: 0.92rem; font-weight: 300; color: var(--white-muted); }

.cert-block {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.14);
}

.cert-heading {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 0.75rem;
}

.cert-lead {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.pdf-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.65rem 1.5rem;
  border: 1px solid rgba(201, 169, 98, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 55%);
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  min-height: 100%;
}

.pdf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 98, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.pdf-card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}

.pdf-card-icon svg {
  width: 100%;
  height: 100%;
}

.pdf-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}

.pdf-card-meta {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: auto;
}

.pdf-card-arrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.capacity-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: baseline;
}

.stat {
  flex: 1;
  min-width: 200px;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
  align-items: start;
}

.contact-info p {
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--white-muted);
}

.contact-info a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
  transition: border-color 0.3s;
}

.contact-info a:hover { border-color: var(--gold); }

.contact-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--white-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.2);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-placeholder {
  margin-top: 3rem;
  height: clamp(320px, 40vw, 460px);
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: var(--black-soft);
  overflow: hidden;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  background: #080808;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand img { height: 100px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 247, 244, 0.45);
  max-width: 320px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.45);
  transition: color 0.3s;
}

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

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--white-muted);
  transition: border-color 0.35s, color 0.35s, transform 0.35s;
}

.social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 247, 244, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--white);
  padding: 0.55rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 900px) {
  .about-grid,
  .menu-grid,
  .two-col,
  .contact-grid,
  .footer-inner,
  .home-intro-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .tile-link {
    min-height: clamp(188px, 57.5vw, 288px);
  }

  .about-grid .about-visual.about-visual--organize {
    max-width: 100%;
    margin-inline: 0;
  }

  .home-intro-grid .about-visual.about-visual--organize {
    max-width: 100%;
    margin-inline: 0;
    aspect-ratio: 16 / 10;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .nav-main {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out), opacity 0.35s;
  }

  .nav-main.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle { display: block; }
  .hero-line { display: none; }
  .parallax-band { background-attachment: scroll; min-height: 36vh; }
}

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

