/* ==========================================================================
   Koh Samui Padel - Shared Stylesheet
   Modern · clean · whitewashed with tropical-green accents
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  /* Brand secondary scale - deep plum / purple, anchored on the logo #410144.
     (Variable names kept as --green-* so every existing reference keeps working;
      the VALUES are now purple.) */
  --green-900: #1f0120;   /* deepest plum - hero base */
  --green-800: #2c0130;
  --green-700: #390140;    /* deep accent / hover-dark */
  --green-600: #410144;    /* PRIMARY - the brand secondary colour (matches logo) */
  --green-500: #7a2080;    /* mid */
  --green-400: #b646c0;    /* bright accent */
  --green-300: #dd8ae8;    /* light highlight (on dark) */
  --green-200: #eec2f4;
  --green-100: #f7e7fb;    /* pale tint background */
  --mint:      #faf0fc;

  /* Warm + cool accents (used sparingly for variety; pair well with plum) */
  --sun:       #f4b740;
  --coral:     #ff7a59;

  /* Neutrals - whitewashed */
  --white:     #ffffff;
  --paper:     #fbfdfc;   /* page background */
  --cloud:     #f4f8f6;
  --line:      #e4ece8;
  --ink-900:   #11231d;   /* headings */
  --ink-700:   #2f4a40;
  --ink-500:   #5a6e66;   /* body */
  --ink-300:   #8a9a93;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(45, 1, 48, 0.07);
  --shadow:    0 14px 40px rgba(45, 1, 48, 0.12);
  --shadow-lg: 0 30px 70px rgba(45, 1, 48, 0.18);

  --maxw: 1180px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
:target, [id] { scroll-margin-top: 88px; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-700); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
ul { padding-left: 1.1rem; }

/* ----- Layout helpers ----- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-500); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-600);
  background: var(--green-100); padding: 7px 15px; border-radius: 100px;
}
.eyebrow svg { width: 15px; height: 15px; flex: none; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 18px 0 14px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: 0 10px 24px rgba(65,1,68,.34); }
.btn--primary:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(65,1,68,.42); }
.btn--ghost { background: rgba(255,255,255,.85); color: var(--green-700); border-color: var(--green-200); }
.btn--ghost:hover { background: #fff; border-color: var(--green-400); color: var(--green-700); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--green-700); }
.btn--light:hover { background: var(--green-100); color: var(--green-700); transform: translateY(-2px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 253, 252, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 50px; width: auto; display: block; }
@media (max-width: 980px) { .brand-logo { height: 44px; } }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
/* :not(.btn) so the CTA button keeps its own (white) text + pill shape */
.nav-links a:not(.btn) {
  font-family: var(--font-head); font-weight: 600; font-size: .94rem; color: var(--ink-700);
  padding: 9px 12px; border-radius: 10px; transition: background .18s, color .18s;
}
.nav-links a:not(.btn):hover { background: var(--green-100); color: var(--green-700); }
.nav-links a.active { color: var(--green-700); background: var(--green-100); }
.nav-cta { margin-left: 6px; }
/* Make sure the CTA text is always readable regardless of nav-link rules */
.nav-links .nav-cta a.btn,
.nav-links .nav-cta a.btn:hover { color: #fff; }

/* ----- Dropdown menus ----- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-sub-toggle {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: .94rem; color: var(--ink-700);
  padding: 9px 12px; border-radius: 10px; transition: background .18s, color .18s;
}
.nav-sub-toggle:hover, .nav-sub-toggle.active { background: var(--green-100); color: var(--green-700); }
.nav-sub-toggle .chev { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-item.open .nav-sub-toggle .chev { transform: rotate(180deg); }

.nav-sub {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 214px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 60;
}
.nav-sub a { display: block; white-space: nowrap; }
.nav-item.open > .nav-sub { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) and (min-width: 981px) {
  .nav-item.has-sub:hover > .nav-sub { opacity: 1; visibility: visible; transform: none; }
}

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--ink-900); border-radius: 2px; position: relative; transition: .25s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav-toggle span::after  { transform: rotate(-45deg); top: 0; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); padding: 16px 20px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; max-height: calc(100vh - 72px); overflow-y: auto;
  }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-links a:not(.btn) { padding: 13px 14px; font-size: 1.05rem; }

  /* Dropdowns become inline accordions on mobile */
  .nav-item { display: block; width: 100%; position: static; }
  .nav-sub-toggle { width: 100%; justify-content: space-between; font-size: 1.05rem; padding: 13px 14px; }
  .nav-sub-toggle .chev { width: 16px; height: 16px; }
  .nav-sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--cloud);
    border-radius: 10px; margin: 0 0 4px; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .nav-item.open > .nav-sub { max-height: 340px; padding: 4px; }
  .nav-links .nav-sub a { padding: 12px 16px; font-size: 1rem; }

  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--green-900); color: #fff; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 85% 0%, rgba(182,70,192,.5), transparent 55%),
    radial-gradient(90% 90% at 0% 100%, rgba(65,1,68,.92), transparent 60%),
    linear-gradient(160deg, #3a0140 0%, #1f0120 60%, #160116 100%);
}
.hero::after { /* subtle palm-leaf texture */
  content: ''; position: absolute; inset: 0; opacity: .12; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='M50 380 C 80 250 120 150 220 60'/%3E%3Cpath d='M70 360 C 130 320 180 260 215 75'/%3E%3Cpath d='M75 350 C 30 300 30 230 120 150'/%3E%3Cpath d='M330 20 C 300 150 260 250 160 340'/%3E%3Cpath d='M350 40 C 290 80 240 140 185 320'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 460px;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { padding: 96px 0 130px; max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.1rem); line-height: 1.05; margin-bottom: 22px; }
.hero h1 .hl { color: var(--green-300); }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,.86); max-width: 56ch; margin-bottom: 34px; }
.hero .eyebrow { background: rgba(255,255,255,.14); color: var(--green-200); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 54px; }
.hero-stats .stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: #fff; line-height: 1; }
.hero-stats .stat span { font-size: .9rem; color: rgba(255,255,255,.72); }

/* Page hero (interior pages) - shorter */
.page-hero { position: relative; overflow: hidden; background: var(--green-800); color: #fff; }
.page-hero::before { content:''; position:absolute; inset:0;
  background: radial-gradient(110% 130% at 90% -10%, rgba(182,70,192,.5), transparent 55%), linear-gradient(150deg, #3a0140, #1f0120); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-inner { padding: 64px 0 76px; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 60ch; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; font-family: var(--font-head); font-weight: 600; }
.crumbs a { color: var(--green-200); }
.crumbs a:hover { color: #fff; }

/* Wave divider */
.wave { display: block; width: 100%; height: 60px; margin-bottom: -7px; color: var(--paper); }
.wave svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-200); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--green-100); color: var(--green-600);
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.card p { color: var(--ink-500); font-size: .98rem; }
.card .more { display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-family:var(--font-head); font-weight:700; font-size:.92rem; }
.card .more svg { width:16px; height:16px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(4px); }

/* Portal hub cards (home) with number badge */
.hub-card { display: flex; flex-direction: column; }
.hub-card .num { position: absolute; top: 18px; right: 22px; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--green-100); line-height: 1; }
.hub-card:hover .num { color: var(--green-200); }

/* Feature / listing card with colored top accent */
.listing {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .25s, border-color .2s; display: flex; flex-direction: column;
}
.listing:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-200); }
.listing .banner { height: 120px; position: relative; display: grid; place-items: center; color: #fff; overflow: hidden; }
.listing .banner svg.deco { position: absolute; right: -10px; bottom: -16px; width: 130px; height: 130px; opacity: .22; }
.listing .banner .tag { position: absolute; top: 14px; left: 16px; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing:.08em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--green-700); padding: 5px 11px; border-radius: 100px; }
.listing .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.listing h3 { font-size: 1.3rem; margin-bottom: 4px; }
.listing .area { font-family: var(--font-head); font-weight:600; font-size:.85rem; color: var(--green-600); display:flex; align-items:center; gap:6px; margin-bottom: 13px; }
.listing .area svg { width: 15px; height: 15px; }
.listing p { font-size: .97rem; color: var(--ink-500); }
.listing .meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.chip { font-family: var(--font-head); font-weight: 600; font-size: .8rem; background: var(--mint); color: var(--green-700); padding: 5px 12px; border-radius: 100px; border: 1px solid var(--green-100); }
.chip.price { background: #fff7e6; color: #a9760a; border-color: #fbe8bf; }
.chip.done { background: var(--cloud); color: var(--ink-500); border-color: var(--line); }
.chip.done::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ink-300); display: inline-block; margin-right: 6px; vertical-align: middle; }
.chip.live { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.chip.live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #fff; display: inline-block; margin-right: 6px; vertical-align: middle; }
.listing .foot { margin-top: auto; padding-top: 18px; display:flex; align-items:center; justify-content: space-between; gap: 12px; }
.listing .foot a.link { font-family: var(--font-head); font-weight: 700; font-size: .9rem; display:inline-flex; align-items:center; gap:6px; }
.listing .foot a.link svg { width: 15px; height: 15px; }

/* banner color variants - plum-family, with gold + ocean kept for variety */
.bg-emerald { background: linear-gradient(135deg, #7a2080, #410144); }
.bg-teal    { background: linear-gradient(135deg, #5e1a63, #2c0130); }
.bg-lime    { background: linear-gradient(135deg, #b646c0, #5e1a63); }
.bg-deep    { background: linear-gradient(135deg, #410144, #1f0120); }
.bg-sun     { background: linear-gradient(135deg, #f4b740, #e0892a); }
.bg-ocean   { background: linear-gradient(135deg, #8a4fd0, #3a0a66); }

/* ==========================================================================
   Split / feature blocks
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse .split-media { order: 0; } }
.split h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 16px; }
.split-media {
  border-radius: var(--radius-lg); min-height: 340px; position: relative; overflow: hidden;
  box-shadow: var(--shadow); display: grid; place-items: center; color: #fff;
}
.split-media .glyph { width: 96px; height: 96px; opacity: .9; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list b { color: var(--ink-900); font-family: var(--font-head); }

/* ==========================================================================
   Info table / steps / callout
   ========================================================================== */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background:#fff; }
table.tidy { width: 100%; border-collapse: collapse; min-width: 560px; }
table.tidy th, table.tidy td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); font-size: .96rem; }
table.tidy th { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); background: var(--cloud); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
table.tidy tr:last-child td { border-bottom: none; }
table.tidy td b { color: var(--ink-900); }

.steps { display: grid; gap: 20px; counter-reset: step; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.step .n { counter-increment: step; width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color:#fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display:grid; place-items:center; }
.step h3 { font-size: 1.18rem; margin-bottom: 5px; }
.step p { color: var(--ink-500); font-size: .97rem; }

.callout { background: var(--green-100); border: 1px solid var(--green-200); border-radius: var(--radius); padding: 26px 30px; display: flex; gap: 16px; align-items: flex-start; }
.callout .ico { flex:none; width: 42px; height:42px; border-radius: 12px; background:#fff; color: var(--green-600); display:grid; place-items:center; }
.callout .ico svg { width: 22px; height:22px; }
.callout h4 { font-size: 1.1rem; margin-bottom: 4px; }
.callout p { color: var(--ink-700); font-size: .96rem; }
.callout.warn { background: #fff7e6; border-color: #fbe8bf; }
.callout.warn .ico { color: #c98a12; }

/* Anchor nav (sticky chips on long pages) */
.jump { display:flex; flex-wrap:wrap; gap:10px; }
.jump a { font-family: var(--font-head); font-weight: 600; font-size: .9rem; background:#fff; border:1px solid var(--line); padding: 9px 16px; border-radius:100px; color: var(--ink-700); }
.jump a:hover { border-color: var(--green-400); color: var(--green-700); background: var(--green-100); }

.prose p { margin-bottom: 16px; color: var(--ink-500); }
.prose h3 { margin: 30px 0 12px; font-size: 1.4rem; }
.prose ul { margin: 0 0 16px; color: var(--ink-500); }
.prose li { margin-bottom: 7px; }

.bg-soft { background: var(--cloud); }
.bg-mint { background: var(--mint); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--green-700); color: #fff; border-radius: var(--radius-lg); padding: 60px 50px; text-align: center; box-shadow: var(--shadow); }
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(80% 120% at 100% 0%, rgba(182,70,192,.5), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color:#fff; font-size: clamp(1.7rem,4vw,2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .hero-cta { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.72); margin-top: 0; }
.site-footer .wrap { padding-top: 64px; padding-bottom: 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 16px; }
.site-footer .brand-logo { height: 58px; filter: brightness(0) invert(1); }
.site-footer p { font-size: .94rem; max-width: 34ch; }
.foot-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { color: rgba(255,255,255,.72); font-size: .95rem; }
.foot-col a:hover { color: var(--green-300); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; display:flex; flex-wrap:wrap; gap:12px; justify-content: space-between; font-size: .86rem; color: rgba(255,255,255,.55); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
