@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800&family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

:root{
  --navy-deep: #05080c;
  --navy: #0a1119;
  --ice: #9bd4ee;
  --ice-dim: #5f7d8f;
  --white: #f5f8fa;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-bg-strong: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ background:var(--navy-deep); }

body{
  background:var(--navy-deep);
  color:var(--white);
  font-family:'Inter','Noto Sans TC',sans-serif;
  overflow-x:hidden;
  position:relative;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* ---------- Glass utility ---------- */
.glass{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
}

/* ---------- Ambient glow ---------- */
.glow{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  pointer-events:none;
  z-index:0;
  opacity:.55;
  will-change:transform;
}
.glow--a{
  width:52vw; height:52vw;
  top:-14vw; left:-10vw;
  background:radial-gradient(circle, rgba(155,212,238,.35) 0%, rgba(155,212,238,0) 70%);
}
.glow--b{
  width:44vw; height:44vw;
  bottom:-10vw; right:-8vw;
  background:radial-gradient(circle, rgba(120,90,200,.28) 0%, rgba(120,90,200,0) 70%);
}
.grain{
  position:fixed; inset:0; z-index:1; pointer-events:none;
  opacity:.03; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Nav ---------- */
.nav{
  position:fixed;
  top:18px; left:50%;
  transform:translateX(-50%);
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
  padding:14px 26px;
  width:min(920px, 90vw);
  border-radius:999px;
  transition:background .3s ease, padding .3s ease;
}
.nav__logo{
  font-weight:800;
  letter-spacing:0.06em;
  font-size:14px;
}
.nav__links{ display:flex; gap:28px; }
.nav__links a{
  font-size:13px;
  letter-spacing:0.1em;
  font-weight:700;
  color:#d7e6ee;
  text-shadow:0 1px 12px rgba(0,0,0,.45);
  transition:color .25s ease, text-shadow .25s ease;
}
.nav__links a:hover{ color:var(--ice); text-shadow:0 0 16px rgba(155,212,238,.45); }
.nav--scrolled{
  background:var(--glass-bg-strong);
  box-shadow:0 8px 30px rgba(0,0,0,.3);
}

/* ---------- Side card ---------- */
.side-card{
  position:fixed;
  right:26px; top:50%;
  transform:translateY(-50%);
  z-index:200;
  border-radius:var(--radius-md);
  padding:18px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.side-card__dots{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.side-card__dots span{
  width:6px; height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
  transition:background .3s ease, transform .3s ease;
}
.side-card__dots span.is-active{
  background:var(--ice);
  transform:scale(1.4);
}
.side-card__label{
  writing-mode:vertical-rl;
  font-size:10px;
  letter-spacing:0.18em;
  color:var(--ice-dim);
  font-weight:600;
}

/* ---------- Chapters (scroll-driven) ---------- */
.chapter{
  position:relative;
  height:var(--h, 100vh);
  z-index:2;
}
.chapter:nth-of-type(1){ z-index:1; }
.chapter:nth-of-type(2){ z-index:2; }
.chapter:nth-of-type(3){ z-index:3; }

.chapter__pin{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  background:var(--navy);
  border-radius:0 0 40px 40px;
}
.chapter__media{
  position:absolute;
  inset:0;
  will-change:transform;
}
.chapter__media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 12%;
  position:absolute; inset:0;
}
.chapter__media--top img{
  object-position:50% 0%;
}

.chapter__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(5,8,12,.55) 0%, rgba(5,8,12,.05) 30%, rgba(5,8,12,.75) 100%);
}
.chapter__scrim--hero{
  background:
    linear-gradient(180deg, rgba(5,8,12,.4) 0%, rgba(5,8,12,.1) 35%, rgba(5,8,12,.9) 100%),
    linear-gradient(90deg, rgba(5,8,12,.5) 0%, rgba(5,8,12,0) 45%);
}

.chapter__content{
  position:absolute;
  left:6vw; bottom:14vh;
  max-width:560px;
  z-index:3;
  opacity:0;
  transform:translateY(28px);
  will-change:transform, opacity;
}
.chapter__content--hero{
  bottom:auto; top:50%;
  transform:translateY(-40%);
  opacity:1;
}
.chapter__content--right{
  left:auto; right:6vw;
  text-align:right;
}
.glass-card{
  padding:30px 32px;
  border-radius:var(--radius-lg);
}

.eyebrow{
  font-size:12px;
  letter-spacing:0.24em;
  color:var(--ice);
  font-weight:600;
  margin-bottom:16px;
}
.chapter__content--hero h1{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(42px, 9vw, 110px);
  line-height:0.95;
  color:var(--white);
  text-shadow:0 4px 40px rgba(0,0,0,.4);
}
.chapter__sub{
  margin-top:18px;
  font-size:13px;
  letter-spacing:0.08em;
  color:var(--ice-dim);
}
.chapter__tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.18em;
  color:var(--ice);
  font-weight:700;
  margin-bottom:10px;
}
.chapter__content h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(28px, 4vw, 44px);
  margin-bottom:12px;
}
.chapter__content p{
  font-size:14px;
  line-height:1.7;
  color:#d7e6ee;
  max-width:420px;
}
.chapter__content--right p{ margin-left:auto; }

.scroll-cue{
  position:absolute;
  right:5vw; bottom:32px;
  z-index:3;
  font-size:11px;
  letter-spacing:0.25em;
  color:var(--ice-dim);
  writing-mode:vertical-rl;
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:.4; transform:translateY(0); }
  50%{ opacity:1; transform:translateY(-6px); }
}

/* ---------- Gallery grid ---------- */
.gallery-section{
  position:relative;
  z-index:10;
  background:var(--navy-deep);
  padding-bottom:40px;
}
.section-head{
  padding:110px 5vw 36px;
  display:flex;
  align-items:baseline;
  gap:16px;
}
.section-head h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(26px, 3.6vw, 40px);
}
.section-head p{
  font-size:12px;
  letter-spacing:0.18em;
  color:var(--ice-dim);
  text-transform:uppercase;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  padding:0 5vw;
}
.gallery-grid--portrait{
  margin-top:16px;
}
.gcard{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  cursor:pointer;
  border-radius:var(--radius-md);
}
.gcard--portrait{
  aspect-ratio:3/4;
}
.gcard img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 25%;
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.gcard::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(5,8,12,0) 55%, rgba(5,8,12,.85) 100%);
  opacity:0;
  transition:opacity .4s ease;
}
.gcard figcaption{
  position:absolute; left:18px; bottom:16px;
  z-index:2;
  font-size:13px;
  font-weight:500;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .4s ease, transform .4s ease;
}
.gcard:hover img{ transform:scale(1.06); }
.gcard:hover::after{ opacity:1; }
.gcard:hover figcaption{ opacity:1; transform:translateY(0); }

/* ---------- About ---------- */
.about{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
  padding:44px;
  border-radius:var(--radius-lg);
}
.about .section-head{ padding:0 0 20px; justify-content:center; }
.about__inner{ text-align:center; }
.about__brand{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(22px, 2.6vw, 30px);
  color:var(--ice);
  margin-bottom:18px;
}
.about__inner > p{
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:14px;
}
.about__block{
  margin-top:46px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.1);
}
.about__block h4{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(18px, 2vw, 22px);
  color:var(--white);
  margin-bottom:16px;
  letter-spacing:0.02em;
}
.about__block p{
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:10px;
}
.about__list{
  list-style:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin:14px 0;
}
.about__list li{
  font-size:15px;
  line-height:1.7;
  color:#e4eff4;
}
.about__list--plain li{
  color:#cfe3ec;
}
.about__list--plain li::before{
  content:'— ';
  color:var(--ice-dim);
}

.about__row{
  display:flex;
  gap:40px;
}
.about__col{ flex:1; min-width:0; text-align:center; }
.about__col h4{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(16px, 1.6vw, 19px);
  color:var(--white);
  margin-bottom:14px;
  letter-spacing:0.02em;
}
.about__col p{
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  margin-bottom:8px;
}
.about__col .about__list{ margin:10px 0; }
.about__col .about__list li{ font-size:15px; }
.about__col .about__list--plain li{ font-size:15px; }

.partners{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.partner-card{
  padding:24px;
  border-radius:var(--radius-md);
}
.partner-card h5{
  font-size:15px;
  font-weight:700;
  color:var(--ice);
  margin-bottom:10px;
  letter-spacing:0.02em;
}
.partner-card p{
  font-size:13.5px;
  line-height:1.75;
  color:#c3d6df;
}

/* ---------- Journal ---------- */
.journal{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
  padding:44px;
  border-radius:var(--radius-lg);
}
.journal .section-head{ padding:0 0 20px; }
.journal__intro{
  max-width:640px;
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  margin-bottom:28px;
}
.journal__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.journal-card{
  display:block;
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
}
.journal-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.3);
}
.journal-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  object-position:50% 30%;
}
.journal-card__body{ padding:20px; }
.journal-card__tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ice);
  border:1px solid rgba(155,212,238,.35);
  border-radius:999px;
  padding:3px 10px;
  margin-bottom:12px;
}
.journal-card__body h3{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:700;
  font-size:16px;
  line-height:1.5;
  margin-bottom:8px;
  color:var(--white);
}
.journal-card__body p{
  font-size:13.5px;
  line-height:1.7;
  color:#c3d6df;
}
.journal__more{
  display:inline-block;
  margin-top:28px;
  font-size:13px;
  letter-spacing:0.06em;
  color:var(--ice);
  border-bottom:1px solid rgba(155,212,238,.4);
  padding-bottom:2px;
}

/* ---------- Appointment ---------- */
.appointment{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
  padding:44px;
  border-radius:var(--radius-lg);
  text-align:center;
}
.appointment .section-head{
  padding:0 0 20px;
  justify-content:center;
}
.appointment__inner{
  max-width:640px;
  margin:0 auto;
}
.appointment__text{
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  margin-bottom:24px;
}
.booking-flow__title{
  font-family:'Noto Sans TC', sans-serif;
  font-size:18px;
  font-weight:800;
  color:var(--white);
  margin:0 0 14px;
}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  padding:0;
  margin:0 0 28px;
  list-style:none;
}
.booking-flow li{
  display:flex;
  align-items:center;
  min-height:54px;
  padding:12px 14px;
  border:1px solid rgba(155,212,238,.22);
  border-radius:var(--radius-sm);
  background:rgba(155,212,238,.045);
  color:#d8e9f1;
  font-size:13px;
  font-weight:600;
  line-height:1.6;
  text-align:left;
}
.month-tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}
.month-tab{
  padding:10px 20px;
  border-radius:999px;
  border:1px solid var(--glass-border);
  background:transparent;
  color:var(--ice-dim);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.04em;
  cursor:pointer;
  transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.month-tab:hover{ color:var(--white); border-color:var(--ice); }
.month-tab.is-active{
  background:var(--glass-bg-strong);
  color:var(--ice);
  border-color:var(--ice);
}
.appointment__caption{
  font-size:13px;
  letter-spacing:0.06em;
  color:var(--ice-dim);
  margin-bottom:30px;
}
.appointment__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 34px;
  min-height:54px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.04em;
  color:var(--white);
  transition:background .25s ease, transform .25s ease;
}
.appointment__btn--line{
  background:#06c755;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 10px 28px rgba(6,199,85,.18);
}
.appointment__btn--line:hover{
  background:#08b94f;
}
.appointment__btn:not(.appointment__btn--line):hover{
  background:var(--glass-bg-strong);
  transform:translateY(-2px);
}
.appointment__actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}
.appointment__note{
  margin-top:16px;
  color:var(--ice-dim);
  font-size:12px;
  line-height:1.7;
}

/* ---------- Footer ---------- */
.contact{
  position:relative;
  z-index:10;
  padding:100px 5vw 60px;
  margin-top:60px;
  text-align:center;
}
.contact h2{
  font-weight:800;
  font-size:clamp(26px,4.5vw,44px);
  margin-bottom:12px;
}
.contact__sub{
  font-size:12px;
  letter-spacing:0.12em;
  color:var(--ice-dim);
  margin-bottom:32px;
}
.contact__links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}
.contact__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:0.04em;
  font-weight:600;
  color:var(--white);
  transition:background .25s ease, transform .25s ease;
}
.contact__btn:hover{
  background:var(--glass-bg-strong);
  transform:translateY(-2px);
}

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:1000;
  background:rgba(5,8,12,.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition:opacity .35s ease;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox__img{
  max-width:88vw; max-height:82vh;
  object-fit:contain;
  border-radius:var(--radius-sm);
  box-shadow:0 20px 80px rgba(0,0,0,.6);
  opacity:0; transform:scale(.97);
  transition:opacity .3s ease, transform .3s ease;
}
.lightbox.is-open .lightbox__img{ opacity:1; transform:scale(1); }
.lightbox__close{
  position:absolute; top:24px; right:28px;
  font-size:32px; line-height:1;
  background:none; border:none; color:var(--white);
  cursor:pointer; opacity:.7; transition:opacity .2s ease;
}
.lightbox__close:hover{ opacity:1; }
.lightbox__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:none; border:none; color:var(--white);
  font-size:44px; padding:12px 18px; cursor:pointer;
  opacity:.6; transition:opacity .2s ease;
}
.lightbox__nav:hover{ opacity:1; }
.lightbox__nav--prev{ left:6px; }
.lightbox__nav--next{ right:6px; }
.lightbox__meta{
  position:absolute; left:0; right:0; bottom:24px;
  display:flex; justify-content:center; gap:12px;
  font-size:11px; letter-spacing:0.16em; color:var(--ice-dim);
}
.lightbox__meta span:first-child{ color:var(--ice); }

/* ---------- Article (blog) ---------- */
.article-hero{
  position:relative;
  z-index:10;
  max-width:820px;
  margin:130px auto 0;
  padding:0 5vw;
}
.article-breadcrumb{
  font-size:12px;
  letter-spacing:0.08em;
  color:var(--ice-dim);
  margin-bottom:20px;
  display:inline-block;
}
.article-breadcrumb:hover{ color:var(--ice); }
.article-hero__tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ice);
  border:1px solid rgba(155,212,238,.35);
  border-radius:999px;
  padding:4px 12px;
  margin-bottom:18px;
}
.article-hero h1{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.35;
  margin-bottom:18px;
}
.article-hero__meta{
  font-size:13px;
  color:var(--ice-dim);
  margin-bottom:32px;
}
.article-hero__image{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:var(--radius-lg);
  margin-bottom:8px;
}
.article-hero__image img{ width:100%; height:100%; object-fit:cover; }

.article-body{
  position:relative;
  z-index:10;
  max-width:820px;
  margin:0 auto;
  padding:20px 5vw 40px;
}
.article-body__lead{
  font-size:clamp(16px, 1.8vw, 18px);
  line-height:1.9;
  color:#e4eff4;
  margin-bottom:48px;
}
.article-block{
  display:flex;
  align-items:center;
  gap:44px;
  margin-bottom:56px;
}
.article-block--reverse{ flex-direction:row-reverse; }
.article-block__media{
  flex:0 0 42%;
  border-radius:var(--radius-md);
  overflow:hidden;
}
.article-block__media img{ width:100%; height:100%; object-fit:cover; }
.article-block__text{ flex:1; min-width:0; }
.article-block__text h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(19px, 2.2vw, 24px);
  margin-bottom:14px;
  color:var(--white);
}
.article-block__text p{
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:12px;
}
.article-block__text ul{
  margin:12px 0 12px 20px;
}
.article-block__text li{
  font-size:15px;
  line-height:1.85;
  color:#cfe3ec;
  margin-bottom:8px;
}

.article-section{ margin-bottom:56px; }
.article-section h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(19px, 2.2vw, 24px);
  margin-bottom:16px;
  color:var(--white);
}
.article-section p{
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:12px;
}
.article-section ul{ margin:12px 0 12px 20px; }
.article-section li{
  font-size:15px;
  line-height:1.85;
  color:#cfe3ec;
  margin-bottom:8px;
}
.article-table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
  font-size:14px;
}
.article-table th, .article-table td{
  border:1px solid rgba(255,255,255,.14);
  padding:12px 14px;
  text-align:left;
  line-height:1.6;
  color:#cfe3ec;
}
.article-table th{
  color:var(--ice);
  font-weight:700;
  background:var(--glass-bg);
}

.article-cta{
  padding:36px;
  border-radius:var(--radius-lg);
  text-align:center;
  margin:56px 0 40px;
}
.article-cta p{
  font-size:16px;
  line-height:1.8;
  color:#e4eff4;
  margin-bottom:22px;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}
.article-cta__btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:0.06em;
  color:var(--white);
  transition:transform .3s ease, border-color .3s ease;
}
.article-cta__btn:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.35);
}

.article-related{
  max-width:820px;
  margin:0 auto;
  padding:0 5vw 100px;
}
.article-related h3{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:18px;
  margin-bottom:20px;
}

/* ---------- Blog index ---------- */
.blog-hero{
  position:relative;
  z-index:10;
  max-width:1100px;
  margin:130px auto 0;
  padding:0 5vw 20px;
}
.blog-hero h1{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(28px, 4vw, 44px);
  margin-bottom:14px;
}
.blog-hero p{
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  max-width:600px;
}
.blog-grid-section{
  position:relative;
  z-index:10;
  max-width:1100px;
  margin:0 auto;
  padding:20px 5vw 100px;
}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .side-card{ display:none; }
  .chapter__content{ max-width:80vw; }
  .gallery-grid{ grid-template-columns:repeat(2, 1fr); }
  .gallery-grid--portrait{ grid-template-columns:repeat(3, 1fr); }
  .partners{ grid-template-columns:1fr; }
  .about__row{ flex-direction:column; gap:32px; }
  .journal__grid{ grid-template-columns:1fr; }
}

@media (max-width:720px){
  .nav{ gap:16px; padding:12px 20px; }
  .nav__links{ gap:14px; }
  .nav__links a{ font-size:11px; }
}

@media (max-width:560px){
  .nav{ width:92vw; padding:12px 18px; gap:20px; }
  .nav__links{ gap:16px; }
  .chapter[style*="180vh"]{ --h:150vh !important; }
  .glass-card{ padding:22px 22px; }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-grid--portrait{ grid-template-columns:repeat(2, 1fr); }
  .gcard figcaption{ opacity:1; transform:none; }
  .gcard::after{ opacity:1; }
  .about{ padding:30px 24px; }
  .journal{ padding:30px 24px; }
  .article-block{ flex-direction:column; gap:20px; }
  .article-block--reverse{ flex-direction:column; }
  .article-block__media{ flex:0 0 auto; width:100%; aspect-ratio:16/10; }
  .article-cta{ padding:28px 22px; }
  .booking-flow{ grid-template-columns:1fr; }
  .booking-flow li{ min-height:0; padding:12px 14px; }
  .appointment__actions{ flex-direction:column; }
  .appointment__btn{ width:100%; padding:15px 18px; }
  .contact__links{ flex-direction:column; align-items:stretch; }
}
