/* ══════════════════════════════════════════════
   봄날요양원 · Premium Silver Care
   Luxury / clean / minimal — green + warm neutrals + gold
   ══════════════════════════════════════════════ */

:root {
  /* palette */
  --forest:   #16352a;   /* deep forest — primary dark */
  --green:    #2f5e46;   /* refined brand green */
  --green-lt: #4a7c5f;
  --sage:     #8aa593;
  --gold:     #b7935b;   /* accent */
  --gold-lt:  #d4b783;
  --cream:    #f6f2e9;   /* warm page bg */
  --ivory:    #fbf9f3;
  --tint:     #eef2ec;   /* soft green tint */
  --ink:      #23302a;   /* body text */
  --muted:    #6a766e;
  --line:     rgba(22,53,42,.12);
  --white:    #ffffff;

  --serif: "Noto Serif KR", "Cormorant Garamond", serif;
  --sans:  "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
body.no-scroll { overflow: hidden; }

/* ── typography helpers ── */
.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.28;
  letter-spacing: -.01em;
  color: var(--forest);
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 1.5rem; }
.section--tint { background: var(--tint); }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center; }
.section__lead { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold   { background: var(--gold); color: #fff; box-shadow: 0 10px 30px -12px rgba(183,147,91,.7); }
.btn--gold:hover { background: var(--gold-lt); color: var(--forest); }
.btn--ghost  { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--forest); }
.btn--outline{ background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: #fff; }

/* ══════════ CINEMATIC INTRO ══════════ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest);
  overflow: hidden;
  /* Failsafe: auto-dismiss even if JS never runs, so the page is never blocked */
  animation: introFailsafe 0s linear 5s forwards;
}
@keyframes introFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.intro__inner { position: relative; z-index: 2; text-align: center; }
.intro__mark { display: flex; justify-content: center; }
.intro__logo {
  width: clamp(75px, 13vw, 105px); height: auto; display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
  opacity: 0; transform: scale(.96);
  clip-path: inset(100% 0 0 0);        /* revealed bottom→top, like growth */
  animation: logoReveal 1.4s var(--ease) .2s forwards;
}
@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(.96); clip-path: inset(100% 0 0 0); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1);   clip-path: inset(0 0 0 0); }
}

.intro__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 3.6rem); color: #fff;
  letter-spacing: .04em; margin-top: 1.4rem;
  opacity: 0; transform: translateY(14px);
  animation: rise .9s var(--ease) 1.1s forwards;
}
.intro__title span { color: var(--gold-lt); font-weight: 400; }
.intro__line {
  width: 0; height: 1px; background: var(--gold); margin: 1.5rem auto;
  animation: expand 1s var(--ease) 1.5s forwards;
}
@keyframes expand { to { width: 120px; } }
.intro__tagline {
  color: rgba(255,255,255,.72); font-size: clamp(.85rem,2.4vw,1rem);
  letter-spacing: .06em;
  opacity: 0; animation: fade 1.1s ease 1.9s forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }

/* curtain reveal */
.intro__curtain {
  position: absolute; top: 0; height: 100%; width: 51%;
  background: var(--forest); z-index: 1;
}
.intro__curtain--l { left: 0; }
.intro__curtain--r { right: 0; }
.intro.is-done .intro__inner { opacity: 0; transition: opacity .5s ease; }
.intro.is-done .intro__curtain--l { transform: translateX(-100%); transition: transform 1s var(--ease) .35s; }
.intro.is-done .intro__curtain--r { transform: translateX(100%);  transition: transform 1s var(--ease) .35s; }
.intro.is-hidden { opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s; }

/* ══════════ NAV ══════════ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .4s var(--ease);
  padding: 1.4rem 0;
}
.nav__wrap {
  max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: .55rem; }
.nav__logo { width: 40px; height: 40px; display: block; }
.nav__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: #fff; transition: color .5s; }
.nav__name b { color: var(--gold-lt); font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a { color: rgba(255,255,255,.9); font-size: .96rem; font-weight: 500; transition: color .3s; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--gold-lt); transition: width .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--gold); color: #fff !important; padding: .6rem 1.2rem;
  border-radius: 999px; font-weight: 600; font-size: .88rem;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* Naver blog button — official Naver green "blog" speech-bubble mark */
.nav__blog { display: inline-flex; align-items: center; }
.nav__blog::after { display: none !important; }   /* no underline animation */
.nav__blog-badge {
  --naver: #03c75a;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--naver); color: #fff;
  font-family: "Pretendard", sans-serif; font-weight: 800; font-size: .82rem;
  letter-spacing: -.02em; line-height: 1;
  padding: .42rem .6rem .46rem; border-radius: 8px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s;
}
.nav__blog-badge::after {           /* speech-bubble tail */
  content: ""; position: absolute; left: 8px; bottom: -4px;
  border-width: 5px 5px 0 0; border-style: solid;
  border-color: var(--naver) transparent transparent transparent;
}
.nav__blog:hover .nav__blog-badge { transform: translateY(-2px); box-shadow: 0 8px 18px -6px rgba(3,199,90,.6); filter: brightness(1.05); }

/* scrolled state */
.nav.is-scrolled { background: rgba(251,249,243,.92); backdrop-filter: blur(12px); box-shadow: 0 6px 30px -18px rgba(0,0,0,.35); padding: .85rem 0; }
.nav.is-scrolled .nav__name { color: var(--forest); }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__cta { color: #fff !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: .35s var(--ease); border-radius: 2px; }
.nav.is-scrolled .nav__toggle span { background: var(--forest); }

/* ══════════ HERO ══════════ */
.hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__fallback { background-size: cover; background-position: center; z-index: -1; }
.hero__video { z-index: 0; will-change: transform; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,40,30,.45) 0%, rgba(15,40,30,.18) 35%, rgba(15,40,30,.55) 100%),
    radial-gradient(120% 90% at 50% 60%, transparent 40%, rgba(12,34,25,.55) 100%);
}
.hero__content { position: relative; z-index: 2; color: #fff; padding: 0 1.5rem; max-width: 900px; }
.hero__eyebrow { display: block; font-size: .8rem; letter-spacing: .35em; color: var(--gold-lt); margin-bottom: 1.6rem; font-weight: 600; }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 5.4vw, 4.1rem); line-height: 1.32;
  letter-spacing: -.01em; text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero__title em { font-style: normal; color: var(--gold-lt); }
.hero__sub { margin: 1.6rem auto 0; font-size: clamp(1rem,2.2vw,1.2rem); color: rgba(255,255,255,.9); font-weight: 300; }
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.75); display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .3em;
}
.hero__scroll i { width: 1px; height: 44px; background: linear-gradient(rgba(255,255,255,.8), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background:var(--gold-lt); animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%{top:-40%} 100%{top:100%} }

/* ══════════ ABOUT ══════════ */
.about__grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,6vw,5.5rem); align-items: center; }
.about__text p { color: var(--muted); margin-top: 1.4rem; font-size: 1.04rem; }
.about__pills { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.2rem; }
.about__pills li {
  font-size: .9rem; font-weight: 600; color: var(--green);
  background: var(--tint); border: 1px solid var(--line);
  padding: .55rem 1.1rem; border-radius: 999px;
}
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 40px 80px -40px rgba(22,53,42,.5); }
.about__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--forest); color: #fff; border-radius: 16px;
  padding: 1.1rem 1.5rem; text-align: center; box-shadow: 0 20px 40px -18px rgba(0,0,0,.5);
}
.about__badge-k { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--gold-lt); }
.about__badge-e { font-size: .68rem; letter-spacing: .2em; color: rgba(255,255,255,.7); text-transform: uppercase; }

/* ══════════ FACILITIES / GALLERY ══════════ */
.gallery {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  grid-auto-rows: 300px;
}
.gallery__item { position: relative; overflow: hidden; border-radius: 18px; margin: 0; box-shadow: 0 30px 60px -40px rgba(22,53,42,.5); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem; color: #fff;
  background: linear-gradient(0deg, rgba(12,34,25,.85) 0%, rgba(12,34,25,.15) 55%, transparent 100%);
}
.gallery__no { font-family: var(--serif); font-size: .9rem; color: var(--gold-lt); letter-spacing: .15em; }
.gallery__item h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-top: .3rem; }
.gallery__item p { font-size: .92rem; color: rgba(255,255,255,.82); margin-top: .4rem; max-width: 34ch;
  opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.gallery__item:hover p { opacity: 1; transform: translateY(0); }

/* ══════════ FACILITIES SUBPAGE GRID ══════════ */
.fac-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; grid-auto-rows: 300px; }
.fac-grid .gallery__item p { opacity: 1; transform: none; }
@media (max-width: 960px) { .fac-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; } }
@media (max-width: 620px) { .fac-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } }

/* ══════════ STRENGTHS / CARDS ══════════ */
.cards { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 18px;
  padding: 2.4rem 2rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -40px rgba(22,53,42,.4); border-color: var(--gold-lt); }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--tint); margin-bottom: 1.4rem; transition: background .5s;
}
.card:hover .card__icon { background: var(--forest); }
.card__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke .5s; }
.card:hover .card__icon svg { stroke: var(--gold-lt); }
.card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--forest); }
.card p { color: var(--muted); margin-top: .7rem; font-size: .98rem; }

/* ══════════ CHECK POINTS (봄날의 강점 3 핵심) ══════════ */
.checkpoints { max-width: var(--wrap); margin: 0 auto clamp(3rem,6vw,5rem); display: flex; flex-direction: column; gap: clamp(3rem,7vw,6rem); }
.checkpoint { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.checkpoint:nth-child(even) .checkpoint__media { order: 2; }
.checkpoint__media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px -45px rgba(22,53,42,.55); }
.checkpoint__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; transition: transform 1.2s var(--ease); }
.checkpoint:hover .checkpoint__media img { transform: scale(1.05); }
.checkpoint__tag { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.1rem; }
.checkpoint__tag b { font-family: var(--serif); font-size: 1.6rem; color: var(--green-lt); line-height: 1; }
.checkpoint__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem,3.4vw,2.4rem); line-height: 1.32; color: var(--forest); }
.checkpoint__title em { font-style: normal; color: var(--green); }
.checkpoint__text { color: var(--muted); margin-top: 1.2rem; font-size: 1.05rem; }
.checkpoint__text b { color: var(--ink); font-weight: 600; }
.checkpoint__list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.checkpoint__list li { display: flex; align-items: center; gap: .7rem; color: var(--ink); font-weight: 500; font-size: .98rem; }
.checkpoint__list li::before { content: ""; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%;
  background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f5e46' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; }

/* ══════════ NAVER MAP ══════════ */
.map-embed { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, var(--tint), #dbe6dc); }
.map-embed > div { width: 100%; height: 100%; }
.map-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1.5rem; color: var(--green); }
.map-fallback .location__pin { width: 44px; height: 44px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.map-fallback strong { font-family: var(--serif); font-size: 1.25rem; color: var(--forest); }
.map-fallback span { font-size: .9rem; color: var(--muted); max-width: 32ch; }
.map-fallback .btn { margin-top: .8rem; }

/* ══════════ NEWS / BLOG ══════════ */
.news__grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -45px rgba(22,53,42,.45); }
.post__thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--tint); }
.post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post:hover .post__thumb img { transform: scale(1.06); }
.post__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post__date { font-size: .78rem; letter-spacing: .1em; color: var(--gold); font-weight: 600; }
.post__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--forest); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post__excerpt { font-size: .92rem; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post__more { margin-top: auto; font-size: .85rem; font-weight: 600; color: var(--green); }
.news__more { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3.2rem; }
.btn--naver { background: #03c75a; color: #fff; box-shadow: 0 10px 30px -12px rgba(3,199,90,.7); gap: .55rem; }
.btn--naver:hover { background: #02b350; color: #fff; }
.btn--naver .nav__blog-badge { padding: .28rem .42rem .32rem; font-size: .72rem; background: #fff; color: #03c75a; }
.btn--naver .nav__blog-badge::after { border-color: #fff transparent transparent transparent; }

/* ══════════ BLOG SUBPAGE HERO ══════════ */
.bloghero { position: relative; min-height: 56vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 7rem 1.5rem 4rem; }
.bloghero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.bloghero__scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,53,42,.82), rgba(16,53,42,.72)), radial-gradient(120% 90% at 50% 50%, transparent 30%, rgba(12,34,25,.65)); }
.bloghero__inner { position: relative; z-index: 1; color: #fff; max-width: 720px; }
.bloghero__eyebrow { display: inline-flex; align-items: center; gap: .7rem; font-size: .78rem; letter-spacing: .3em; color: var(--gold-lt); font-weight: 600; margin-bottom: 1.3rem; }
.nav__blog-badge--lg { font-size: 1rem; padding: .5rem .7rem .55rem; letter-spacing: -.02em; }
.nav__blog-badge--lg::after { left: 10px; bottom: -5px; border-width: 6px 6px 0 0; }
.bloghero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -.01em; }
.bloghero__sub { margin: 1.3rem auto 2.2rem; color: rgba(255,255,255,.88); font-weight: 300; font-size: clamp(1rem,2.2vw,1.15rem); }
.nav__links a.is-current { color: var(--gold-lt); }
.nav.is-scrolled .nav__links a.is-current { color: var(--gold); }

/* ══════════ LOCATION ══════════ */
.location__grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.location__lead { color: var(--muted); margin-top: 1.2rem; }
.location__list { list-style: none; margin: 2rem 0; border-top: 1px solid var(--line); }
.location__list li { display: flex; align-items: center; gap: 1.4rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.location__key { font-size: .82rem; letter-spacing: .1em; color: var(--gold); font-weight: 700; min-width: 48px; }
.location__phone { font-family: var(--serif); font-size: 1.5rem; color: var(--forest); font-weight: 600; }
.location__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.location__map-inner {
  aspect-ratio: 4/3; border-radius: 18px; background: linear-gradient(135deg, var(--tint), #dbe6dc);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  color: var(--green); border: 1px solid var(--line); box-shadow: inset 0 0 60px -30px rgba(22,53,42,.3);
}
.location__pin { width: 46px; height: 46px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.location__map-inner p { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--forest); }
.location__map-inner span { font-size: .85rem; color: var(--muted); }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--forest); color: rgba(255,255,255,.78); padding: 4.5rem 1.5rem 0; }
.footer__wrap { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brandrow { display: flex; align-items: center; gap: .55rem; }
.footer__logo { width: 42px; height: 42px; display: block; }
.footer__brand .nav__name { color: #fff; }
.footer__tag { margin-top: 1.2rem; font-size: .95rem; color: rgba(255,255,255,.6); font-family: var(--serif); }
.footer__links { display: flex; flex-direction: column; gap: .8rem; }
.footer__links a { color: rgba(255,255,255,.72); font-size: .95rem; transition: color .3s; }
.footer__links a:hover { color: var(--gold-lt); }
.footer__contact { display: flex; flex-direction: column; gap: .7rem; font-size: .95rem; }
.footer__contact a { color: var(--gold-lt); font-size: 1.15rem; font-weight: 600; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 1.6rem 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ══════════ FAB ══════════ */
.fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: #fff;
  display: none; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: 0 14px 30px -10px rgba(183,147,91,.8); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{ box-shadow: 0 14px 30px -10px rgba(183,147,91,.8);} 50%{ box-shadow: 0 14px 40px -6px rgba(183,147,91,1);} }

/* ══════════ SCROLL REVEAL ══════════ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 460px; }
  .cards, .news__grid { grid-template-columns: repeat(2, 1fr); }
  .checkpoint { grid-template-columns: 1fr; gap: 1.6rem; }
  .checkpoint__media, .checkpoint:nth-child(even) .checkpoint__media { order: -1; }
  .checkpoint__media img { max-height: 320px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .footer__wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); height: 100vh;
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: var(--forest); padding: 2rem; transform: translateX(100%);
    transition: transform .5s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: #fff !important; font-size: 1.15rem; }
  .nav.is-scrolled .nav__links a { color: #fff !important; }
  .nav__toggle { display: flex; z-index: 1001; }
  .nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-scrolled .nav__toggle.is-active span { background: #fff; }
  .cards, .news__grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 260px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item p { opacity: 1; transform: none; }
  .footer__wrap { grid-template-columns: 1fr; }
  .fab { display: flex; }
  .about__badge { left: 0; }
}

/* ══════════ MOTION PREFERENCE ══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
