/* ═══════════════════════════════════════
   MIRKA ČEJKOVÁ — Navy Authority

   Deep navy sections × warm cream sections.
   Gold accents as the single dramatic note.
   Fraunces (wonky serif) × DM Sans.
   Strong alternating contrast. Confidence.
   ═══════════════════════════════════════ */

:root {
  /* ── Light palette ── */
  --white:        #FFFFFF;
  --bg:           #FAF9F6;
  --bg-warm:      #F3F1EC;
  --bg-accent:    #EBE8E1;

  /* ── Ink ── */
  --ink:          #1A1A1A;
  --ink-soft:     #3D3D3D;
  --ink-muted:    #7A7A72;
  --ink-faint:    #B0ADA6;

  /* ── Navy ── */
  --navy:         #152039;
  --navy-mid:     #1B2A4A;
  --navy-light:   #243656;
  --navy-pale:    rgba(21, 32, 57, 0.04);
  --navy-border:  rgba(21, 32, 57, 0.12);

  /* ── Gold ── */
  --gold:         #C6A355;
  --gold-light:   #D4B76E;
  --gold-dark:    #A8893E;
  --gold-pale:    rgba(198, 163, 85, 0.08);
  --gold-border:  rgba(198, 163, 85, 0.25);
  --gold-glow:    rgba(198, 163, 85, 0.15);

  /* ── Rules ── */
  --rule:         rgba(0, 0, 0, 0.08);
  --rule-strong:  rgba(0, 0, 0, 0.14);

  /* ── Dark section (navy) ── */
  --dark:         var(--navy);
  --dark-card:    var(--navy-mid);
  --dark-rule:    rgba(255,255,255,0.08);
  --dark-text:    #B8BCC8;
  --dark-muted:   #7A7F8F;

  /* ── Type ── */
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* ── Layout ── */
  --max-w:     1080px;
  --max-w-nav: 1200px;
  --radius:    8px;
  --radius-lg: 14px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}


/* ═══ RESET ═══ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 68px;
}
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }


/* ═══ TYPOGRAPHY ═══ */

.nowrap { white-space: nowrap; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  font-optical-sizing: auto;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

p { max-width: 62ch; }
p + p { margin-top: 1.1rem; }
strong { font-weight: 600; }


/* ═══ LAYOUT ═══ */

.shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Thin horizontal rule between same-background sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(85%, 900px);
  height: 1px;
  background: var(--rule);
}

/* ── Light section ── */
.section--light {
  background: var(--bg-warm);
}

/* ── Dark (Navy) section ── */
.section--dark {
  background: var(--navy);
  color: var(--dark-text);
}

/* No rule between contrasting sections */
.section--dark + .section::before,
.section + .section--dark::before,
.section--light + .section:not(.section--light):not(.section--dark)::before,
.section:not(.section--light):not(.section--dark) + .section--light::before { display: none; }

.section--dark h2,
.section--dark h3 { color: var(--white); }


/* ═══ NAV ═══ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.4s;
}

.nav.is-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  max-width: var(--max-w-nav);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.nav__logo:hover { color: var(--gold); }

.nav__links { display: flex; gap: 0.25rem; }

.nav__link {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__link.is-active {
  color: var(--gold);
  background: rgba(198, 163, 85, 0.1);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--white);
  padding: 0.4rem;
}


/* ═══ KICKER ═══ */

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}

.section--dark .kicker { color: var(--gold-light); opacity: 0.9; }


/* ═══════════════════════════════════════
   HERO — Homepage (Navy background)
   ═══════════════════════════════════════ */

.hero {
  padding: 80px 0 100px;
  background: var(--navy);
  position: relative;
  color: var(--dark-text);
  overflow: hidden;
}

.hero::before { display: none; }

.hero .shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero__copy h1 {
  margin-bottom: 1.25rem;
  color: var(--white);
  animation: fadeUp 0.8s var(--ease) both;
}

.hero__copy > .kicker {
  color: var(--gold);
  animation: fadeUp 0.8s var(--ease) 0.04s both;
}

.hero__copy > p {
  color: var(--dark-text);
  font-size: 1.05rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero__copy > p + p {
  animation-delay: 0.15s;
}

.hero__copy > p strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--gold);
  display: block;
  margin: 1.5rem 0;
  line-height: 1.4;
}

.hero__copy > div {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.25rem;
  animation: fadeUp 0.8s var(--ease) 0.22s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Portrait */
.hero__portrait {
  position: relative;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

.hero__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
}


/* ═══════════════════════════════════════
   HERO — Sub-pages (Navy background)
   ═══════════════════════════════════════ */

.hero--sub {
  padding: 80px 0;
  background: var(--navy);
  text-align: left;
  color: var(--dark-text);
}

.hero--sub::before { display: none; }

.hero--sub .shell {
  display: block;
  max-width: 780px;
}

.hero--sub.hero--center {
  text-align: center;
}

.hero--sub.hero--center .shell {
  margin: 0 auto;
}

.hero--sub.hero--center p {
  margin-left: auto;
  margin-right: auto;
}

.hero--sub.hero--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.hero--sub h1 {
  animation: fadeUp 0.8s var(--ease) both;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero--sub p {
  color: var(--dark-text);
  font-size: 1.08rem;
  animation: fadeUp 0.8s var(--ease) 0.08s both;
}

.hero--sub .kicker {
  color: var(--gold);
  animation: fadeUp 0.8s var(--ease) both;
}

/* Gold accent bar under sub-hero */
.hero--sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}


/* ═══ BUTTONS ═══ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: all 0.4s var(--ease);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198, 163, 85, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--rule-strong);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Buttons inside hero (navy bg) */
.hero .btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hero .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(198, 163, 85, 0.35);
}

.hero .btn--outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}

.hero .btn--outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

/* Buttons in dark sections */
.section--dark .btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.section--dark .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(198, 163, 85, 0.3);
}

.section--dark .btn--outline {
  color: var(--dark-text);
  border-color: var(--dark-rule);
}

.section--dark .btn--outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}


/* ═══ STAT RAIL ═══ */

.stat-rail {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.stat-rail__item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-rail__item + .stat-rail__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--dark-rule);
}

.stat-rail__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.stat-rail__item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-muted);
  letter-spacing: 0.04em;
}


/* ═══ FEATURE GRID ═══ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: all 0.4s var(--ease);
  position: relative;
}

.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--navy);
}

.section--dark .feature-card {
  background: var(--navy-mid);
  border-color: var(--dark-rule);
  color: var(--dark-text);
}

.section--dark .feature-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.section--dark .feature-card h3 { color: var(--white); }

.section--light .feature-card {
  background: var(--white);
}


/* ═══ TWO-COL ═══ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.two-col > div {
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--white);
  transition: all 0.4s var(--ease);
}

.two-col > div:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.two-col h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.section--dark .two-col > div {
  background: var(--navy-mid);
  border-color: var(--dark-rule);
}

.section--dark .two-col > div:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.section--dark .two-col h3 { color: var(--gold-light); }


/* ═══ ROUTE GRID ═══ */

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.route-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--white);
  transition: all 0.45s var(--ease);
  position: relative;
}

.route-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.route-card > span:first-child {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.35;
}

.route-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
}

.route-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.route-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.route-card:hover .btn--outline {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Route cards on navy background */
.section--dark .route-card {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.06);
}

.section--dark .route-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

.section--dark .route-card h3 { color: var(--white); }
.section--dark .route-card p { color: var(--dark-muted); }

.section--dark .route-card .btn--outline {
  color: var(--dark-text);
  border-color: rgba(255,255,255,0.12);
}

.section--dark .route-card:hover .btn--outline {
  border-color: var(--gold);
  color: var(--gold);
}


/* ═══ LOGO BAR ═══ */

.logo-bar {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
}

.logo-bar__item {
  flex: 0 0 auto;
  color: var(--ink-muted);
  opacity: 0.5;
  transition: all 0.4s var(--ease);
  filter: grayscale(100%);
}

.logo-bar__item:hover {
  opacity: 1;
  color: var(--navy);
  filter: grayscale(0%);
}

.logo-bar__item svg {
  height: 48px;
  width: auto;
  display: block;
}

/* Legacy span fallback */
.logo-bar span:not(.logo-bar__item span) {
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--rule);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.logo-bar span:not(.logo-bar__item span):hover {
  border-color: var(--gold-border);
  color: var(--gold-dark);
  background: var(--gold-pale);
}


/* ═══ FAQ ═══ */

.faq { margin-top: 2rem; }

.faq__item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--dark-rule);
}

.faq__item:first-child {
  border-top: 1px solid var(--dark-rule);
}

.faq__item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  transition: color 0.3s;
  cursor: pointer;
}

.faq__item h3:hover { color: var(--gold-light); }

.faq__item p,
.faq__item li {
  color: var(--dark-muted);
  font-size: 0.92rem;
}

.faq__item ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item li {
  padding-left: 1.25rem;
  position: relative;
}

.faq__item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}


/* ═══ PULLQUOTE ═══ */

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--navy);
  margin: 1.75rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  max-width: 56ch;
}

.hero .pullquote {
  color: var(--gold);
  border-left-color: var(--gold);
}

.section--dark .pullquote {
  color: var(--gold-light);
  border-left-color: var(--gold);
}


/* ═══ NUMBERED LIST ═══ */

.numbered-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.numbered-list li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.section--dark .numbered-list li {
  border-bottom-color: var(--dark-rule);
}

.numbered-list li:first-child {
  border-top: 1px solid var(--rule);
}

.section--dark .numbered-list li:first-child {
  border-top-color: var(--dark-rule);
}

.numbered-list__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.section--dark .numbered-list__num {
  color: var(--gold);
  opacity: 0.6;
}

.numbered-list__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section--dark .numbered-list__text {
  color: var(--dark-text);
}

/* Grid variant for kurz page */
.numbered-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.numbered-list--grid li {
  padding: 1.5rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  flex-direction: column;
  gap: 0.75rem;
  margin: -0.5px;
  background: var(--white);
  transition: all 0.4s var(--ease);
}

.numbered-list--grid li:hover {
  border-color: var(--gold-border);
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  z-index: 1;
}

.numbered-list--grid li:first-child {
  border-top: 1px solid var(--rule);
}

.numbered-list--grid .numbered-list__num {
  font-size: 2.4rem;
  min-width: auto;
}

.section--light .numbered-list--grid li {
  background: var(--white);
}


/* ═══ CONTENT WITH ASIDE ═══ */

.content-with-aside {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3.5rem;
  align-items: start;
}

.content-with-aside--reverse {
  grid-template-columns: 0.7fr 1.3fr;
  direction: rtl;
}

.content-with-aside--reverse > * {
  direction: ltr;
}

.content-with-aside__main p {
  font-size: 0.975rem;
}

.content-with-aside__main p + p {
  margin-top: 1rem;
}

.content-with-aside__side {
  position: sticky;
  top: 100px;
}


/* ═══ PHOTO PLACEHOLDERS ═══ */

.photo-placeholder {
  background: var(--bg-accent);
  border: 2px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.photo-placeholder span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-faint);
  text-align: center;
  padding: 1rem;
}

/* Decorative corner accents — gold */
.photo-placeholder::before,
.photo-placeholder::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold-border);
  border-style: solid;
}

.photo-placeholder::before {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.photo-placeholder::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.photo-placeholder--hero {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.1);
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

.photo-placeholder--hero span {
  color: var(--dark-muted);
}

.photo-placeholder--hero::before,
.photo-placeholder--hero::after {
  border-color: rgba(198, 163, 85, 0.3);
}

.photo-placeholder--square {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.photo-placeholder--portrait {
  aspect-ratio: 3 / 4;
  width: 100%;
}


/* ═══ CREDENTIAL LIST ═══ */

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}

.credential-list li {
  padding: 0.85rem 0 0.85rem 1.5rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.credential-list li:first-child {
  border-top: 1px solid var(--rule);
}

.credential-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.credential-list li:hover {
  color: var(--ink);
}

.credential-list li:hover::before {
  opacity: 1;
}

.credential-highlight {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  background: var(--gold-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}


/* ═══ CLIENT LIST ═══ */

.client-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.25rem;
}

.client-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: all 0.3s;
}

.client-list li:first-child {
  border-top: 1px solid var(--rule);
}

.client-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
  transition: opacity 0.3s;
}

.client-list li:hover {
  color: var(--ink);
  padding-left: 1.75rem;
}

.client-list li:hover::before {
  opacity: 1;
}

.client-list li strong {
  color: var(--ink);
  font-weight: 600;
}

/* Section light variant */
.section--light .client-list li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.section--light .client-list li:first-child {
  border-top-color: rgba(0, 0, 0, 0.06);
}


/* ═══ PROJECT SHOWCASE ═══ */

.project-showcase {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.project-showcase__card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
  transition: all 0.45s var(--ease);
  position: relative;
}

.project-showcase__card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

/* Wide card spans both rows */
.project-showcase__card--wide {
  grid-row: 1 / 3;
}

.project-showcase__card--wide .project-showcase__img {
  height: 100%;
  min-height: 280px;
}

.project-showcase__img {
  width: 100%;
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern inside placeholder */
.project-showcase__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198, 163, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 163, 85, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Decorative corner bracket */
.project-showcase__img::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-left: 2px solid var(--gold-border);
  border-top: 2px solid var(--gold-border);
  border-radius: 3px 0 0 0;
  opacity: 0.5;
}

.project-showcase__img span {
  font-family: var(--font-display);

  font-size: 0.85rem;
  font-style: italic;
  color: var(--dark-muted);
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.project-showcase__info {
  padding: 1.25rem 1.5rem;
}

.project-showcase__info h3 {
  font-family: var(--font-display);

  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.project-showcase__info p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Hover: gold accent line at top */
.project-showcase__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.project-showcase__card:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .project-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-showcase__card--wide {
    grid-row: auto;
  }

  .project-showcase__card--wide .project-showcase__img {
    min-height: 200px;
  }
}


/* ═══ CONTACT CENTER ═══ */

.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.contact-center__photo {
  width: 180px;
  margin-bottom: 2rem;
}

.contact-center__info h2 {
  margin-bottom: 1.5rem;
}

.contact-center__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.35s var(--ease);
}

.contact-channel:hover {
  border-color: var(--gold-border);
  color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}


/* ═══ CONTACT FORM (new centered) ═══ */

.contact-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-wrap h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--ink-muted);
  margin: 0 auto 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-faint);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  align-self: center;
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    width: 100%;
    justify-content: center;
  }
}


/* ═══ HERO ACTIONS ═══ */

.hero__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.25rem;
  animation: fadeUp 0.8s var(--ease) 0.22s both;
}


/* ═══ ROUTE CARD NUMBER ═══ */

.route-card__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.35;
  display: block;
}


/* ═══ TWO-COL CONTACT ═══ */

.two-col--contact {
  align-items: start;
}

.two-col--contact > div:first-child {
  background: transparent;
  border: none;
  padding: 0;
}

.two-col--contact > div:first-child:hover {
  box-shadow: none;
  transform: none;
}

.two-col--contact > form {
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--white);
}


/* ═══ CONTACT FORM ═══ */

.two-col form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.two-col form input,
.two-col form textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.two-col form input:focus,
.two-col form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.two-col form input::placeholder,
.two-col form textarea::placeholder {
  color: var(--ink-faint);
}

.two-col form textarea {
  resize: vertical;
  min-height: 120px;
}

.two-col form .btn { align-self: flex-start; margin-top: 0.25rem; }

/* Contact info */
.two-col > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 1rem 0;
}

.two-col > div:first-child:hover {
  box-shadow: none;
  border-color: transparent;
}

.two-col > div:first-child p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}


/* ═══ CTA SECTION ═══ */

.section--cta {
  text-align: center;
  background: var(--navy);
  color: var(--dark-text);
}

.section--cta::before { display: none !important; }

.section--cta .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--cta h2 { color: var(--white); }
.section--cta p { text-align: center; margin-bottom: 1.75rem; color: var(--dark-text); }


/* ═══ REVEAL ═══ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal .stat-rail__item,
.reveal .feature-card,
.reveal .route-card,
.reveal .faq__item,
.reveal .logo-bar span {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible .stat-rail__item,
.reveal.is-visible .feature-card,
.reveal.is-visible .route-card,
.reveal.is-visible .faq__item,
.reveal.is-visible .logo-bar span {
  animation: staggerIn 0.55s var(--ease) both;
}

.reveal.is-visible :nth-child(1) { animation-delay: 0.04s; }
.reveal.is-visible :nth-child(2) { animation-delay: 0.09s; }
.reveal.is-visible :nth-child(3) { animation-delay: 0.14s; }
.reveal.is-visible :nth-child(4) { animation-delay: 0.19s; }
.reveal.is-visible :nth-child(5) { animation-delay: 0.24s; }
.reveal.is-visible :nth-child(6) { animation-delay: 0.29s; }

@keyframes staggerIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}


/* ═══ DECORATIVE ELEMENTS ═══ */

/* Subtle grain overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero > .shell { position: relative; z-index: 1; }

/* Decorative gold corner accent on CTA sections */
.section--cta::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, transparent 49.5%, var(--gold-border) 49.5%, var(--gold-border) 50.5%, transparent 50.5%);
  opacity: 0.4;
  pointer-events: none;
}

/* Accent dot pattern on dark sections */
.section--dark::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(198, 163, 85, 0.2) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  opacity: 0.6;
}

/* Gold underline accent for h2 in light sections */
.section--light h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 0.75rem;
  opacity: 0.6;
}

.section--cta h2::after { display: none; }

/* Thin gold line at top of navy sections (except hero) */
.section--dark:not(.hero):not(.section--cta)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  display: block;
}


/* ═══ FOOTER ═══ */

.footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: none;
  background: var(--navy);
}

.footer p {
  font-size: 0.8rem;
  color: var(--dark-muted);
  letter-spacing: 0.03em;
  max-width: none;
}


/* ═══════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════ */

@media (max-width: 900px) {
  .hero .shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__portrait {
    max-width: 360px;
    order: -1;
  }

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

  .content-with-aside,
  .content-with-aside--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .content-with-aside__side {
    position: static;
    max-width: 320px;
  }

  .content-with-aside--reverse .content-with-aside__side {
    order: -1;
  }

  .numbered-list--grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  body { padding-top: 60px; }

  .nav .shell { height: 60px; }

  .section { padding: 72px 0; }
  .hero { padding: 56px 0 72px; }
  .hero--sub { padding: 56px 0 64px; }

  .hero .shell,
  .two-col,
  .route-grid { grid-template-columns: 1fr; }

  .hero__portrait { max-width: 280px; }

  .stat-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-rail__item + .stat-rail__item::before { display: none; }

  .stat-rail__item {
    border-bottom: 1px solid var(--dark-rule);
    padding: 1.5rem 0.75rem;
  }

  .stat-rail__item:nth-child(odd) {
    border-right: 1px solid var(--dark-rule);
  }

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

  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    z-index: 99;
  }

  .nav--open .nav__links { display: flex; }

  .nav__link {
    padding: 1.25rem 2rem;
    border-radius: 0;
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
  }

  .nav__hamburger { display: block; position: relative; z-index: 100; }

  .hero__actions,
  .hero__copy > div { flex-direction: column; }
  .hero__actions .btn,
  .hero__copy > div .btn { text-align: center; }

  .two-col > div { padding: 1.5rem; }

  .logo-bar {
    gap: 1rem;
    justify-content: center;
  }

  .logo-bar__item svg {
    height: 38px;
  }

  .logo-bar span:not(.logo-bar__item span) { padding: 0.5rem 1rem; font-size: 0.78rem; }

  .hero--sub::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero--sub .shell { text-align: center; }
}

@media (max-width: 480px) {
  .shell { padding: 0 1.25rem; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }

  .stat-rail { grid-template-columns: 1fr; }
  .stat-rail__item:nth-child(odd) { border-right: none; }
  .section { padding: 56px 0; }
}
