/* A Kapcsolat Tere — onepage landing */

:root {
  --forest-deep: #243528;
  --forest: #334836;
  --sage: #5f735e;
  --moss: #7d9170;
  --leaf: #a3b58f;
  --sand: #e6ddd0;
  --linen: #f2ece3;
  --cream: #faf7f2;
  --gold: #b08a42;
  --gold-soft: #c9a56a;
  --ink: #1c261e;
  --muted: #5a665c;
  --line: rgba(36, 53, 40, 0.12);
  --shadow: 0 18px 50px rgba(28, 38, 30, 0.08);
  --radius: 2px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* Szövegméretek +15% (rem); h1–h3 külön kompenzálva, változatlanul maradnak */
  font-size: 115%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(163, 181, 143, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(176, 138, 66, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--linen) 45%, var(--sand) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--ease);
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--forest-deep);
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(calc(2.1rem / 1.15), 4.5vw, calc(3.15rem / 1.15));
}

h3 {
  font-size: clamp(calc(1.45rem / 1.15), 2.4vw, calc(1.85rem / 1.15));
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}

.section-intro {
  max-width: 50rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.625rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.85rem;
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  color: var(--muted);
  font-weight: 300;
}

.accent-line {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--forest);
  border-left: 2px solid var(--gold-soft);
  padding-left: 1.15rem;
  margin-top: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.45);
}

.btn-ghost:hover {
  background: rgba(250, 247, 242, 0.12);
  color: #fff;
  border-color: rgba(250, 247, 242, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(51, 72, 54, 0.35);
}

.btn-outline:hover {
  border-color: var(--forest);
  color: var(--forest-deep);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--forest-deep);
  border-color: rgba(36, 53, 40, 0.25);
}

.btn-ghost-dark:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.3s var(--ease);
}

.brand img {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.site-header.is-scrolled .brand {
  color: var(--forest-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: rgba(250, 247, 242, 0.88);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-header.is-scrolled .site-nav a {
  color: var(--forest);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-soft);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active {
  color: var(--gold);
}

.site-nav .nav-muted {
  opacity: 0.65;
}

.site-nav .nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(250, 247, 242, 0.35);
  color: var(--cream);
}

.site-header.is-scrolled .site-nav .nav-cta {
  border-color: rgba(51, 72, 54, 0.3);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.nav-open .nav-toggle span {
  background: var(--forest-deep);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(0, -1.5%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 30, 22, 0.55) 0%, rgba(20, 30, 22, 0.28) 38%, rgba(20, 30, 22, 0.45) 72%, rgba(20, 30, 22, 0.72) 100%),
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(20, 30, 22, 0.15), transparent 70%),
    rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  max-width: 42rem;
  animation: hero-rise 1.1s var(--ease) both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: clamp(4.5rem, 10vw, 6rem);
  height: auto;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero-brand {
  font-size: clamp(2.6rem, 8.05vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  color: #c9a56a;
  background-image:
    linear-gradient(
      115deg,
      #5c3d12 0%,
      #8a5a1a 12%,
      #c9a56a 28%,
      #f3e2a8 42%,
      #fff8e0 48%,
      #e8c56a 55%,
      #b08a42 68%,
      #f0d78a 82%,
      #8a5a1a 92%,
      #6b4418 100%
    );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.79))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.65))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 18px rgba(201, 165, 106, 0.22));
  animation: gold-sheen 5.5s ease-in-out infinite;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-brand {
    color: var(--gold-soft);
    -webkit-text-fill-color: currentColor;
    background: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
    filter: none;
    animation: none;
  }
}

@keyframes gold-sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 3.36vw, 2.22rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-soft);
  margin: 0 0 1rem;
}

.hero-lead {
  font-weight: 600;
  font-size: clamp(1.2rem, 2.16vw, 1.344rem);
  color: rgba(250, 247, 242, 0.9);
  margin: 0 auto 2rem;
  max-width: 28rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(250, 247, 242, 0.4);
  border-radius: 999px;
  text-decoration: none;
}

.hero-scroll span {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0.45rem auto 0;
  border-radius: 50%;
  background: var(--gold-soft);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Welcome */
.section-welcome {
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.92), rgba(242, 236, 227, 0.75));
}

.section-welcome h2 {
  margin-bottom: 1.25rem;
}

/* Path */
.section-path {
  background:
    linear-gradient(135deg, rgba(51, 72, 54, 0.04), transparent 40%),
    linear-gradient(180deg, transparent, rgba(230, 221, 208, 0.55));
}

.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.path-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.path-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.path-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  min-width: 3.2rem;
}

.path-step h3 {
  margin-bottom: 0.65rem;
}

.path-step p {
  color: var(--muted);
}

/* Happen */
.section-happen {
  color: var(--cream);
  overflow: hidden;
}

.happen-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(36, 53, 40, 0.94), rgba(51, 72, 54, 0.9)),
    url("assets/hero-forest.jpg") center / cover;
  filter: saturate(0.85);
  transform: scale(1.02);
}

.section-happen .section-intro,
.section-happen .happen-grid,
.section-happen .quote-banner {
  position: relative;
  z-index: 1;
}

.section-happen .eyebrow {
  color: var(--gold-soft);
}

.section-happen h2,
.section-happen h3 {
  color: #fff;
}

.section-happen .lead {
  color: rgba(250, 247, 242, 0.82);
}

.happen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.happen-block h3 {
  margin-bottom: 1rem;
  font-size: calc(1.55rem / 1.15);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(250, 247, 242, 0.88);
  font-weight: 300;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(201, 165, 106, 0.2);
}

.quote-banner {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  display: grid;
  gap: 1rem;
}

.quote-banner p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.95);
  max-width: 46rem;
  margin: 0;
}

.happen-note {
  margin-top: 1.25rem;
  color: rgba(250, 247, 242, 0.82);
  font-weight: 300;
}

.happen-extra {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  max-width: 46rem;
}

.happen-extra p,
.happen-extra .check-list li {
  color: rgba(250, 247, 242, 0.88);
}

.happen-extra h3 {
  margin: 1.25rem 0 0.85rem;
  font-size: calc(1.45rem / 1.15);
}

.section-background {
  background: linear-gradient(180deg, rgba(242, 236, 227, 0.85), rgba(230, 221, 208, 0.55));
}

.question-line {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage);
  margin: 0 0 1rem;
}

.path-cta {
  margin-top: 1rem !important;
  color: var(--forest) !important;
  font-weight: 500;
  font-size: 0.95rem !important;
}

.plain-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.plain-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.plain-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.note-panel h3 {
  margin-bottom: 0.85rem;
}

/* Services */
.service-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-path {
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--gold-soft);
}

.path-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.55rem;
  font-weight: 500;
}

.service-path .tags {
  font-size: 0.92rem;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 400;
}

.service-path p:not(.tags):not(.path-label) {
  color: var(--muted);
  font-size: 0.98rem;
}

.note-panel {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 44rem;
}

.note-panel p {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.45;
}

/* About */
.section-about {
  background:
    linear-gradient(180deg, rgba(242, 236, 227, 0.5), rgba(250, 247, 242, 0.9));
}

.about-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.person {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.person:nth-child(even) {
  direction: rtl;
}

.person:nth-child(even) > * {
  direction: ltr;
}

.person-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.person:hover .person-photo img {
  transform: scale(1.04);
}

.person-role {
  font-size: 0.95rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.person-body p {
  color: var(--muted);
}

.person-links {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.person-links a {
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.person-links a:hover {
  border-bottom-color: currentColor;
}

/* Edu */
.section-edu {
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.section-edu .container.narrow {
  width: min(850px, calc(100% - 2.5rem));
}

.section-edu .lead {
  margin-bottom: 1.5rem;
}

.coming-soon {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 1px dashed rgba(51, 72, 54, 0.35);
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Events */
.section-events {
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(163, 181, 143, 0.2), transparent 55%),
    linear-gradient(180deg, var(--linen), var(--sand));
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: rgba(250, 247, 242, 0.72);
  border-top: 2px solid var(--gold-soft);
  overflow: hidden;
  min-width: 0;
}

.event-card--soon {
  border-top-color: rgba(95, 115, 94, 0.35);
  background: rgba(250, 247, 242, 0.5);
}

.event-card-media,
.event-card-placeholder {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sand);
  text-decoration: none;
}

.event-card-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(51, 72, 54, 0.08), rgba(176, 138, 66, 0.1)),
    var(--linen);
  border-bottom: 1px solid var(--line);
}

.event-card-placeholder span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--sage);
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.event-card:hover .event-card-media img {
  transform: scale(1.04);
}

.event-badge {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  z-index: 1;
  padding: 0.3rem 0.55rem;
  background: rgba(36, 53, 40, 0.88);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.95rem 1rem 1.1rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.event-hosts {
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.8rem;
}

.event-card h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.25;
}

.event-card h3 a {
  color: var(--forest-deep);
  text-decoration: none;
}

.event-card h3 a:hover {
  color: var(--gold);
}

.event-card--soon h3 {
  color: var(--forest-deep);
}

.event-card--soon .event-facts li > span:last-child {
  color: var(--muted);
}

.event-summary {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.event-facts {
  list-style: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.event-facts li {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.35;
}

.event-facts li > span:first-child {
  color: var(--sage);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 0.12rem;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.event-card .btn {
  min-height: 2.45rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

.event-card .btn.is-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
  transform: none;
}

/* CTA */
.section-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(51, 72, 54, 0.06), rgba(36, 53, 40, 0.1));
  padding-block: clamp(4rem, 8vw, 6rem);
}

.section-cta .lead {
  margin-bottom: 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(250, 247, 242, 0.75);
  padding: 2.75rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

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

.footer-brand img {
  width: 2.75rem;
  height: 2.75rem;
  opacity: 0.95;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

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

.footer-nav a {
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 1.25rem;
}

.footer-copy,
.footer-design {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}

.footer-design {
  text-align: right;
  margin-left: auto;
}

.footer-design a {
  color: inherit;
}

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

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Responsive */
@media (max-width: 960px) {
  .service-paths {
    grid-template-columns: 1fr;
  }

  .happen-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
    z-index: 120;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    min-height: 100svh;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
  }

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

  .site-nav a,
  .site-header.is-scrolled .site-nav a,
  .site-header.nav-open .site-nav a {
    color: var(--forest-deep);
    font-size: 1.2rem;
    font-family: var(--font-display);
  }

  .site-nav .nav-cta,
  .site-header.is-scrolled .site-nav .nav-cta {
    margin-top: 0.5rem;
    border-color: rgba(51, 72, 54, 0.3);
  }

  .site-header.nav-open {
    background: transparent;
    box-shadow: none;
  }

  .person,
  .person:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .person-photo {
    max-width: 280px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .container,
  .container.narrow {
    width: calc(100% - 1.75rem);
  }

  .path-step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-actions,
  .event-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-brand {
    letter-spacing: 0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-img,
  .hero-content,
  .hero-brand,
  .hero-scroll span,
  .reveal,
  .person-photo img {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
