/* ─── FONTS ─── */
@font-face {
  font-family: 'Barboskin';
  src: url('barboskinsakzident.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background-color: #faf5ee;
  color: #3d2b1e;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── CSS VARIABLES ─── */
:root {
  --bg:        #faf5ee;
  --bg-alt:    #f0e6d5;
  --bg-warm:   #f5e0c5;
  --text:      #3d2b1e;
  --muted:     #7a5c4a;
  --primary:   #3d9e6e;
  --pdk:       #2d7a54;
  --accent:    #c85830;
  --accent-lt: #e07040;
  --gold:      #c8860e;
  --gold-lt:   #e8a02a;
  --card:      #fffaf3;
  --border:    #ddd0be;
  --sh:        0 4px 20px rgba(61,43,30,.09);
  --sh-md:     0 8px 32px rgba(61,43,30,.14);
  --r:   16px;
  --r-s:  8px;
  --r-l: 24px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Barboskin', Georgia, serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.9rem,5vw,3.4rem); }
h2 { font-size: clamp(1.6rem,4vw,2.5rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.45rem); }
p  { margin-bottom: 1rem; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt  { background-color: var(--bg-alt); }
.section-warm { background-color: var(--bg-warm); }
.sec-hd { text-align: center; margin-bottom: 3rem; }
.sec-hd h2 { margin-bottom: .6rem; }
.sec-hd .sub { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary  { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-outline  { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn-outline:hover { background: #fff; color: var(--accent); }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.1rem; }

/* ─── ANIMATIONS ─── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fi.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ─── WAVE ─── */
.wave { line-height: 0; overflow: hidden; margin-bottom: -1px; }
.wave svg { display: block; width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1.5rem;
  background: rgba(250,245,238,.95); backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(61,43,30,.08);
  transition: transform .3s ease;
}
.nav.hidden { transform: translateY(-100%); }
.nav img { height: 44px; width: auto; }

/* ═══ HERO ═══ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 1.5rem 5rem;
  background: url('images/hero-bg.jpg') center top / cover no-repeat;
  background-attachment: fixed;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(170deg,rgba(255,240,210,.80) 0%,rgba(240,215,170,.88) 55%,rgba(200,168,110,.92) 100%);
}
.hero-c { position: relative; z-index: 1; max-width: 820px; }
.hero-logo { height: clamp(110px,22vw,190px); margin: 0 auto 2rem; filter: drop-shadow(0 4px 12px rgba(61,43,30,.18)); }
.hero-title { font-size: clamp(1.7rem,4.5vw,3rem); color: #3a2412; margin-bottom: 1rem; text-shadow: 0 2px 6px rgba(255,240,200,.6); }
.hero-sub   { font-size: clamp(.9rem,2vw,1.1rem); color: #5a3820; margin-bottom: 1rem; font-weight: 600; }
.hero-teaser {
  font-size: clamp(.87rem,1.8vw,1.02rem); color: #6a4225; font-style: italic;
  margin: 0 auto 2.5rem; max-width: 640px;
  padding: 1rem 1.5rem; background: rgba(255,255,255,.38);
  border-radius: var(--r); backdrop-filter: blur(4px);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-sun {
  position: absolute; top: 6%; right: 6%;
  width: clamp(70px,11vw,150px); height: auto;
  animation: sun-spin 40s linear infinite; opacity: .5; pointer-events: none;
}
@keyframes sun-spin { to { transform: rotate(360deg); } }

/* ═══ TIMELINE ═══ */
.timeline {
  display: flex; justify-content: space-between; gap: 1rem; position: relative;
  margin: 3rem 0 2rem;
}
.timeline::before {
  content: ''; position: absolute; top: 36px; left: 44px; right: 44px;
  height: 3px; background: linear-gradient(90deg,var(--gold-lt),var(--accent)); z-index: 0;
}
.tl-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.tl-dot {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1rem; position: relative; z-index: 1;
  box-shadow: var(--sh); flex-shrink: 0;
}
.tl-time { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin-bottom: .3rem; }
.tl-text { font-size: .88rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 767px) {
  .timeline { flex-direction: column; gap: 0; }
  .timeline::before { display: none; }
  .tl-item { flex-direction: row; text-align: left; gap: 1rem; padding-bottom: 1.25rem; }
  .tl-item:not(:last-child)::after {
    content: ''; position: absolute; left: 34px; top: 72px; bottom: 0;
    width: 3px; background: var(--gold-lt); border-radius: 2px;
  }
  .tl-dot { width: 58px; height: 58px; font-size: 1.4rem; }
  .tl-body { flex: 1; }
}
.tl-quote {
  padding: 1.5rem 2rem; background: var(--card);
  border-left: 4px solid var(--gold-lt); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; color: var(--muted); font-size: .97rem; box-shadow: var(--sh);
}
.tl-quote cite { display: block; margin-top: .5rem; font-style: normal; font-size: .84rem; color: var(--gold); font-weight: 700; }

/* ═══ VIDEO ═══ */
.video-wrap { position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--sh-md); }
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

/* ═══ CARDS-3 ═══ */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 767px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--card); border-radius: var(--r); padding: 2rem 1.75rem;
  box-shadow: var(--sh); transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.card-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.card h3 { color: var(--accent); margin-bottom: .65rem; }
.card p  { color: var(--muted); font-size: .93rem; margin: 0; }

/* ═══ INSTITUTIONS ═══ */
.inst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 767px)  { .inst-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .inst-grid { grid-template-columns: repeat(2,1fr); } }
.inst-card {
  background: var(--card); border-radius: var(--r); padding: 1.2rem 1.4rem;
  box-shadow: var(--sh); display: flex; gap: .9rem; align-items: flex-start; transition: transform .2s;
}
.inst-card:hover { transform: translateY(-3px); }
.inst-icon { font-size: 1.9rem; flex-shrink: 0; }
.inst-name { font-weight: 700; font-size: .97rem; margin-bottom: .2rem; }
.inst-desc { font-size: .84rem; color: var(--muted); margin: 0; }
.inst-hi {
  margin-top: 2rem; padding: 1.4rem 2rem;
  background: linear-gradient(135deg,#fff9f0,#fef3df); border: 2px solid var(--gold-lt);
  border-radius: var(--r); text-align: center; font-weight: 700; font-size: 1.05rem; color: var(--accent); box-shadow: var(--sh);
}

/* ═══ DAYS ═══ */
.days-scroll { overflow-x: auto; padding: 1rem 0 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.days-scroll::-webkit-scrollbar { height: 4px; }
.days-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.days-track { display: flex; gap: 1rem; padding: .5rem; width: max-content; }
.day-card {
  width: 130px; background: var(--card); border-radius: var(--r);
  padding: 1.4rem 1rem; text-align: center; box-shadow: var(--sh); flex-shrink: 0; transition: transform .2s;
}
.day-card:hover { transform: translateY(-4px); }
.day-card.arr { border: 2px solid var(--gold-lt); }
.day-em { font-size: 1.9rem; margin-bottom: .4rem; }
.day-n  { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.day-th { font-weight: 700; font-size: .82rem; }
.days-ex { margin-top: 1.5rem; padding: 1.2rem 1.75rem; background: var(--card); border-radius: var(--r); font-style: italic; color: var(--muted); font-size: .93rem; text-align: center; box-shadow: var(--sh); }

/* ═══ GALLERY ═══ */
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 767px) { .gal-grid { grid-template-columns: repeat(2,1fr); } }
.gal-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh); transition: transform .3s; }
.gal-item:hover { transform: scale(1.03); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ STORIES ═══ */
.stories { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 767px) { .stories { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .stories { grid-template-columns: repeat(2,1fr); } }
.story {
  background: var(--card); border-radius: var(--r); padding: 2rem 1.75rem 1.75rem; box-shadow: var(--sh); position: relative;
}
.story-q { font-family: Georgia,serif; font-size: 4.5rem; line-height: 1; color: var(--gold-lt); opacity: .55; position: absolute; top: .1rem; left: 1.2rem; }
.story-t { font-weight: 700; font-size: 1.05rem; color: var(--accent); margin: 1.8rem 0 .6rem; }
.story-b { font-style: italic; color: var(--muted); font-size: .92rem; margin: 0; }

/* ═══ PEDAGOGY ═══ */
.ped-text { max-width: 740px; margin: 0 auto 2.5rem; }
.ped-text p { color: var(--muted); font-size: .97rem; }
.laws { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.75rem; }
@media (max-width: 767px) { .laws { grid-template-columns: 1fr; } }
.law { background: var(--card); border-radius: var(--r); padding: 1.5rem; text-align: center; box-shadow: var(--sh); }
.law-ic { font-size: 1.9rem; margin-bottom: .5rem; }
.law-tx { font-weight: 700; font-size: .97rem; }
.ped-note { text-align: center; font-style: italic; color: var(--muted); font-size: .93rem; }

/* ═══ TEAM ═══ */
.team { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media (max-width: 767px) { .team { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px)  { .team { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) and (max-width: 1199px) { .team { grid-template-columns: repeat(3,1fr); } }
.tm {
  background: var(--card); border-radius: var(--r); padding: 1.5rem 1.25rem; text-align: center; box-shadow: var(--sh); transition: transform .25s;
}
.tm:hover { transform: translateY(-4px); }
.tm-av {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto .9rem;
  overflow: hidden; flex-shrink: 0;
}
.tm-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-name { font-weight: 700; font-size: .97rem; margin-bottom: .35rem; }
.tm-desc { font-size: .8rem; color: var(--muted); margin-bottom: .7rem; line-height: 1.55; }
.tm-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--primary); font-weight: 700; transition: color .2s; }
.tm-link:hover { color: var(--pdk); }

/* ═══ FOR YOU ═══ */
.fy-list { list-style: none; max-width: 680px; margin: 0 auto; }
.fy-list li { display: flex; align-items: flex-start; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: 1.02rem; }
.fy-list li:last-child { border-bottom: none; }
.fy-ch { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }

/* ═══ PRICING ═══ */
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width: 767px) { .price-cards { grid-template-columns: 1fr; } }
.pc {
  background: var(--card); border-radius: var(--r); padding: 2rem; text-align: center; box-shadow: var(--sh); transition: transform .25s;
}
.pc:hover { transform: translateY(-4px); }
.pc.feat { background: linear-gradient(135deg,#fff8ee,#fffaf3); border: 2px solid var(--gold-lt); }
.pc-lbl  { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; }
.pc-price { font-family: 'Barboskin',Georgia,serif; font-size: 2.4rem; color: var(--accent); margin: .4rem 0; }
.pc-per  { font-size: .84rem; color: var(--muted); }
.inc { max-width: 780px; margin: 0 auto; }
.inc h3 { font-family: 'Nunito',sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; }
.inc-list { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 0 2rem; }
@media (max-width: 767px) { .inc-list { grid-template-columns: 1fr; } }
.inc-list li { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--border); font-size: .94rem; }
.inc-list li:last-child { border-bottom: none; }
.inc-list li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.chk { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* ═══ ACCOMMODATION ═══ */
.ac-desc { text-align: center; color: var(--muted); font-size: 1.02rem; max-width: 700px; margin: 0 auto 2.5rem; }
.rooms { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
@media (max-width: 767px) { .rooms { grid-template-columns: 1fr; } }
.room { background: var(--card); border-radius: var(--r); padding: 1.75rem; box-shadow: var(--sh); display: flex; gap: 1.1rem; align-items: flex-start; }
.room-ic { font-size: 2.2rem; flex-shrink: 0; }
.room-nm { font-weight: 700; font-size: 1.05rem; margin-bottom: .35rem; }
.room-ds { color: var(--muted); font-size: .88rem; margin: 0; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card); border-radius: var(--r); margin-bottom: .75rem; box-shadow: var(--sh); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: .97rem; font-weight: 700; color: var(--text); text-align: left; gap: 1rem; transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-arr { flex-shrink: 0; transition: transform .3s; color: var(--accent); }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }
.faq-a p { color: var(--muted); font-size: .93rem; line-height: 1.7; margin: 0; }

/* ═══ CTA ═══ */
#cta {
  background: linear-gradient(to bottom,#c85830 0%,#d96e44 55%,#e8a02a 100%);
  padding: 6rem 1.5rem; text-align: center;
}
#cta h2 { color: #fff; font-size: clamp(1.7rem,4vw,2.8rem); margin-bottom: .9rem; }
#cta .cta-sub { color: rgba(255,255,255,.9); font-size: 1.08rem; margin-bottom: 2rem; }
.cta-vk { display: block; margin-top: 1rem; color: rgba(255,255,255,.8); font-size: .94rem; transition: color .2s; }
.cta-vk:hover { color: #fff; text-decoration: underline; }

/* ═══ FORM ═══ */
.form-wrap { max-width: 560px; margin: 0 auto; background: var(--card); border-radius: var(--r-l); padding: 2.5rem; box-shadow: var(--sh-md); }
.form-info { background: rgba(61,158,110,.1); border: 1px solid rgba(61,158,110,.25); border-radius: var(--r-s); padding: .9rem 1.1rem; font-size: .88rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.6; }
.form-info a { color: var(--primary); font-weight: 700; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; }
.fg input { width: 100%; padding: .82rem 1rem; border: 2px solid var(--border); border-radius: var(--r-s); font-family: 'Nunito',sans-serif; font-size: 1rem; color: var(--text); background: #fff; outline: none; transition: border-color .2s; }
.fg input:focus { border-color: var(--primary); }
.f-cb { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1.5rem; }
.f-cb input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }
.f-cb label { font-size: .86rem; color: var(--muted); cursor: pointer; }
.f-btn {
  width: 100%; padding: .95rem; background: var(--accent); color: #fff; border: none;
  border-radius: 50px; font-family: 'Nunito',sans-serif; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .2s;
}
.f-btn:hover { background: var(--accent-lt); transform: translateY(-2px); }
.f-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.f-ok { display: none; text-align: center; padding: 2rem 1rem; }
.f-ok p { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 0; }
.f-err { display: none; text-align: center; color: #c0392b; font-size: .88rem; margin-top: .75rem; }
.req { color: var(--accent); }

/* ═══ PARENTS PROGRAM ═══ */
.pp-list { display: flex; flex-direction: column; gap: 2rem; }
.pp-card {
  display: flex; gap: 2rem; align-items: flex-start;
  background: var(--card); border-radius: var(--r); padding: 2rem;
  box-shadow: var(--sh);
}
.pp-photo {
  width: 140px; height: 140px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden;
}
.pp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-body { flex: 1; }
.pp-name { font-family: 'Barboskin', Georgia, serif; font-size: 1.2rem; margin-bottom: .6rem; }
.pp-topic {
  font-weight: 700; font-size: .97rem; color: var(--accent); margin-top: .85rem; margin-bottom: .35rem; line-height: 1.45;
}
.pp-topic:first-of-type { margin-top: 0; }
.pp-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 600px) {
  .pp-card { flex-direction: column; align-items: center; text-align: center; }
  .pp-photo { width: 110px; height: 110px; }
  .pp-topic:first-of-type { margin-top: .5rem; }
}

/* ═══ HONORED GUESTS ═══ */
.hg-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
@media (max-width: 767px) { .hg-grid { grid-template-columns: 1fr; } }
.hg-card {
  background: var(--card); border-radius: var(--r); padding: 2rem;
  box-shadow: var(--sh); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem;
}
.hg-photo {
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.hg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-name { font-family: 'Barboskin', Georgia, serif; font-size: 1.2rem; margin-bottom: .5rem; }
.hg-role { font-size: .85rem; font-weight: 700; color: var(--gold); line-height: 1.55; margin-bottom: .6rem; }
.hg-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ═══ MAP ═══ */
.map-info { text-align: center; margin-bottom: 1.75rem; }
.map-info p { color: var(--muted); margin-bottom: .4rem; }
.map-lnk { color: var(--primary); font-weight: 700; }
.map-lnk:hover { text-decoration: underline; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-md); height: 450px; }
.map-wrap > div, .map-wrap iframe { width: 100%; height: 100%; }

/* ═══ FOOTER ═══ */
footer { background: #3d2b1e; color: #c8b49a; padding: 3rem 1.5rem 2rem; }
.ft-inner { max-width: 1200px; margin: 0 auto; }
.ft-logo { height: 56px; margin-bottom: 1rem; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 767px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-col h4 { font-family: 'Nunito',sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-lt); margin-bottom: .85rem; }
.ft-col p, .ft-col a { font-size: .84rem; line-height: 1.85; color: #b09880; }
.ft-col a:hover { color: #e8d5bc; }
.ft-bot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; }
.ft-leg { font-size: .78rem; color: #7a6050; line-height: 1.7; max-width: 80%; }
@media (max-width: 767px) { .ft-leg { max-width: 100%; } }
.ft-soc { display: flex; gap: 1.25rem; }
.ft-soc a { font-size: .84rem; color: #8a7060; font-weight: 600; }
.ft-soc a:hover { color: #c8b49a; }
