/* ============================================================
   AMALAK — main site styles
   Palette & type taken verbatim from brand_board.txt.
   ============================================================ */

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

:root {
  /* ── Brand palette (exact hex from brand_board.txt) ── */
  --grey:   #606060;
  --off:    #F2F2F2;
  --red:    #C00000;
  --khaki:  #DDD9C3;

  /* ── Derived neutrals ── */
  --ink:       #1A1A1A;
  --ink-soft:  #8C8C8C;
  --white:     #FFFFFF;
  --khaki-deep: #EDE8D8;
  --line:      rgba(26, 26, 26, 0.10);

  --bg:   var(--off);
  --text: #2b2b2b;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, "Segoe UI", Arial, sans-serif;

  --wrap: 75rem;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px -24px rgba(26, 26, 26, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(26, 26, 26, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  overscroll-behavior: none;
  scrollbar-width: none;
  background-color: var(--ink);
}
html::-webkit-scrollbar { width: 0; height: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.display { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1.5px;
  background: var(--red);
}

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--dark { background: var(--ink); color: rgba(255,255,255,0.82); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--khaki { background: var(--khaki-deep); }
.section--white { background: var(--white); }

.section-head { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p:not(.eyebrow) { color: var(--ink-soft); margin-top: 0.75rem; font-size: 1.02rem; }
.section--dark .section-head p:not(.eyebrow) { color: rgba(255,255,255,0.65); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: #a30000; transform: translateY(-1px); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }

.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.section--dark .btn--ghost { color: var(--white); }
.btn--ghost:hover { background: rgba(192, 0, 0, 0.08); border-color: var(--red); color: var(--red); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--off); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.1rem, 3vw, 2rem);
  background: rgba(242, 242, 242, 0);
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: var(--off);
  box-shadow: 0 1px 0 var(--line), var(--shadow-soft);
  padding-block: 0.7rem;
}

.scroll-progress {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(26, 26, 26, 0.08);
  overflow: hidden;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { height: 2.1rem; width: auto; }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.site-header:not(.is-scrolled) .brand__text { color: var(--white); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.nav a:not(.btn) {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.25s var(--ease);
}
.site-header:not(.is-scrolled) .nav a:not(.btn) { color: var(--white); }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav a:not(.btn):hover::after { width: 100%; }
.nav .btn { padding: 0.6rem 1.4rem; font-size: 0.68rem; }
.nav a.is-active:not(.btn) { color: var(--red); }
.nav a.is-active:not(.btn)::after { width: 100%; }
.site-header:not(.is-scrolled) .nav a.is-active:not(.btn) { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s;
}
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    border: 1.5px solid rgba(26, 26, 26, 0.25);
    border-radius: 12px;
  }
  .site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(255, 255, 255, 0.5); }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: clamp(1.1rem, 3vw, 2rem);
    left: auto;
    width: min(70vw, 16rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 26px 60px -22px rgba(26, 26, 26, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav a:not(.btn),
  .site-header:not(.is-scrolled) .nav a:not(.btn) {
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
  }
  .nav a:not(.btn)::after { display: none; }
  .nav a:not(.btn):hover { background: rgba(192, 0, 0, 0.08); }
  .nav a.is-active:not(.btn),
  .site-header:not(.is-scrolled) .nav a.is-active:not(.btn) {
    background: rgba(192, 0, 0, 0.1);
    color: var(--red);
    font-weight: 600;
  }
  .nav .btn { width: 100%; margin-top: 0.45rem; justify-content: center; }
  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.35) 40%, rgba(26,26,26,0.88) 100%);
  z-index: -1;
}
.hero__inner { padding-block: clamp(6rem, 14vw, 9rem) clamp(3rem, 8vw, 4.5rem); max-width: 46rem; }
.hero .eyebrow { color: var(--khaki); }
.hero .eyebrow::before { background: var(--khaki); }
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero p.lead { font-size: 1.08rem; color: rgba(255,255,255,0.82); max-width: 34rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.page-hero {
  padding-block: clamp(7.5rem, 14vw, 9.5rem) clamp(3rem, 6vw, 4rem);
  background: var(--ink);
  color: var(--white);
}
.page-hero .eyebrow { color: var(--khaki); }
.page-hero .eyebrow::before { background: var(--khaki); }
.page-hero h1 { color: var(--white); margin-bottom: 0.85rem; }
.page-hero p { max-width: 40rem; color: rgba(255,255,255,0.68); font-size: 1.02rem; }

/* ============================================================
   Grids: features / services / why-us
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature-card .n {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
  border: 1px solid rgba(192,0,0,0.35);
  border-radius: 50%;
  width: 2.4rem; height: 2.4rem;
  line-height: 2.3rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; }

.section--dark .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.section--dark .feature-card p { color: rgba(255,255,255,0.62); }

@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--khaki-deep);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); background: var(--khaki); }
.service-card .ic {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.service-card .ic svg { width: 1.4rem; height: 1.4rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--grey); font-size: 0.92rem; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* Services page: alternating detail rows */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.service-detail__num { font-family: var(--font-display); font-size: 0.95rem; color: var(--red); font-weight: 600; margin-bottom: 0.75rem; }
.service-detail h2 { font-size: 1.6rem; margin-bottom: 0.85rem; }
.service-detail p { color: var(--ink-soft); margin-bottom: 1rem; }
.service-detail ul { list-style: none; display: grid; gap: 0.55rem; }
.service-detail ul li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.94rem; color: var(--grey); }
.service-detail ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; transform: translateY(-2px); }

@media (max-width: 780px) {
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__media { order: 0; }
}

/* ============================================================
   Portfolio
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--grey);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.2;
  isolation: isolate;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 40%, rgba(26,26,26,0.85) 100%);
  z-index: 1;
}
.portfolio-card__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem;
  z-index: 2;
  color: var(--white);
}
.portfolio-card__tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 0.4rem;
}
.portfolio-card__label h3 { color: var(--white); font-size: 1.08rem; font-weight: 600; }
.portfolio-card[hidden] { display: none; }

@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About page grid
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about__body p { color: var(--ink-soft); margin-bottom: 1rem; }

@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Clients strip
   ============================================================ */
.clients-strip { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.clients-strip__head { text-align: center; margin-bottom: 2rem; }
.clients-strip__head p { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  animation: clients-scroll 26s linear infinite;
}
.clients-item {
  flex: 0 0 auto;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-item img { max-height: 100%; width: auto; }

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.82), rgba(26,26,26,0.9));
  z-index: -1;
}
.cta-band .wrap { max-width: 40rem; }
.cta-band h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 1.75rem; }
.cta-band .rule {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--khaki);
}
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.5rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.65rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-card .ic {
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--khaki-deep);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-card .ic svg { width: 1.2rem; height: 1.2rem; }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { color: var(--ink-soft); font-size: 0.92rem; text-decoration: none; }
.contact-card a:hover { color: var(--red); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); line-height: 0; margin-top: 0.5rem; }
.contact-map iframe { width: 100%; height: 260px; border: 0; filter: saturate(0.9); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.15rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--off);
  color: var(--text);
}
.field textarea { resize: none; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form .btn { justify-self: start; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   Footer — compact, organized (janatravel pattern)
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 0;
}
.site-footer .footer-bottom-bar {
  padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem) var(--gutter) 1.15rem;
  align-items: start;
}
.footer-col {
  min-width: 0;
  padding: 0 clamp(0.85rem, 1.6vw, 1.35rem);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.footer-col--brand { padding-left: 0; border-left: none; }
.footer-col:last-child { padding-right: 0; }

.footer-brand.logo { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; margin-bottom: 0.75rem; }
.footer-brand.logo img { height: 2.1rem; width: auto; }
.footer-brand .logo-text { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); font-weight: 600; }
.footer-brand-desc { color: rgba(255,255,255,0.6); font-size: 0.86rem; line-height: 1.55; margin-bottom: 1rem; max-width: 26rem; }
.footer-cta-btn {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(192,0,0,0.55);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.footer-cta-btn:hover { background: rgba(192,0,0,0.18); border-color: var(--red); }

.footer-heading { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.85rem; color: var(--khaki); letter-spacing: 0.06em; text-transform: uppercase; }

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a, .footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,0.66); text-decoration: none; font-size: 0.86rem; line-height: 1.4; transition: color 0.2s ease; }
.footer-links a:hover, .footer-contact-list a:hover { color: var(--red); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.55rem; }
.footer-contact-icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 1.15rem; height: 1.15rem; margin-top: 0.12rem; color: var(--red); }
.footer-contact-icon svg { width: 1rem; height: 1rem; display: block; }

.footer-bottom-bar {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem var(--gutter) 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copyright { color: rgba(255,255,255,0.42); font-size: 0.78rem; margin: 0; }
.footer-copyright a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-copyright a:hover { color: var(--khaki); }

@media (max-width: 1100px) {
  .footer-main { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 1.15rem; }
  .footer-col--brand { grid-column: 1 / -1; padding-right: 0; }
  .footer-col:nth-child(2) { border-left: none; padding-left: 0; }
}

@media (max-width: 720px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; padding-top: 1.5rem; padding-bottom: 1rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-col:nth-child(2) { border-left: none; padding-left: 0; }
}

@media (max-width: 520px) {
  .footer-main { grid-template-columns: 1fr; row-gap: 0; }
  .footer-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 0.95rem 0 0; margin-top: 0.95rem; }
  .footer-col--brand { border-top: none; margin-top: 0; padding-top: 0; }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
