/* ==========================================================================
   Clothier Advisory — stylesheet
   Tropical-ocean palette · gradient depth · wave motifs · bold modern type.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --ocean:        #0E9FC0;
  --ocean-bright: #2FCADD;
  --ocean-deep:   #0B5E7A;
  --abyss:        #072E3D;
  --coral:        #FF6B53;
  --coral-dark:   #E8512F;
  --sand:         #FFC861;
  --foam:         #E9F7FA;
  --foam-edge:    #D2EEF3;
  --bg:           #FFFFFF;
  --ink:          #0C2A35;
  --ink-soft:     #4F6770;
  --line:         rgba(12, 42, 53, 0.12);
  --line-light:   rgba(255, 255, 255, 0.16);

  --grad-deep:    linear-gradient(158deg, #0E89A8 0%, #0B5E7A 52%, #072E3D 100%);
  --grad-bright:  linear-gradient(120deg, #2FCADD, #0E9FC0);

  --font:   "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw:   1160px;
  --readw:  720px;
  --shadow:      0 14px 38px -16px rgba(8, 52, 66, 0.30);
  --shadow-soft: 0 8px 24px -14px rgba(8, 52, 66, 0.26);
  --shadow-lift: 0 26px 52px -22px rgba(8, 52, 66, 0.42);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.45rem, 1.5rem + 3.9vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.3vw, 2.95rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--ocean-deep);
  text-decoration: none;
  text-underline-offset: 3px;
}
a:hover { text-decoration: underline; }

strong { font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: var(--foam);
  color: var(--ocean-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.lead {
  font-size: clamp(1.15rem, 1.04rem + 0.55vw, 1.42rem);
  line-height: 1.55;
  color: var(--ink);
}

/* --- Layout primitives --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.6rem;
}

.reading { max-width: var(--readw); }

section { padding-block: clamp(3.5rem, 2.2rem + 5.5vw, 7rem); }
.section-tight { padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem); }

/* Tinted bands (no extra markup needed). */
section:has(.features),
section:has(.faq) { background: var(--foam); }

.skip-link { position: absolute; left: -999px; }
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 200;
  background: var(--abyss); color: #fff;
  padding: 0.6rem 1rem; border-radius: 8px;
}

:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  padding: 0.92rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease,
    color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(255, 107, 83, 0.7);
}
.btn-primary:hover { background: var(--coral-dark); }

.btn-outline {
  background: transparent;
  color: var(--ocean-deep);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ocean); background: var(--foam); }

.btn-light {
  background: #fff;
  color: var(--ocean-deep);
  box-shadow: 0 12px 26px -14px rgba(0, 0, 0, 0.5);
}
.btn-light:hover { background: var(--foam); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

/* --- Site header --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px -18px rgba(8, 52, 66, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark:hover { text-decoration: none; }
.wordmark::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: none;
  background: url("/favicon.svg") center / contain no-repeat;
  box-shadow: 0 6px 14px -6px rgba(11, 94, 122, 0.6);
  border-radius: 11px;
}

.site-nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
}
.nav-menu a:hover { color: var(--ocean-deep); text-decoration: none; }
.nav-menu a[aria-current="page"] {
  color: var(--ocean-deep);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 10px 22px -12px rgba(255, 107, 83, 0.8);
}
.nav-cta:hover { background: var(--coral-dark); }
.nav-cta[aria-current="page"] { text-decoration: none; }

.nav-toggle {
  display: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ocean-deep);
  padding: 0.55rem 1rem;
  cursor: pointer;
}

/* --- Hero (dark ocean gradient) ----------------------------------------- */
.hero, .page-hero {
  position: relative;
  isolation: isolate;
  color: #EAFBFD;
  background:
    radial-gradient(46% 55% at 84% 6%, rgba(55, 212, 226, 0.42), transparent 70%),
    radial-gradient(40% 48% at 6% 96%, rgba(255, 107, 83, 0.30), transparent 70%),
    var(--grad-deep);
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(44px, 6vw, 84px);
  background: url("/wave.svg") bottom / 100% 100% no-repeat;
  z-index: 2;
}
.hero {
  padding-block: clamp(4.5rem, 3rem + 9vw, 9rem);
  padding-bottom: clamp(6.5rem, 4rem + 9vw, 11rem);
}
.page-hero {
  padding-block: clamp(3.75rem, 2.6rem + 5vw, 6.5rem);
  padding-bottom: clamp(5.75rem, 4rem + 6vw, 9rem);
}
.hero h1, .page-hero h1 { color: #fff; }
.hero h1 { max-width: 17ch; margin-bottom: 0.42em; }
.page-hero h1 { max-width: 20ch; margin-bottom: 0.35em; }
.hero .lead, .page-hero .lead { color: rgba(234, 251, 253, 0.82); }
.hero .lead { max-width: 47ch; }
.page-hero .lead { max-width: 54ch; }

.hero .eyebrow, .page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #CFF3F8;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Hero buttons on the dark gradient. */
.hero .btn-outline, .page-hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn-outline:hover, .page-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* --- Generic content blocks --------------------------------------------- */
.prose p { color: var(--ink-soft); }
.prose .lead { color: var(--ink); }
.measure { max-width: var(--readw); }

/* Section heading intro */
section > .container > h2 { max-width: 18ch; }

/* --- Service cards (home) ------------------------------------------------ */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.7rem, 1.2rem + 1.6vw, 2.6rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-bright);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.service-card h3 { margin-bottom: 0.45em; }
.service-card p { color: var(--ink-soft); }
.service-card .card-link {
  margin-top: auto;
  padding-top: 1.4rem;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--coral-dark);
}
.service-card .card-link::after {
  content: " \2192";
  display: inline-block;
  transition: transform 0.18s ease;
}
.service-card:hover .card-link::after { transform: translateX(5px); }

/* --- Feature cards ------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}
.feature .feature-no {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature h3 { margin: 0 0 0.45em; }
.feature p { color: var(--ink-soft); margin: 0; }

/* --- Facts strip (dark gradient) ---------------------------------------- */
.facts {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(50% 60% at 90% 10%, rgba(55, 212, 226, 0.34), transparent 70%),
    var(--grad-deep);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.fact {
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fact .fact-figure {
  font-size: clamp(2.2rem, 1.6rem + 1.9vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
}
.fact .fact-label {
  margin-top: 0.55rem;
  font-size: 0.93rem;
  color: rgba(234, 251, 253, 0.74);
}

/* --- Detail cards (roles / services) ------------------------------------ */
.detail-list {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}
.detail-list > li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.detail-list > li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.detail-list h3 {
  margin: 0 0 0.5rem;
  padding-left: 1rem;
  font-size: 1.16rem;
  border-left: 4px solid var(--ocean-bright);
}
.detail-list p { margin: 0; color: var(--ink-soft); }

/* --- Checklist ----------------------------------------------------------- */
.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-soft);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 6px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 64% no-repeat,
    var(--grad-bright);
}

/* --- Two-column layout (about) ------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.sidecard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem;
  box-shadow: var(--shadow-soft);
}
.sidecard h3 { font-size: 1.05rem; }
.sidecard ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.sidecard li {
  font-size: 0.96rem;
  color: var(--ink-soft);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.sidecard li:last-child { border-bottom: 0; padding-bottom: 0; }

.portrait {
  position: relative;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  color: #EAFBFD;
  background:
    radial-gradient(60% 50% at 80% 12%, rgba(55, 212, 226, 0.4), transparent 70%),
    var(--grad-deep);
}
.portrait span {
  font-size: 0.86rem;
  color: rgba(234, 251, 253, 0.8);
}

/* --- Definition rows (experience) --------------------------------------- */
.deflist { display: grid; gap: 1.3rem; }
.deflist .defrow {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.deflist .defrow:last-child { border-bottom: 0; padding-bottom: 0; }
.deflist .defrow h3 { font-size: 1.08rem; margin-bottom: 0.15em; }
.deflist .defrow p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* --- FAQ ----------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 1.6rem; height: 1.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--foam);
  color: var(--ocean-deep);
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform 0.18s ease;
}
.faq details[open] summary::after { content: "\2013"; transform: rotate(180deg); }
.faq details p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* --- CTA band (dark gradient) ------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  color: #EAFBFD;
  background:
    radial-gradient(44% 60% at 88% 12%, rgba(55, 212, 226, 0.34), transparent 70%),
    radial-gradient(38% 56% at 8% 92%, rgba(255, 107, 83, 0.26), transparent 70%),
    var(--grad-deep);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(234, 251, 253, 0.82); }

/* --- Contact ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3rem);
  align-items: start;
}
.contact-details {
  background: var(--foam);
  border: 1px solid var(--foam-edge);
  border-radius: 20px;
  padding: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem);
}
.contact-details dl { margin: 0; }
.contact-details dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.3rem;
}
.contact-details dd {
  margin: 0 0 1.6rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-details dd:last-child { margin-bottom: 0; }

/* --- Form ---------------------------------------------------------------- */
#contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.7rem, 1.3rem + 1.4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-field .req { color: var(--coral-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--foam);
  border: 1.5px solid transparent;
  border-radius: 11px;
  padding: 0.78rem 0.95rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ocean);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin: 1.1rem 0 0;
  padding: 0.9rem 1.1rem;
  border-radius: 11px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status[hidden] { display: none; }
.form-status.is-ok { background: #E2F3E6; color: #245B30; }
.form-status.is-error { background: #FCE6DF; color: var(--coral-dark); }

/* --- Legal / privacy ----------------------------------------------------- */
.legal h2 { margin-top: 2.5rem; font-size: 1.5rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
.legal .meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--foam);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--abyss);
  color: rgba(234, 251, 253, 0.72);
  padding-block: clamp(2.9rem, 2rem + 3vw, 4.5rem);
  font-size: 0.92rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-wordmark::before {
  content: "";
  width: 32px; height: 32px;
  flex: none;
  background: url("/favicon.svg") center / contain no-repeat;
  border-radius: 9px;
}
.footer-legal { margin-top: 0.85rem; max-width: 38ch; line-height: 1.6; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.7rem;
  align-items: flex-start;
}
.footer-nav a { color: rgba(234, 251, 253, 0.78); font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.footer-disclaimer { max-width: 64ch; color: rgba(234, 251, 253, 0.5); }
.footer-copy { color: rgba(234, 251, 253, 0.5); white-space: nowrap; }

/* --- Scroll reveal (added by JS) ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 880px) {
  .features { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-2 { grid-template-columns: 1fr; }
  .detail-list { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-block; }
  .site-nav { position: relative; }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 230px;
    box-shadow: var(--shadow);
    z-index: 50;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 0.7rem 0.85rem; border-radius: 9px; }
  .nav-menu a:hover { background: var(--foam); }
  .nav-cta { text-align: center; margin-top: 0.25rem; }
}

@media (max-width: 540px) {
  .facts-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; }
}

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