/* ========================================
   PLUNSANA DESIGN SYSTEM
   Navy #2C264D | Coral #E28969 | Teal #82B6C8
   Gradient: 57deg #2C264D → #89343C
   Font: Rubik
   ======================================== */

/* --- RUBIK FONT (subset, inline) --- */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Rubik'), local('Rubik-Regular');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Rubik Medium'), local('Rubik-Medium');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Rubik SemiBold'), local('Rubik-SemiBold');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Rubik Bold'), local('Rubik-Bold');
}

/* --- TOKENS --- */
:root {
  --navy: #2C264D;
  --deep: #1A1635;
  --abyss: #090C10;
  --coral: #E28969;
  --coral-h: #D07A5A;
  --teal: #82B6C8;
  --ice: #F3FAFE;
  --cranberry: #89343C;
  --grad: linear-gradient(57deg, #2C264D 0%, #89343C 99%);
  --grad-r: linear-gradient(135deg, #2C264D 0%, #89343C 100%);
  --bg: #fff;
  --bg-alt: #F8F7FC;
  --tx: #1C1C1E;
  --tx-m: #5A5A6E;
  --tx-l: #8E8E9F;
  --bd: rgba(0,0,0,.07);
  --r: 16px;
  --br: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --font: 'Rubik', -apple-system, 'Segoe UI', Roboto, system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F0C24;
    --bg-alt: #161230;
    --ice: #161230;
    --tx: #E8E2DA;
    --tx-m: #9B94AE;
    --tx-l: #6B6580;
    --bd: rgba(255,255,255,.07);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,.25);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.3);
  }
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--tx);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; text-wrap: balance; }

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(26px, 5vw, 42px); text-transform: uppercase; letter-spacing: 1.6px; line-height: 1.12; }
h2 { font-size: clamp(22px, 3.5vw, 32px); line-height: 1.3; }
h3 { font-size: clamp(17px, 2vw, 20px); line-height: 1.4; }
h4 { font-size: 14px; line-height: 1.4; }
p { max-width: 680px; }

/* --- LAYOUT --- */
.ctn { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 64px 0; }
.sec-dk { background: var(--navy); color: rgba(255,255,255,.75); }
.sec-dk h1, .sec-dk h2, .sec-dk h3, .sec-dk h4 { color: #fff; }
.sec-dk p { color: rgba(255,255,255,.6); }
.sec-ice { background: var(--ice); }
.sec-alt { background: var(--bg-alt); }
.sec-grad { background: var(--grad); color: rgba(255,255,255,.75); }
.sec-grad h1, .sec-grad h2, .sec-grad h3 { color: #fff; }
@media (min-width: 768px) { .sec { padding: 80px 0; } }
@media (min-width: 1024px) { .sec { padding: 96px 0; } }

/* --- COMPONENTS --- */
.ey {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.ey-c { color: var(--coral); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--br);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  gap: 8px;
}
.btn:hover { transform: translateY(-1px); }
.btn-c { background: var(--coral); color: #fff; }
.btn-c:hover { background: var(--coral-h); box-shadow: var(--shadow-md); }
.btn-n { background: var(--navy); color: #fff; }
.btn-n:hover { background: var(--deep); box-shadow: var(--shadow-md); }
.btn-g { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.btn-g:hover { background: rgba(255,255,255,.14); }
.btn-o { background: transparent; color: var(--coral); border: 1.5px solid var(--coral); }
.btn-o:hover { background: var(--coral); color: #fff; }
.btn-grad { background: var(--grad); color: #fff; }
.btn-grad:hover { box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 44px; font-size: 14px; }
.btn-sm { padding: 10px 24px; font-size: 12px; }
.btn-full { width: 100%; }

/* Stars rating */
.stars { display: flex; align-items: center; gap: 8px; }
.stars-s { color: #F5B731; font-size: 18px; letter-spacing: 2px; }
.stars-d { width: 1px; height: 16px; background: var(--bd); }
.stars-t { font-size: 11px; font-weight: 600; letter-spacing: .3px; color: var(--tx-m); }
.sec-dk .stars-d { background: rgba(255,255,255,.15); }
.sec-dk .stars-t, .sec-grad .stars-t { color: rgba(255,255,255,.5); }

/* Card */
.card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-ice { background: var(--ice); border: none; }
.card-pad { padding: 28px 24px; }
.card-dk {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.card-dk:hover { background: rgba(255,255,255,.07); }

/* In-page anchor targets sit below the fixed header rather than under it */
section[id] { scroll-margin-top: 90px; }

/* --- HEADER --- */
.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .35s, padding .3s, box-shadow .3s;
}
.hd.sc {
  background: var(--grad);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hd-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.logo img { height: 42px; width: auto; }
.logo-c { display: none; }
.logo span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
}

/* Nav */
.nav {
  display: none;
  align-items: center;
  gap: 24px;
}
.nav > a, .nav-drop-btn {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  white-space: nowrap;
}
.nav > a:hover, .nav-drop-btn:hover { color: #fff; }
.nav-cta { padding: 10px 24px; font-size: 12px; }
.nav-drop { position: relative; }
.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.nav-drop-btn svg { transition: transform .2s; }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop-menu:hover {
  opacity: 1;
  pointer-events: auto;
}
.nav-drop:hover .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  background: #fff;
  border-radius: var(--br);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px 0;
}
/* The menu ground is always white, so the text colour is pinned to navy
   rather than var(--tx), which flips to near-white in dark mode. */
.nav-drop-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: background .15s, color .15s;
}
.nav-drop-menu a:hover {
  /* literal, not var(--ice), which flips to near-black in dark mode */
  background: #F3FAFE;
  color: var(--navy);
}
@media (min-width: 1024px) { .nav { display: flex; } }

/* Hamburger */
.ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
@media (min-width: 1024px) { .ham { display: none; } }

/* Mobile menu */
.mn {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mn.open { opacity: 1; pointer-events: auto; }
.mn a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.mn a:hover { color: #fff; }
.mn .btn { margin-top: 8px; }
.mn-x {
  position: absolute;
  top: 18px; right: 20px;
  color: #fff;
  font-size: 30px;
  padding: 8px;
  line-height: 1;
}

/* --- HERO --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 520px;
  padding: 140px 20px 80px;
  overflow: hidden;
}
.hero-grad { background: var(--grad); }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,38,77,.55) 0%, rgba(26,22,53,.82) 100%);
}
.hero-c {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero .ey { color: rgba(255,255,255,.45); }
.hero-d {
  color: rgba(255,255,255,.55);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 520px;
}
.hero .stars { justify-content: center; margin-bottom: 20px; }
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-sub {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .3px;
}
@media (min-width: 768px) { .hero { min-height: 580px; padding: 160px 20px 100px; } }

/* --- PAGE HERO (shorter, for inner pages) --- */
.pg-hero {
  padding: 130px 20px 50px;
  text-align: center;
  background: var(--grad);
  min-height: auto;
}
.pg-hero h1 { color: #fff; margin-bottom: 12px; }
.pg-hero .hero-d { margin-bottom: 0; }
@media (min-width: 768px) { .pg-hero { padding: 150px 20px 60px; } }

/* --- GRID LAYOUTS --- */
.g2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.g3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.g4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .g2 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .g3 { grid-template-columns: repeat(3, 1fr); }
  .g4 { grid-template-columns: repeat(4, 1fr); }
}
.g-center { align-items: center; }
@media (min-width: 768px) {
  .g2 { gap: 40px; }
  .g3 { gap: 24px; }
}

/* --- PRICING CARDS --- */
.price-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border: 2px solid var(--coral);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tx-m);
  margin-bottom: 12px;
}
.price-amt {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
@media (prefers-color-scheme: dark) { .price-amt { color: #fff; } }
.price-per {
  font-size: 14px;
  font-weight: 400;
  color: var(--tx-m);
}
.price-sub {
  font-size: 12px;
  color: var(--tx-l);
  margin-top: 4px;
  margin-bottom: 20px;
}
.price-features {
  text-align: left;
  margin-bottom: 24px;
}
.price-features li {
  font-size: 13px;
  color: var(--tx-m);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --- BOOKING WIDGET --- */
.widget-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 4px;
  border: 1px solid rgba(255,255,255,.06);
}
.widget-wrap iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 12px;
  background: #fff;
}

/* --- FAQ --- */
.fq-l { max-width: 720px; margin: 0 auto; }
.fq-i { border-bottom: 1px solid var(--bd); }
.fq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--tx);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.fq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--tx-l);
  transition: transform .2s;
}
.fq-q.op::after { transform: rotate(45deg); }
.fq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--tx-m);
  line-height: 1.7;
  max-width: 600px;
}
.fq-a.op { display: block; }

/* --- MODALITY ICON CARDS --- */
.mod-card {
  background: var(--ice);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.mod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mod-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mod-icon svg { width: 22px; height: 22px; color: #fff; }
.mod-card h3 { margin-bottom: 8px; }
.mod-card p { font-size: 13px; color: var(--tx-m); line-height: 1.6; }
.mod-card .temp {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--teal);
}

/* --- IMAGE + TEXT SPLIT --- */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.split-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split-rev .split-img { order: -1; }
}

/* --- STEPS --- */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 700px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-n {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
@media (prefers-color-scheme: dark) {
  .step-n { background: rgba(255,255,255,.06); color: var(--teal); }
}
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--tx-m); line-height: 1.6; }

/* --- BLOG --- */
.blog-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ice);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--tx-l);
  letter-spacing: .3px;
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--tx-m); line-height: 1.6; }

/* --- EVENT CARDS --- */
.event-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-card-body { padding: 24px; }
.event-card-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Blog post content */
.post-content {
  max-width: 720px;
  margin: 0 auto;
}
.post-content h2 {
  font-size: 22px;
  margin: 40px 0 16px;
}
.post-content h3 {
  font-size: 18px;
  margin: 32px 0 12px;
}
.post-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: none;
}
.post-content ul, .post-content ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.post-content li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.post-content img {
  border-radius: var(--r);
  margin: 24px 0;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--tx-m);
  margin-bottom: 32px;
}
.post-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--tx-l); }

/* --- LINKS PAGE --- */
.links-page {
  min-height: 100vh;
  background: var(--ice);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* matches the .pg-hero rhythm so the header clearance is consistent sitewide */
  padding: 130px 20px 60px;
}
@media (min-width: 768px) { .links-page { padding: 150px 20px 80px; } }
.links-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.links-sub {
  font-size: 13px;
  color: var(--tx-m);
  margin-bottom: 28px;
}
.links-list {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--br);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  transition: transform .15s, box-shadow .2s;
}
.link-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.link-btn-1 { background: linear-gradient(135deg, var(--teal), #5A9BAD); }
.link-btn-2 { background: linear-gradient(135deg, var(--coral), #C47255); }
.link-btn-3 { background: linear-gradient(135deg, #6B7B8D, #4A5568); }
.link-btn-4 { background: linear-gradient(135deg, var(--cranberry), #6B2D35); }
.link-btn-5 { background: linear-gradient(135deg, #5A6B7D, #3D4F61); }
.link-btn-6 { background: linear-gradient(135deg, #A0522D, #8B4513); }
.link-btn-7 { background: linear-gradient(135deg, #6A5ACD, #4B0082); }
.links-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.links-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .15s;
}
.links-social a:hover { transform: scale(1.1); }
.links-social svg { width: 18px; height: 18px; }

/* --- CONTACT FORM --- */
.contact-form {
  max-width: 560px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--tx);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bd);
  border-radius: var(--br);
  font: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--tx);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* --- TESTIMONIALS --- */
.testi-card {
  background: var(--ice);
  border-radius: var(--r);
  padding: 28px 24px;
}
.testi-stars { color: #F5B731; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--tx); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.testi-name { font-size: 12px; font-weight: 600; color: var(--tx-m); }

/* --- SPACE RENTAL / EVENTS --- */
.event-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
}
.event-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--ice); }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 24px; }
.event-card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

/* --- FOOTER --- */
.ft {
  background: var(--abyss);
  color: rgba(255,255,255,.5);
  padding: 56px 0 24px;
}
.ft-g {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ft-logo img { width: 36px; height: 36px; }
.ft-logo span { font-size: 16px; font-weight: 600; color: #fff; }
.ft-c p { font-size: 13px; line-height: 1.7; max-width: none; }
.ft-addr { margin-top: 12px; }
.ft-c h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
}
.ft-c a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  padding: 3px 0;
  transition: color .15s;
}
.ft-c a:hover { color: rgba(255,255,255,.85); }
.ft-hrs { font-size: 13px; line-height: 1.9; }
.ft-note { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 8px; }
.ft-soc {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.ft-soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  transition: background .15s, color .15s;
  padding: 0;
}
.ft-soc a:hover { background: rgba(255,255,255,.12); color: #fff; }
.ft-b {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-b p { font-size: 11px; max-width: none; }
.ft-b-links { display: flex; gap: 20px; }
.ft-b-links a { font-size: 11px; padding: 0; }
@media (min-width: 640px) {
  .ft-g { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* --- UTILITIES --- */
.txt-c { text-align: center; }
.txt-c p { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-600 { max-width: 600px; }
.max-720 { max-width: 720px; }
.gap-12 { gap: 12px; }
.d-flex { display: flex; }
.fw-wrap { flex-wrap: wrap; }
.jc-center { justify-content: center; }
.ai-center { align-items: center; }
.round-img { border-radius: 50%; overflow: hidden; }
.img-cover { object-fit: cover; width: 100%; height: 100%; }

/* Focus */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

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