/* ==========================================================
   Aegean Passage — Greece Travel Portal
   Palette: Aegean deep blue / whitewash / warm sand / olive
   Fonts : Cormorant Garamond (brand), Sora (headings), Outfit (body)
   ========================================================== */

/* --- Custom properties --- */
:root {
  --sea-deep:    #1B3A5C;
  --sea-mid:     #2E6B9E;
  --sea-light:   #5BA0D0;
  --sea-pale:    #D6E6F2;
  --whitewash:   #FAFCFF;
  --sand:        #DFC9A8;
  --sand-light:  #F5EEE3;
  --sand-warm:   #C2A67E;
  --terracotta:  #C26849;
  --olive:       #5E7A5B;
  --text-primary:#141820;
  --text-body:   #3A3F4B;
  --text-muted:  #6B7280;
  --text-inverse:#FAFCFF;

  --font-brand:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-heading:'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'Outfit', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --nav-h:       72px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--whitewash);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--sea-mid);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}

.site-nav.scrolled {
  background: rgba(27, 58, 92, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-inverse);
  transition: opacity .3s;
}
.nav-brand:hover { opacity: .85; }

.nav-brand__icon { flex-shrink: 0; }

.nav-brand__text {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-inverse);
  opacity: .75;
  transition: opacity .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 1px;
  transition: transform .3s var(--ease-out), opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(175deg,
      rgba(27,58,92,.10) 0%,
      rgba(27,58,92,.30) 35%,
      rgba(27,58,92,.70) 65%,
      rgba(27,58,92,.92) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 48px 100px;
  animation: heroReveal 1s var(--ease-out) .2s both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: .95;
  color: var(--text-inverse);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--sand);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250, 252, 255, .8);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250,252,255,.45);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: transform .25s var(--ease-spring), background .3s, color .3s, box-shadow .3s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terracotta);
  color: var(--text-inverse);
}

.btn--primary:hover {
  background: #D47556;
  box-shadow: 0 6px 20px rgba(194,104,73,.35);
}

.btn--outline {
  background: transparent;
  color: var(--text-inverse);
  border: 1.5px solid rgba(250,252,255,.45);
}

.btn--outline:hover {
  border-color: var(--text-inverse);
  background: rgba(250,252,255,.08);
}

/* ==========================================================
   SECTIONS — shared
   ========================================================== */
.section {
  padding: 120px 0;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sea-mid);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section__intro {
  font-size: 18px;
  max-width: 680px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ==========================================================
   ROUTES section
   ========================================================== */
.section--routes {
  background: var(--whitewash);
  position: relative;
}

.section--routes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sea-pale), transparent);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.route-block {
  position: relative;
  padding: 32px 0 0;
}

.route-block__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
}

.route-block__accent--ferry { background: var(--sea-mid); }
.route-block__accent--road  { background: var(--olive); }
.route-block__accent--rail  { background: var(--terracotta); }

.route-block__icon {
  margin-bottom: 20px;
}

.route-block__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.route-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ==========================================================
   CONNECTED section (broadband mid-page)
   ========================================================== */
.section--connected {
  background:
    linear-gradient(168deg, #E6EFF8 0%, #EEF3F9 40%, #F5F0EA 100%);
  position: relative;
}

.section--connected .section__label { color: var(--sea-deep); }

.connected-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.connected-item {
  display: flex;
  gap: 20px;
  padding: 36px 32px;
  border-bottom: 1px solid rgba(27,58,92,.08);
  transition: background .3s;
}

.connected-item:hover {
  background: rgba(255,255,255,.5);
}

.connected-item:nth-child(odd) {
  border-right: 1px solid rgba(27,58,92,.08);
}

.connected-item__num {
  font-family: var(--font-brand);
  font-size: 36px;
  font-weight: 600;
  color: var(--sea-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  padding-top: 4px;
}

.connected-item__body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.connected-item__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ==========================================================
   REGIONS section
   ========================================================== */
.section--regions {
  background: #fff;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.region-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid rgba(27,58,92,.08);
}

.region-item:last-child { border-bottom: none; }

.region-item--has-img {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.region-item:nth-child(3).region-item--has-img,
.region-item:nth-child(odd):not(:first-child).region-item--has-img {
  direction: rtl;
}
.region-item:nth-child(3).region-item--has-img > *,
.region-item:nth-child(odd):not(:first-child).region-item--has-img > * {
  direction: ltr;
}

.region-item__img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.region-item__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.region-item:hover .region-item__img {
  transform: scale(1.04);
}

.region-item__text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.region-item__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 14px;
}

.region-item__meta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sea-mid);
}

/* ==========================================================
   TIPS section
   ========================================================== */
.section--tips {
  background: linear-gradient(180deg, var(--sand-light) 0%, var(--whitewash) 100%);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}

.tip-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand);
}

.tip-item p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--sea-deep);
  color: rgba(250,252,255,.6);
  padding: 64px 0 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-brand {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 28px;
  color: var(--text-inverse);
  margin-bottom: 20px;
}

.footer-note {
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(250,252,255,.1);
  font-size: 13px;
}

.footer-domain {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(250,252,255,.4);
}

.footer-copy {
  color: rgba(250,252,255,.3);
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

.route-block.reveal-target { transition-delay: calc(var(--i, 0) * .12s); }
.connected-item.reveal-target { transition-delay: calc(var(--i, 0) * .1s); }
.tip-item.reveal-target { transition-delay: calc(var(--i, 0) * .1s); }

/* ==========================================================
   RESPONSIVE — Tablet
   ========================================================== */
@media (max-width: 1100px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(27,58,92,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease-out), opacity .3s;
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    opacity: .9;
  }

  .nav-links a::after { display: none; }

  .nav-toggle { display: flex; }
}

@media (max-width: 960px) {
  :root { --nav-h: 64px; }

  .routes-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .connected-grid {
    grid-template-columns: 1fr;
  }

  .connected-item:nth-child(odd) {
    border-right: none;
  }

  .region-item--has-img {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .region-item:nth-child(3).region-item--has-img,
  .region-item:nth-child(odd):not(:first-child).region-item--has-img {
    direction: ltr;
  }

  .region-item__img { height: 220px; }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================
   RESPONSIVE — Mobile
   ========================================================== */
@media (max-width: 640px) {
  :root { --nav-h: 56px; }

  body { font-size: 16px; }

  .nav-inner { padding: 0 20px; }
  .nav-brand__text { font-size: 17px; }
  .nav-brand__icon { width: 24px; height: 24px; }

  .hero__content {
    padding: 0 24px 80px;
  }

  .hero__brand {
    font-size: clamp(44px, 12vw, 64px);
  }

  .hero__headline {
    font-size: 16px;
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero__cta .btn { width: 100%; text-align: center; }

  .hero__scroll { display: none; }

  .section { padding: 72px 0; }
  .section__inner { padding: 0 20px; }

  .section__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .section__intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .connected-item {
    padding: 28px 20px;
    gap: 16px;
  }

  .connected-item__num { font-size: 28px; width: 40px; }

  .region-item { padding: 32px 0; }
  .region-item__img { height: 200px; }
  .region-item__text h3 { font-size: 19px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
.legal {
  padding: calc(var(--nav-h) + 56px) 0 80px;
  background:
    linear-gradient(180deg, var(--sand-light) 0%, var(--whitewash) 28%, var(--whitewash) 100%);
  min-height: 70vh;
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--sea-deep);
  letter-spacing: -.02em;
  margin: 8px 0 12px;
  line-height: 1.15;
}

.legal__updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal__body h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--sea-deep);
  margin: 36px 0 12px;
  letter-spacing: -.01em;
}

.legal__body p {
  margin-bottom: 14px;
  color: var(--text-body);
}

.legal__body ul {
  list-style: disc;
  padding-left: 1.35em;
  margin: 0 0 16px;
}

.legal__body li {
  margin-bottom: 8px;
}

.legal__body a {
  color: var(--sea-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.legal__body a:hover {
  color: var(--terracotta);
}

.legal__body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(27, 58, 92, .12);
  vertical-align: top;
}

.legal-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--sea-deep);
  background: rgba(214, 230, 242, .45);
}

.legal-table td:first-child {
  font-weight: 500;
  color: var(--sea-deep);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 28px 0 8px;
}

.footer-links--legal {
  margin-top: 12px;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--sand);
  opacity: .85;
  transition: opacity .25s, color .25s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--text-inverse);
}

.section__more {
  margin-top: 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.section__more a {
  color: var(--sea-mid);
  transition: color .2s;
}

.section__more a:hover { color: var(--terracotta); }

/* Content pages (inner) */
.page-content .site-nav,
.page-legal .site-nav {
  background: rgba(27, 58, 92, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.content-page {
  padding: calc(var(--nav-h) + 56px) 0 80px;
  background:
    linear-gradient(180deg, var(--sand-light) 0%, var(--whitewash) 22%, var(--whitewash) 100%);
  min-height: 70vh;
}

.content-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.content-page__inner--wide {
  max-width: 1000px;
}

.content-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 640px;
}

.content-blocks {
  display: grid;
  gap: 28px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--sea-deep);
  margin-bottom: 10px;
}

.content-block p {
  margin-bottom: 12px;
}

.content-block ul {
  list-style: disc;
  padding-left: 1.35em;
  margin-bottom: 12px;
}

.content-block li { margin-bottom: 8px; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 36px 0;
}

.content-card {
  padding: 28px 24px;
  border-top: 3px solid var(--sea-mid);
  background: linear-gradient(180deg, rgba(214,230,242,.35), transparent);
}

.content-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--sea-deep);
  margin-bottom: 10px;
}

.content-card p {
  font-size: 15px;
  color: var(--text-body);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(27,58,92,.12);
}

.faq-item {
  border-bottom: 1px solid rgba(27,58,92,.12);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--sea-deep);
}

.faq-item__q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--sea-mid);
  transition: transform .25s var(--ease-out);
}

.faq-item.open .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  display: none;
  padding: 0 0 20px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.open .faq-item__a { display: block; }

/* Contact */
.contact-box {
  margin-top: 32px;
  padding: 36px 32px;
  background: var(--sea-deep);
  color: var(--text-inverse);
}

.contact-box h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-box p {
  opacity: .85;
  margin-bottom: 20px;
  max-width: 480px;
}

.contact-box a.btn {
  display: inline-block;
}

@media (max-width: 640px) {
  .legal { padding: calc(var(--nav-h) + 40px) 0 64px; }
  .legal__inner { padding: 0 20px; }
  .legal-table { display: block; overflow-x: auto; }
  .legal-table th,
  .legal-table td { white-space: normal; }
  .content-page { padding: calc(var(--nav-h) + 40px) 0 64px; }
  .content-page__inner { padding: 0 20px; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 28px 20px; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-target { opacity: 1; transform: none; }

  html { scroll-behavior: auto; }
}
