/* ============================================================
   Freshius Services Group — shared stylesheet
   Palette: rich black + brass gold on warm white
   Type: Fraunces (display) / Inter (body)
   ============================================================ */

:root{
  --black:      #0E0D0C;
  --black-soft: #171512;
  --charcoal:   #26241F;
  --ink:        #2E2B24;
  --text-soft:  #6B6558;
  --white:      #FFFFFF;
  --paper:      #FAF9F6;
  --paper-dim:  #F3F1EA;
  --border:     #E7E2D6;
  --border-on-black: #38352C;
  --gold:       #B08A2E;
  --gold-deep:  #8C6D22;
  --gold-light: #D9B65B;
  --gold-pale:  #F4E9C9;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 3px;
}

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

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

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--black);
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3{ font-size: 1.32rem; font-weight: 600; }
h4{ font-size: 1.08rem; font-weight: 600; }

p{ margin: 0 0 1em; color: var(--charcoal); max-width: 62ch; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin:0; padding:0; list-style:none; }

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

section{ padding: 92px 0; }
@media (max-width: 820px){ section{ padding: 64px 0; } }

.eyebrow-note{ color: var(--gold-deep); font-family: var(--sans); font-weight: 600; font-size: 0.94rem; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-gold{
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover{ background: var(--gold-light); }
.btn-line{
  border-color: var(--border-on-black);
  color: var(--white);
}
.btn-line:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-line.on-light{ border-color: var(--charcoal); color: var(--charcoal); }
.btn-line.on-light:hover{ border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-block{ width: 100%; justify-content: center; }
.btn:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid var(--border-on-black);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo{
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo span{ color: var(--gold-light); }
.logo small{
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.logo-mark{
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 1px;
}
.logo-text .l1{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--white);
}
.logo-text .l2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}
footer .logo-mark{ width: 50px; height: 50px; }
footer .logo-text .l1{ font-size: 1.24rem; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  color: #D8D4C8;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-actions{ display:flex; align-items:center; gap: 18px; }
.nav-phone{
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone svg{ width:16px; height:16px; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-panel{
  display: none;
  background: var(--black);
  border-top: 1px solid var(--border-on-black);
  padding: 10px 28px 26px;
}
.mobile-panel a{
  display: block;
  padding: 13px 0;
  color: #D8D4C8;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--border-on-black);
}
.mobile-panel a:last-child{ border-bottom:none; }
body.nav-open .mobile-panel{ display: block; }
body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-toggle{ display: block; }
  .nav-phone span.txt{ display: none; }
}

/* ---------- hero ---------- */
.hero{
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 78px;
}
.hero-copy p.lede{
  color: #C9C4B5;
  font-size: 1.14rem;
  max-width: 46ch;
}
.hero h1{ color: var(--white); }
.hero h1 em{
  font-style: italic;
  color: var(--gold-light);
}
.hero-ctas{
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-trustline{
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--border-on-black);
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  color: #A8A290;
  font-size: 0.9rem;
}
.hero-trustline strong{ color: var(--gold-light); display:block; font-family: var(--serif); font-size:1.3rem; font-weight:600;}
.hero-media{
  position: relative;
  border: 1px solid var(--border-on-black);
}
.hero-media img{ width: 100%; height: 460px; object-fit: cover; }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  box-shadow: inset 0 0 0 1px rgba(184,138,46,.25);
  pointer-events:none;
}
.hero-tag{
  position:absolute;
  left: -1px; bottom: -1px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  display:flex;
  align-items:center;
  gap:10px;
}
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; padding-top: 52px; }
  .hero-media img{ height: 320px; }
}

/* ---------- page header (interior pages) ---------- */
.page-header{
  background: var(--black);
  color: var(--white);
  padding: 64px 0 54px;
}
.page-header .crumb{
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  display:block;
}
.page-header h1{ color: var(--white); margin-bottom: 14px; }
.page-header p{ color: #C9C4B5; font-size: 1.06rem; max-width: 60ch; }

/* ---------- trust strip ---------- */
.trust-strip{
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item{
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child{ border-right:none; }
.trust-item svg{ width: 26px; height: 26px; color: var(--gold-deep); }
.trust-item h4{ font-size: 0.98rem; margin:0; }
@media (max-width: 980px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .trust-item{ border-right:none; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
}

/* ---------- section headings ---------- */
.section-head{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head .eyebrow-note{ display:block; margin-bottom: 10px; }
.section-head h2{ margin-bottom: 0; }
.section-head p{ color: var(--text-soft); }
@media (max-width: 820px){
  .section-head{ grid-template-columns: 1fr; }
}

/* ---------- services ---------- */
.services-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-item{
  background: var(--white);
  padding: 34px 30px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color .18s ease;
}
.service-item:hover{ background: var(--paper); }
.service-item .num{
  font-family: var(--serif);
  color: var(--border);
  font-size: 2.1rem;
  font-weight: 600;
  line-height:1;
}
.service-item h3{ margin: 0; }
.service-item p{ color: var(--text-soft); font-size: 0.97rem; margin-bottom: 4px; }
.service-item .learn{
  margin-top: auto;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.service-item:hover .learn{ border-bottom-color: var(--gold-deep); }
@media (max-width: 980px){ .services-list{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .services-list{ grid-template-columns: 1fr; } }

/* ---------- why choose (split feature) ---------- */
.why-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-media{ position: relative; }
.why-media img{ width:100%; height: 520px; object-fit: cover; }
.why-media .badge{
  position:absolute; top: -1px; right:-1px;
  background: var(--black);
  color: var(--gold-light);
  padding: 18px 22px;
  font-family: var(--serif);
  text-align:center;
  border: 1px solid var(--gold-deep);
}
.why-media .badge b{ display:block; font-size:1.9rem; }
.why-media .badge small{ font-family: var(--sans); color:#C9C4B5; font-size:0.72rem; }
.why-points{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-top: 30px;
}
.why-point{ padding-left: 20px; border-left: 2px solid var(--gold); }
.why-point h4{ margin-bottom: 6px; }
.why-point p{ color: var(--text-soft); font-size: 0.94rem; margin: 0; }
@media (max-width: 980px){
  .why-grid{ grid-template-columns: 1fr; }
  .why-media img{ height: 320px; }
  .why-points{ grid-template-columns: 1fr; }
}

/* ---------- process (real sequence -> numbered) ---------- */
.process-band{
  background: var(--black);
  color: var(--white);
}
.process-band h2{ color: var(--white); }
.process-band .section-head p{ color: #B8B2A0; }
.process-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-on-black);
}
.process-step{
  padding: 30px 26px 0;
  border-right: 1px solid var(--border-on-black);
}
.process-step:last-child{ border-right:none; }
.process-step .step-num{
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.process-step h4{ color: var(--white); margin-bottom: 8px; }
.process-step p{ color: #A8A290; font-size: 0.92rem; }
@media (max-width: 980px){
  .process-steps{ grid-template-columns: 1fr 1fr; }
  .process-step{ border-right:none; border-bottom: 1px solid var(--border-on-black); padding-bottom: 26px; }
}
@media (max-width: 620px){ .process-steps{ grid-template-columns: 1fr; } }

/* ---------- industries ---------- */
.industries-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card{
  border: 1px solid var(--border);
  padding: 26px 22px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.industry-card svg{ width: 28px; height: 28px; color: var(--gold-deep); }
.industry-card h4{ margin: 0; }
@media (max-width: 980px){ .industries-grid{ grid-template-columns: repeat(2,1fr); } }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(180deg, var(--black) 0%, #1B1712 100%);
  color: var(--white);
  text-align: left;
  padding: 90px 0;
}
.cta-band .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); max-width: 16ch; margin-bottom: 12px; }
.cta-band p{ color: #C9C4B5; max-width: 46ch; }
.cta-band .cta-actions{ display:flex; gap:16px; flex-wrap: wrap; }

/* ---------- forms ---------- */
.quote-panel{
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 0.86rem; font-weight: 600; color: var(--charcoal); }
.field input, .field select, .field textarea{
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,138,46,.15);
}
.form-note{ font-size: 0.85rem; color: var(--text-soft); margin-top: 14px; }

/* ---------- testimonial-free reassurance strip ---------- */
.assurance{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.assurance .container{
  display:flex;
  align-items:center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.assurance svg{ width:22px; height:22px; color: var(--gold-deep); flex-shrink:0; }

/* ---------- footer ---------- */
footer{
  background: var(--black);
  color: #A8A290;
  padding: 70px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--border-on-black);
}
.footer-brand .logo{ margin-bottom: 14px; }
.footer-brand p{ color: #948E7C; font-size: 0.93rem; }
.footer-col h4{ color: var(--white); font-size: 0.92rem; margin-bottom: 18px; }
.footer-col a{
  display:block;
  color: #A8A290;
  font-size: 0.93rem;
  padding: 7px 0;
  transition: color .15s ease;
}
.footer-col a:hover{ color: var(--gold-light); }
.footer-social{ display:flex; gap: 12px; margin-top: 16px; }
.footer-social a{
  width: 36px; height:36px;
  border: 1px solid var(--border-on-black);
  display:flex; align-items:center; justify-content:center;
  padding: 0;
}
.footer-social a:hover{ border-color: var(--gold); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding-top: 26px;
  font-size: 0.85rem;
  color: #6E6959;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* ---------- content is visible immediately; no scroll-hide mechanism.
   (A JS-driven reveal-on-scroll was tried and removed: it introduced a
   real risk of sections staying invisible on fast scrolls or if JS
   misfired, which is unacceptable on a lead-generation site.) ---------- */

/* ---------- work gallery strip ---------- */
.gallery-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.gallery-strip figure{
  margin: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.gallery-strip img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-strip figure:hover img{ transform: scale(1.04); }
.gallery-strip figcaption{
  padding: 12px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--charcoal);
  border-top: 1px solid var(--border);
  background: var(--paper);
}
@media (max-width: 820px){
  .gallery-strip{ grid-template-columns: 1fr; }
}

/* ---------- service detail thumbnail ---------- */
.svc-thumb{
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

/* ---------- misc page bits ---------- */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:start;
}
@media (max-width: 900px){ .two-col{ grid-template-columns: 1fr; gap: 34px; } }

.divider-gold{
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0;
}

.pill-list li{
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--charcoal);
}
.pill-list li:before{
  content:"";
  position:absolute; left:0; top:19px;
  width:8px; height:8px;
  background: var(--gold);
}
.pill-list li:last-child{ border-bottom:none; }

.stat-row{
  display:flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.stat-row div strong{
  display:block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--black);
}
.stat-row div span{ color: var(--text-soft); font-size: 0.88rem; }

.mobile-call-bar{
  display:none;
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 300;
  background: var(--black);
  border-top: 1px solid var(--gold-deep);
  padding: 12px 18px;
  align-items:center;
  justify-content:center;
}
.mobile-call-bar a{
  display:flex; align-items:center; gap:10px;
  color: var(--black);
  background: var(--gold);
  padding: 13px 22px;
  font-weight:700;
  width:100%;
  justify-content:center;
  border-radius: var(--radius);
}
@media (max-width: 640px){
  .mobile-call-bar{ display:flex; }
  body{ padding-bottom: 66px; }
}
