/* SAAT Global — warm editorial */
:root {
  --bg: #f7f5f1;
  --surface: #eeece7;
  --ink: #1a1916;
  --muted: #6b675f;
  --copper: #c8793a;
  --copper-hover: #b06830;
  --line: #e0dbd2;
  --dark: #161513;
  --dark-2: #1f1d1a;
  --cream: #f7f5f1;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
p { text-wrap: pretty; margin: 0; }
button { font-family: inherit; cursor: pointer; }
.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .wrap { padding: 0 2.5rem; }
}

/* Header */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
nav#nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgb(26 25 22 / 4%);
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .nav-inner { padding: 0 2.5rem; height: 5rem; }
}
.logo-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgb(26 25 22 / 4%), 0 4px 12px rgb(26 25 22 / 6%);
}
.logo-link img { height: 1.85rem; width: auto; }
@media (min-width: 768px) {
  .logo-link img { height: 2.1rem; }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 550;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 0;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--copper);
  color: #fff;
}
.btn-primary:hover { background: var(--copper-hover); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: #fff;
}
.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover { background: var(--copper); color: #fff; }
.menu-btn {
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}
#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
#mobile-menu a.btn-primary {
  margin-top: 0.75rem;
  border: 0;
  text-align: center;
}

/* Hero */
.hero {
  padding: 7.5rem 0 0;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    min-height: calc(100svh - 5rem);
    padding-bottom: 2rem;
  }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.hero-kicker::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--copper);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--copper);
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  box-shadow: 0 24px 60px rgb(26 25 22 / 10%);
}
@media (min-width: 960px) {
  .hero-photo { aspect-ratio: 5 / 6; max-height: 72vh; }
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  background: rgb(247 245 241 / 92%);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }
}
.stat {
  background: var(--bg);
  padding: 1.25rem 1.15rem;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 550;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.stat span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.65rem;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 18ch;
}
.section-head .lede {
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Materials */
.materials {
  background: var(--surface);
}
.mat-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .mat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.mat {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgb(26 25 22 / 8%);
}
.mat-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}
.mat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.mat:hover .mat-img img { transform: scale(1.04); }
.mat-body {
  padding: 1.35rem 1.35rem 1.5rem;
}
.mat-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.mat-num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--copper);
  font-weight: 550;
}
.mat-tag {
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.mat h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
.mat p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Qualities */
.qualities {
  background: var(--bg);
}
.q-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .q-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .q-grid { grid-template-columns: repeat(4, 1fr); }
}
.q-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  height: 100%;
}
.q-num {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--copper);
  margin-bottom: 1.1rem;
  display: block;
}
.q-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}
.q-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Contact */
.contact {
  background: var(--surface);
}
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}
.contact h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.contact-lead {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  font-weight: 550;
  font-size: 0.95rem;
}
.contact-row:hover { color: var(--copper); }
.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}
.ops {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .form-card { padding: 2rem; }
}
.form-card label {
  display: block;
  margin-bottom: 1.1rem;
}
.form-card label > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.form-card label > span i {
  color: var(--copper);
  font-style: normal;
}
.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgb(200 121 58 / 15%);
  background: #fff;
}
.form-card textarea {
  min-height: 8rem;
  resize: vertical;
}
.form-card .submit {
  width: 100%;
  margin-top: 0.25rem;
}
.form-note {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.success h3 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
}
.success p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.success a { color: var(--copper); font-weight: 600; }
.success button {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgb(247 245 241 / 70%);
}
.map-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: #0e0d0c;
}
@media (min-width: 768px) {
  .map-wrap { height: 380px; }
}
.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 28% 34%, rgb(200 121 58 / 18%), transparent 60%),
    radial-gradient(ellipse 40% 50% at 72% 40%, rgb(200 121 58 / 8%), transparent 55%),
    linear-gradient(180deg, #121110 0%, #0e0d0c 100%);
  pointer-events: none;
}
.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-land {
  transition: fill 0.4s;
}
.route {
  stroke-dasharray: 6 8;
  animation: route-flow 18s linear infinite;
  filter: drop-shadow(0 0 3px rgb(200 121 58 / 45%));
}
.route-a { animation-duration: 16s; }
.route-b { animation-duration: 19s; animation-direction: reverse; }
.route-c { animation-duration: 22s; }
.route-faint {
  stroke-dasharray: 2 10;
  animation: route-flow 28s linear infinite;
}
@keyframes route-flow {
  to { stroke-dashoffset: -200; }
}
.dest-pulse {
  opacity: 0.35;
  transform-origin: center;
  transform-box: fill-box;
  animation: dest-pulse 2.8s ease-out infinite;
}
.dest:nth-child(2) .dest-pulse { animation-delay: 0.6s; }
.dest:nth-child(3) .dest-pulse { animation-delay: 1.2s; }
@keyframes dest-pulse {
  0% { r: 5; opacity: 0.45; }
  70% { r: 16; opacity: 0; }
  100% { r: 16; opacity: 0; }
}
.dest-label {
  fill: rgba(247,245,241,0.55);
  font-size: 10px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hub-ring {
  transform-origin: 268px 170px;
  stroke-width: 1.4;
  opacity: 0.55;
  animation: hub-pulse 2.6s ease-out infinite;
}
.hub-ring-2 { animation-delay: 1.3s; }
@keyframes hub-pulse {
  0% { r: 8; opacity: 0.6; }
  100% { r: 28; opacity: 0; }
}
.hub-label {
  fill: #f0c090;
  font-size: 10px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.map-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 5rem;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
}
.map-chrome {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1.15rem;
}
@media (min-width: 768px) {
  .map-chrome { padding: 1.25rem 1.75rem; }
}
.map-chip {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0c090;
  background: rgb(22 21 19 / 75%);
  border: 1px solid rgb(200 121 58 / 35%);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.map-legend {
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(247 245 241 / 45%);
}
.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.map-legend .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
}
.map-legend .dot.hub {
  background: #c8793a;
  box-shadow: 0 0 8px rgb(200 121 58 / 70%);
}
.map-legend .dot.route {
  background: #e09a55;
  border-radius: 1px;
  width: 0.7rem;
  height: 0.2rem;
}
.map-legend .dot.dest {
  background: #f5d0a8;
  box-shadow: 0 0 6px rgb(200 121 58 / 40%);
}
@media (prefers-reduced-motion: reduce) {
  .route, .route-faint, .dest-pulse, .hub-ring {
    animation: none !important;
  }
}

.foot {

  padding: 3rem 0 1.5rem;
}
.foot-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .foot-grid {
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 2rem;
  }
}
.logo-plate {
  display: inline-flex;
  background: var(--cream);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
}
.logo-plate img { height: 2rem; width: auto; }
.blurb {
  max-width: 26rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgb(247 245 241 / 45%);
}
.foot h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(247 245 241 / 30%);
  margin-bottom: 1rem;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot li + li { margin-top: 0.65rem; }
.foot nav a {
  font-size: 0.9rem;
  color: rgb(247 245 241 / 55%);
  transition: color 0.2s;
}
.foot nav a:hover { color: var(--copper); }
.foot address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.foot address a,
.foot address .addr {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgb(247 245 241 / 55%);
}
.foot address a:hover { color: var(--copper); }
.foot address svg { color: var(--copper); flex-shrink: 0; }
.legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.75rem;
  color: rgb(247 245 241 / 28%);
}
@media (min-width: 768px) {
  .legal {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.hero-enter {
  opacity: 0;
  animation: rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-enter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
