/* ==========================================================================
   Carrier Hub — Design Tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* Color */
  --ink:        #060b1e;
  --ink-soft:   #0d1630;
  --ink-line:   rgba(255,255,255,0.12);
  --paper:      #f5f6fa;
  --paper-2:    #ffffff;
  --paper-line: #e3e6ee;
  --slate:      #5b6478;
  --slate-2:    #8a91a3;
  --amber:      #ff9f1c;
  --amber-dark: #e2860a;
  --teal:       #33d6c4;
  --white:      #ffffff;

  /* Type */
  --f-display: 'Big Shoulders Display', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin:0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
section{ position: relative; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:8px; height:8px;
  border-radius:2px;
  background: var(--amber);
  display:inline-block;
}
section.on-dark .eyebrow{ color: var(--amber); }

h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-wrap: balance;
}

.section-head{
  max-width: 640px;
  margin: 0 0 52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(32px, 4.2vw, 46px); text-transform: uppercase; }
.section-head p{ color: var(--slate); font-size: 17px; margin:0; }
section.on-dark .section-head p{ color: rgba(255,255,255,0.68); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-amber{
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(255,159,28,0.7);
}
.btn-amber:hover{ background: var(--amber-dark); box-shadow: 0 14px 28px -10px rgba(255,159,28,0.85); }
.btn-ghost-dark{
  border-color: var(--ink-line);
  color: var(--white);
}
.btn-ghost-dark:hover{ border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.btn-ghost-light{
  border-color: var(--paper-line);
  color: var(--ink);
}
.btn-ghost-light:hover{ border-color: var(--ink); }
.btn-sm{ padding: 10px 18px; font-size: 13.5px; }

/* ==========================================================================
   Header
   ========================================================================== */
#site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  padding: 20px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
#site-header.is-scrolled{
  padding: 12px 0;
  background: rgba(6,11,30,0.88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--ink-line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}
#site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{ height: 30px; width:auto; }
.brand span{
  font-family: var(--f-display);
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
}
.nav-links a{
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--white); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background: var(--amber);
  border-radius: 2px;
}

.header-actions{ display:flex; align-items:center; gap:16px; }

.nav-toggle{
  display:none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--ink-line);
  background: transparent;
  color: var(--white);
  align-items:center;
  justify-content:center;
}

@media (max-width: 940px){
  .nav-links{
    position: fixed;
    inset: 72px 16px auto 16px;
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
  }
  .nav-links.open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ padding: 12px 10px; width:100%; }
  .nav-links a.active::after{ display:none; }
  .nav-links a.active{ color: var(--amber); }
  .header-actions .btn-sm.hide-mobile{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  background: radial-gradient(120% 100% at 78% -10%, #14204a 0%, var(--ink) 55%), var(--ink);
  color: var(--white);
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(44px, 6vw, 78px);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-copy h1 em{
  font-style: normal;
  color: var(--amber);
}
.hero-copy .lede{
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 0 34px;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.watch-link{
  display:flex; align-items:center; gap:10px;
  font-weight:600; font-size:14.5px; color: var(--white);
}
.watch-link .play-dot{
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--ink-line);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .2s ease, background .2s ease;
}
.watch-link:hover .play-dot{ border-color: var(--amber); background: rgba(255,159,28,0.12); }

.hero-stats{
  display:flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  max-width: 560px;
}
.hero-stats div strong{
  display:block;
  font-family: var(--f-mono);
  font-size: 26px;
  color: var(--amber);
}
.hero-stats div span{
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* Hub graphic */
.hero-visual{
  position: relative;
  height: 460px;
}
#hub-canvas-wrap{
  position:absolute; inset:0;
}
.hub-svg{ width:100%; height:100%; }
.hub-node{ fill: var(--white); }
.hub-node.core{ fill: var(--amber); }
.hub-ring{ fill:none; stroke: var(--ink-line); }
.hub-spoke{ stroke: rgba(255,255,255,0.18); stroke-width:1.4; }
.hub-pulse{ fill: var(--amber); filter: drop-shadow(0 0 6px rgba(255,159,28,0.9)); }
.hub-label{
  font-family: var(--f-mono);
  font-size: 10.5px;
  fill: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

@media (max-width: 940px){
  .hero{ padding-top: 132px; }
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ height: 320px; order: -1; }
  .hero-stats{ gap: 24px; flex-wrap: wrap; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about{ padding: 120px 0; background: var(--paper); }
.about .container{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items:start;
}
.about-checklist{ margin-top: 28px; display:flex; flex-direction:column; gap:16px; }
.about-checklist li{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  font-size: 15px;
  color: var(--ink);
}
.about-checklist .chk{
  flex: none;
  width: 24px; height:24px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--amber);
  display:flex; align-items:center; justify-content:center;
  margin-top: 2px;
}
.about-checklist .chk svg{ width:13px; height:13px; }
.about-checklist b{ display:block; margin-bottom: 2px; }
.about-checklist span{ color: var(--slate); font-size: 14.5px; }

.about-body p{ color: var(--slate); font-size: 16px; margin: 0 0 18px; }
.about-body p:last-child{ margin-bottom:0; }

@media (max-width: 860px){
  .about .container{ grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Feature grid (Platform)
   ========================================================================== */
.platform{ padding: 30px 0 120px; background: var(--paper); }
.feature-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card{
  background: var(--paper-2);
  padding: 30px 26px;
  transition: background .2s ease;
}
.feature-card:hover{ background: #fbfaf6; }
.feature-card .f-icon{
  width: 42px; height:42px;
  border-radius: 10px;
  background: var(--ink);
  display:flex; align-items:center; justify-content:center;
  color: var(--amber);
  margin-bottom: 18px;
}
.feature-card .f-icon svg{ width:20px; height:20px; }
.feature-card h4{
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 8px;
}
.feature-card p{ color: var(--slate); font-size: 14px; margin:0; }

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

/* ==========================================================================
   Gallery / Screenshots
   ========================================================================== */
.gallery{ padding: 120px 0; background: var(--ink); color: var(--white); }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shot-card{
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  cursor: zoom-in;
  transition: transform .25s ease, border-color .25s ease;
}
.shot-card:hover{ transform: translateY(-4px); border-color: rgba(255,159,28,0.4); }
.shot-chrome{
  display:flex; align-items:center; gap:6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--ink-line);
}
.shot-chrome i{ width:8px; height:8px; border-radius:50%; background: rgba(255,255,255,0.18); display:block; }
.shot-frame{ aspect-ratio: 16/10; overflow:hidden; }
.shot-frame img{ width:100%; height:100%; object-fit: cover; object-position: top; }
.shot-title{
  padding: 14px 16px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.shot-title span.tag{
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--teal);
  font-weight: 400;
}

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

/* Lightbox */
.lightbox{
  position: fixed; inset:0; z-index: 300;
  background: rgba(3,6,17,0.92);
  display:none;
  align-items:center; justify-content:center;
  padding: 40px 20px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 1100px; max-height: 84vh; border-radius: 10px; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7); }
.lightbox-close{
  position:absolute; top: 26px; right: 26px;
  width:44px; height:44px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  border:1px solid var(--ink-line);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  padding: 74px 0;
  background: var(--amber);
  color: var(--ink);
}
.cta-band .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h3{
  font-size: clamp(26px, 3vw, 34px);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-band p{ margin:0; color: rgba(6,11,30,0.72); max-width: 520px; font-size: 15.5px; }
.cta-band .btn{
  background: var(--ink);
  color: var(--white);
  flex: none;
}
.cta-band .btn:hover{ background: #141d40; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials{ padding: 120px 0; background: var(--paper); }
.t-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.t-card{
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 32px;
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.t-card .quote-mark{
  font-family: var(--f-display);
  font-size: 46px;
  color: var(--amber);
  line-height: 1;
}
.t-card p{
  font-size: 15px;
  color: var(--ink);
  margin:0;
  flex:1;
}
.t-person{
  display:flex; align-items:center; gap:12px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-line);
}
.t-avatar{
  width: 44px; height:44px; border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  display:flex; align-items:center; justify-content:center;
  flex: none;
}
.t-person b{ display:block; font-size: 14.5px; }
.t-person span{ display:block; font-size: 13px; color: var(--slate); }

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

/* ==========================================================================
   Additional services (dark)
   ========================================================================== */
.services-extra{ padding: 120px 0; background: var(--ink); color: var(--white); }
.svc-list{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-item{
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.svc-item .num{
  font-family: var(--f-mono);
  color: var(--teal);
  font-size: 12.5px;
  margin-bottom: 16px;
  display:block;
}
.svc-item h4{
  font-family: var(--f-body);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
}
.svc-item p{ color: rgba(255,255,255,0.62); font-size: 14px; margin:0; }

@media (max-width: 940px){ .svc-list{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .svc-list{ grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ padding: 120px 0; background: var(--paper); }
.faq-list{
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item{
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
  font-weight: 400;
  color: var(--slate-2);
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ content: "\2212"; }
.faq-item p{
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing{ padding: 120px 0; background: var(--paper-2); }
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card{
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--paper);
}
.price-card h3{
  font-family: var(--f-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li{
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.price-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.price-card p{ color: var(--slate); font-size: 14.5px; line-height: 1.6; margin: 0 0 24px; }
.price-card.highlight{
  background: var(--ink);
  border-color: var(--ink-line);
  color: var(--white);
}
.price-card.highlight h3{ color: var(--amber); }
.price-card.highlight p{ color: rgba(255,255,255,0.72); }
.price-card.highlight strong{ color: var(--white); }

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

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{ padding: 120px 0; background: var(--paper); }
.contact-wrap{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  box-shadow: 0 40px 80px -50px rgba(6,11,30,0.35);
}
.contact-info{
  background: var(--ink);
  color: var(--white);
  padding: 48px 40px;
  display:flex; flex-direction:column;
}
.contact-info h3{ font-size: 28px; text-transform: uppercase; margin-bottom: 14px; }
.contact-info > p{ color: rgba(255,255,255,0.66); font-size: 14.5px; margin-bottom: 36px; }
.contact-line{
  display:flex; gap:14px; align-items:flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--ink-line);
}
.contact-line:last-of-type{ border-bottom: 1px solid var(--ink-line); }
.contact-line .ic{
  width: 34px; height:34px; border-radius:9px;
  background: rgba(255,159,28,0.14);
  color: var(--amber);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.contact-line .ic svg{ width:16px; height:16px; }
.contact-line b{ display:block; font-size: 13px; color: rgba(255,255,255,0.5); font-weight:500; text-transform:uppercase; letter-spacing:.04em; }
.contact-line span{ font-size: 15px; }
.contact-socials{ display:flex; gap:10px; margin-top: auto; padding-top: 34px; }
.contact-socials a{
  width: 38px; height:38px; border-radius:50%;
  border: 1px solid var(--ink-line);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .2s ease, background .2s ease;
}
.contact-socials a:hover{ border-color: var(--amber); background: rgba(255,159,28,0.1); }
.contact-socials svg{ width:15px; height:15px; }

.contact-form{ background: var(--paper-2); padding: 48px 40px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 18px; }
.field label{
  display:block; font-size: 12.5px; font-weight:600;
  text-transform: uppercase; letter-spacing:.04em;
  color: var(--slate); margin-bottom: 8px;
}
.field input, .field textarea{
  width:100%;
  border: 1px solid var(--paper-line);
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(6,11,30,0.08);
}
.form-foot{ display:flex; align-items:center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-status{ font-size: 13.5px; color: var(--slate); }
.form-status.ok{ color: #1a8f5e; }
.form-status.err{ color: #d3453a; }

@media (max-width: 860px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .contact-info,
  .contact-form{ padding: 38px 32px; }
}

/* Keep Google's fixed-width reCAPTCHA contained inside the form. */
.recaptcha-wrap{
  width: 100%;
  min-height: 78px;
  overflow: hidden;
}
.g-recaptcha{
  transform-origin: top left;
}

@media (max-width: 600px){
  .contact{
    padding: 76px 0;
  }
  .contact .container{
    padding-left: 14px;
    padding-right: 14px;
  }
  .contact .section-head{
    margin-bottom: 30px;
  }
  .contact .section-head h2{
    font-size: clamp(32px, 11vw, 40px);
  }
  .contact .section-head p{
    font-size: 15px;
    line-height: 1.65;
  }
  .contact-wrap{
    border-radius: 18px;
    box-shadow: 0 26px 55px -40px rgba(6,11,30,0.45);
  }
  .contact-info{
    padding: 30px 22px 28px;
  }
  .contact-info h3{
    font-size: 25px;
    margin-bottom: 10px;
  }
  .contact-info > p{
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.65;
  }
  .contact-line{
    gap: 12px;
    padding: 14px 0;
  }
  .contact-line > div{
    min-width: 0;
  }
  .contact-line span{
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .contact-socials{
    margin-top: 0;
    padding-top: 24px;
  }
  .contact-socials a{
    width: 42px;
    height: 42px;
  }
  .contact-form{
    padding: 30px 20px 24px;
  }
  .field{
    margin-bottom: 16px;
  }
  .field label{
    margin-bottom: 7px;
    font-size: 12px;
  }
  .field input,
  .field textarea{
    min-height: 50px;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px; /* Prevents automatic zoom on iPhone. */
  }
  .field textarea{
    min-height: 150px;
    line-height: 1.55;
  }
  .recaptcha-field{
    margin-bottom: 18px;
  }
  .form-foot{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .form-foot .btn{
    width: 100%;
    min-height: 52px;
  }
  .form-status{
    width: 100%;
    line-height: 1.45;
    text-align: left;
  }
}

@media (max-width: 360px){
  .g-recaptcha{
    transform: scale(.92);
  }
  .recaptcha-wrap{
    min-height: 72px;
  }
}

@media (max-width: 350px){
  .contact .container{
    padding-left: 10px;
    padding-right: 10px;
  }
  .contact-info{
    padding-left: 18px;
    padding-right: 18px;
  }
  .contact-form{
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 330px){
  .g-recaptcha{
    transform: scale(.86);
  }
  .recaptcha-wrap{
    min-height: 67px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer{
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid var(--ink-line);
}

/* Keep horizontal container spacing. The previous shorthand removed it. */
.footer-top{ padding: 70px 24px 50px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand{ margin-bottom: 16px; }
.footer-brand p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.footer-col h5{
  font-family: var(--f-body);
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 18px;
}
.footer-col ul{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.footer-col a{
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  transition: color .2s ease;
  overflow-wrap: anywhere;
}
.footer-col a:hover{ color: var(--amber); }
.footer-bottom{
  border-top: 1px solid var(--ink-line);
  padding: 22px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a{ color: rgba(255,255,255,0.45); }

@media (max-width: 780px){
  .footer-top{
    padding: 52px 20px 18px;
  }
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-brand{
    grid-column: auto;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ink-line);
  }
  .footer-brand .brand{
    margin-bottom: 14px;
  }
  .footer-brand p{
    max-width: 460px;
    font-size: 14px;
  }
  .footer-col{
    padding: 26px 0;
    border-bottom: 1px solid var(--ink-line);
  }
  .footer-col:last-child{
    border-bottom: 0;
  }
  .footer-col h5{
    margin-bottom: 10px;
    color: var(--amber);
    font-size: 12px;
    letter-spacing: .09em;
  }
  .footer-col ul{
    gap: 0;
  }
  .footer-col li + li{
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-col a{
    display:block;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.45;
  }
  .footer-bottom{
    padding: 20px 20px 82px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    line-height: 1.5;
  }
}

@media (max-width: 420px){
  .footer-top{ padding-left: 18px; padding-right: 18px; }
  .footer-bottom{ padding-left: 18px; padding-right: 74px; }
  .footer-brand .brand img{ height: 28px; }
  .footer-brand .brand span{ font-size: 21px; }
}

/* ==========================================================================
   Back to top / reveal / focus
   ========================================================================== */
.back-to-top{
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height:46px; border-radius:50%;
  background: var(--amber); color: var(--ink);
  display:flex; align-items:center; justify-content:center;
  opacity: 0; pointer-events:none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 14px 28px -10px rgba(255,159,28,0.7);
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform: translateY(0); }

[data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].in{ opacity:1; transform: translateY(0); }

:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
