/* ============================================================
   ORLANDO PHOTOWORKS — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* VARIABLES */
:root {
  --bg:           #ffffff;
  --bg-soft:      #fafaf8;
  --bg-muted:     #f5f4f1;
  --text:         #111111;
  --text-muted:   #666666;
  --text-faint:   #aaaaaa;
  --accent:       #E8601C;
  --accent-dark:  #c44e14;
  --border:       rgba(0,0,0,0.08);
  --border-mid:   rgba(0,0,0,0.12);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, Helvetica, Arial, sans-serif;
  --nav-h:        68px;
  --max-w:        1160px;
  --pad:          80px 40px;
  --pad-x:        max(24px, 5vw);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 38px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; }
p  { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.serif { font-family: var(--font-serif); }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
  display: block;
}
.accent { color: var(--accent); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: all 0.2s ease;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline {
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
}
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-ghost {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 0 0 3px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-ghost:hover { color: var(--accent-dark); border-color: var(--accent-dark); }

/* ---- IMAGE PLACEHOLDERS ---- */
.img-ph {
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  width: 100%;
}
.img-ph span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  text-align: center;
  padding: 20px;
  line-height: 1.8;
}

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
}
.nav-brand img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-phone {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-left: auto;
}
.nav-cta { margin-left: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 199;
  flex-direction: column;
  padding: 40px;
  gap: 24px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 22px;
  font-family: var(--font-serif);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.nav-mobile .btn { align-self: flex-start; margin-top: 8px; }
.nav-mobile .nav-phone { font-size: 14px; color: var(--text-muted); }

/* ---- FOOTER ---- */
.footer {
  background: #1a1a1a;
  border-top: none;
  padding: 32px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand img { height: 32px; opacity: 0.9; }
.footer-info { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-info a { color: rgba(255,255,255,0.45); }
.footer-info a:hover { color: rgba(255,255,255,0.75); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.trust-logo { display: block; object-fit: contain; }
.trust-logo-ppa { height: 120px; width: auto; mix-blend-mode: multiply; }
.trust-logo-bni { height: 52px; width: auto; }
.trust-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.badge-ppa { background: #1a1a4e; color: #fff; }
.badge-bni { background: #cc1e1e; color: #fff; }
.trust-divider { width: 1px; height: 22px; background: var(--border-mid); }
.trust-years { font-size: 48px; font-family: var(--font-serif); color: var(--accent); }

/* ---- SECTION LAYOUTS ---- */
.section { padding: var(--pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header p { max-width: 560px; margin-top: 14px; }

/* ---- HERO (interior pages) ---- */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-hero-content .eyebrow { color: rgba(255,255,255,0.55); }
.page-hero-content h1 { color: #fff; }
.page-hero-content p { color: rgba(255,255,255,0.7); max-width: 480px; margin-top: 12px; }
.page-hero .img-ph { position: absolute; inset: 0; min-height: unset; }

/* ---- SERVICE GRID ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.service-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
}
.service-card .img-ph {
  position: absolute;
  inset: 0;
  min-height: unset;
}
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  width: 100%;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
}
.service-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.service-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.service-card .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---- WHY GRID ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px 48px;
}
.why-item h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.why-item p { font-size: 14px; }

/* ---- TRUSTED BY BAR ---- */
.trusted-bar {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}
.trusted-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}
.trusted-track-wrap { overflow: hidden; }
.trusted-track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.trusted-item { flex-shrink: 0; }
.trusted-item img { height: 88px; width: auto; opacity: 0.8; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- TESTIMONIALS HOME ---- */
.testimonials-home { padding: var(--pad); background: var(--bg-soft); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { max-width: 480px; margin: 0 auto 28px; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--bg-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---- ABOUT LAYOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-photo.img-ph { aspect-ratio: 3/4; min-height: unset; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy p { margin-bottom: 18px; }
.about-copy p:last-of-type { margin-bottom: 28px; }

/* ---- CONTACT LAYOUT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 28px; }
.contact-detail {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-detail strong { color: var(--text); font-weight: 500; display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail a { color: var(--accent); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-mid);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- ORBIT COMPONENT ---- */
.orbit-system {
  position: relative;
  width: 700px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: -80px;
}
.center-sun {
  position: absolute;
  width: 160px;
  height: 160px;
  background: transparent;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-sun img { width: 100%; height: auto; object-fit: contain; }
.ring-inner {
  position: absolute;
  width: 420px;
  height: 420px;
  animation: orbit-cw 45s linear infinite;
  pointer-events: none;
}
.ring-outer {
  position: absolute;
  width: 760px;
  height: 760px;
  animation: orbit-ccw 60s linear infinite;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  background: var(--bg-muted);
}
.orb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orb-in  { width: 116px; height: 116px; margin: -58px; }
.orb-out { width: 136px; height: 136px; margin: -68px; }
.ring-inner .orb { animation: orbit-ccw 45s linear infinite; }
.ring-outer .orb  { animation: orbit-cw  60s linear infinite; }
@keyframes orbit-cw  { to { transform: rotate(360deg);  } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }
/* 3D orbit keyframes — used on capable mobile */
/* Ken Burns for 4-panel mobile hero */
@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.08); } }
.in-1{top:0;left:50%} .in-2{top:14.6%;left:85.4%} .in-3{top:50%;left:100%}
.in-4{top:85.4%;left:85.4%} .in-5{top:100%;left:50%} .in-6{top:85.4%;left:14.6%}
.in-7{top:50%;left:0} .in-8{top:14.6%;left:14.6%}
.out-1{top:0;left:50%} .out-2{top:9.5%;left:79.4%} .out-3{top:34.5%;left:97.6%}
.out-4{top:65.5%;left:97.6%} .out-5{top:90.5%;left:79.4%} .out-6{top:100%;left:50%}
.out-7{top:90.5%;left:20.6%} .out-8{top:65.5%;left:2.4%} .out-9{top:34.5%;left:2.4%}
.out-10{top:9.5%;left:20.6%}

/* ---- HERO PANELS (4-panel mobile fallback) ---- */
.hero-panels {
  display: none; /* hidden everywhere by default; JS or media query enables on mobile */
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.hero-panel {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25%;
  overflow: hidden;
}
.hero-panel:nth-child(1) { left: 0%; }
.hero-panel:nth-child(2) { left: 25%; }
.hero-panel:nth-child(3) { left: 50%; }
.hero-panel:nth-child(4) { left: 75%; }
.hero-panel::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.25);
  z-index: 2;
}
.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-panel:nth-child(1) img { animation: ken-burns 10s ease-in-out infinite alternate; }
.hero-panel:nth-child(2) img { animation: ken-burns 10s ease-in-out 2.5s infinite alternate; }
.hero-panel:nth-child(3) img { animation: ken-burns 10s ease-in-out 5s infinite alternate; }
.hero-panel:nth-child(4) img { animation: ken-burns 10s ease-in-out 7.5s infinite alternate; }

/* ---- HOME SPECIFIC ---- */
.home-hero {
  background: var(--bg);
  padding: 80px 80px 140px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 72px;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.home-tagline { text-align: left; margin-top: 0; position: relative; z-index: 10; }
.home-tagline h1 { max-width: 520px; margin: 0 0 10px; }
.home-tagline p { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.dir-tile {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.dir-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dir-tile:hover .dir-tile-img { transform: scale(1.04); }
.dir-tile .img-ph { position: absolute; inset: 0; min-height: unset; }
.dir-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
}
.dir-tile-content {
  position: relative;
  z-index: 2;
  padding: 26px 30px;
  width: 100%;
}
.dir-tile-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}
.dir-tile-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}
.dir-tile-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.brands-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.brands-bar-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint); }
.brand-tiles { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.brand-tile {
  padding: 13px 24px;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-align: center;
  background: transparent;
  display: block;
}
.brand-tile:hover { color: var(--text); }
.brand-tile span { display: block; font-size: 9px; letter-spacing: 0.08em; color: var(--text-faint); margin-top: 3px; }

/* ---- SPROUT FORMS ---- */
.inquiry-section {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  padding: var(--pad);
}
.inquiry-inner {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 48px rgba(0,0,0,0.07);
  padding: 48px;
}
.inquiry-inner h2 { margin-bottom: 6px; }
.inquiry-inner > p { margin-bottom: 28px; }
@media (max-width: 700px) {
  .inquiry-inner { padding: 28px 24px; }
}

.sprout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sprout-form .form-group { margin-bottom: 16px; }
.sprout-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.sprout-form input,
.sprout-form select,
.sprout-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-mid);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.sprout-form input:focus,
.sprout-form select:focus,
.sprout-form textarea:focus { border-color: var(--accent); }
.sprout-form textarea { resize: vertical; min-height: 100px; }
.sprout-form input[type="hidden"] { display: none; }

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.pill {
  font-size: 12px;
  padding: 7px 14px;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  line-height: 1;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
.pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-dark); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  min-height: 20px;
}
.form-status--success { color: #2a7a4e; }
.form-status--error   { color: #c0392b; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1600px) and (min-width: 901px) {
  /* Intermediate: orbit shrinks, tagline gets white background so it stays readable */
  .orbit-system { width: 480px; height: 480px; }
  .ring-inner { width: 300px; height: 300px; }
  .ring-outer { width: 520px; height: 520px; }
  .orb-in  { width: 86px; height: 86px; margin: -43px; }
  .orb-out { width: 100px; height: 100px; margin: -50px; }
  .home-tagline {
    background: var(--bg);
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  }
}

@media (max-width: 900px) {
  :root { --pad: 60px 24px; }

  .nav { padding: 0 24px; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .dir-grid { grid-template-columns: 1fr; }
  .dir-tile { height: 240px; }

  /* Mobile hero: 4 panels on top, text below on white */
  .home-hero { padding: 0; flex-direction: column; gap: 0; position: relative; }
  .orbit-system { display: none; }
  .hero-panels { display: flex; height: 380px; flex-shrink: 0; }
  .home-tagline {
    position: static;
    padding: 32px 24px 64px;
    text-align: center;
    background: var(--bg);
  }
  .home-tagline h1 { color: var(--text); max-width: 100%; text-shadow: none; font-size: clamp(28px, 7vw, 40px); }
  .home-tagline p  { color: var(--text-muted); margin-bottom: 24px; }
  .hero-ctas { justify-content: center; }
  /* Make outline CTA readable on white mobile background */
  .home-tagline .btn-outline { border: 2px solid var(--text); color: var(--text); }
  .home-tagline .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .trust-bar { gap: 20px; padding: 24px; }
  .trust-divider { display: none; }

  .page-hero { height: 420px; }
  .page-hero-content { padding: 32px 24px; }

  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }

  .brands-bar { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .brand-tiles { flex-direction: column; align-items: center; }
  .trust-item:nth-child(even) { display: none; }
}

/* prefers-reduced-motion: kill Ken Burns animation on panels */
@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
  .hero-panel img { animation: none; }
}
