/* Eco Friendly Solutions — website
   Same palette as the booking app: deep teal ground, gold for anything
   the visitor should act on. */

:root {
  --ink:      #E8F2F1;
  --dim:      #9FB6B7;
  --faint:    #7B9496;
  --paper:    #061C20;
  --paper-2:  #0B2A2F;
  --surface:  #0F3238;
  --surface-2:#143D44;
  --teal:     #0F5257;
  --teal-lit: #125A60;
  --gold:     #D9AE3B;
  --gold-lit: #E6BC46;
  --gold-dk:  #A9821F;
  --mint:     #45C795;
  --line:     #1E4A50;
  --shadow:   0 10px 30px rgba(0,0,0,.45);
  --shadow-sm:0 4px 14px rgba(0,0,0,.35);
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, #0D3940 0%, rgba(13,57,64,0) 60%),
    var(--paper);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; letter-spacing: .04em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mint); }

/* --- skip link, for keyboard and screen-reader users --------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #1A1206; padding: 10px 16px;
  border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

/* --- header -------------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,28,32,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { height: 38px; width: auto; background: #F4F7F5; border-radius: 8px; padding: 4px 7px; }
.brand b { font-size: 15px; font-weight: 600; letter-spacing: .2px; display: block; line-height: 1.2; }
.brand span { font-size: 11px; color: var(--faint); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--dim); text-decoration: none; font-size: 14px;
  padding: 8px 12px; border-radius: 7px;
}
.nav a:hover { color: var(--ink); background: rgba(255,255,255,.05); }

.btn {
  display: inline-block; border: 1px solid transparent; border-radius: 9px;
  padding: 11px 20px; font: inherit; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .1s, box-shadow .15s, background .15s;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-lit) 0%, #C99C23 100%);
  color: #1A1206;
  box-shadow: 0 5px 16px rgba(217,174,59,.22), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-gold:hover { background: linear-gradient(180deg, #F0C955 0%, #D5A72B 100%); }
.btn-gold:active { transform: translateY(1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn:focus-visible, .nav a:focus-visible, .brand:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; color: var(--ink); padding: 8px 11px; font-size: 17px; cursor: pointer;
}

/* --- hero ---------------------------------------------------------------- */
.hero { padding: 74px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); margin-bottom: 16px;
}
h1 {
  font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 0 0 18px;
  font-weight: 700; letter-spacing: -.02em;
}
.lede { font-size: clamp(16px, 2vw, 19px); color: var(--dim); margin: 0 0 28px; max-width: 34em; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-note { font-size: 13px; color: var(--faint); }

.card-panel {
  background: linear-gradient(155deg, var(--teal-lit) 0%, #0C3F45 55%, #082E34 100%);
  border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow);
}
.card-panel h2 { font-size: 16px; margin: 0 0 16px; font-weight: 600; }
.tick { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 14px; color: rgba(232,242,241,.9); }
.tick::before { content: "✓"; color: var(--gold); font-weight: 700; line-height: 1.5; }
.card-panel .fine { font-size: 12px; color: rgba(232,242,241,.6); margin: 16px 0 0; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); }

/* --- stat band ----------------------------------------------------------- */
.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(11,42,47,.55); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat { padding: 26px 16px; text-align: center; }
.stat b { display: block; font-family: 'IBM Plex Mono', monospace; font-size: clamp(22px, 3vw, 30px); color: var(--gold); letter-spacing: -.01em; }
.stat span { display: block; font-size: 12px; color: var(--dim); margin-top: 6px; }

/* --- generic sections ---------------------------------------------------- */
section { padding: 72px 0; }
.sec-head { max-width: 44em; margin-bottom: 40px; }
.sec-head .eyebrow { margin-bottom: 12px; }
h2.sec-title { font-size: clamp(25px, 3.4vw, 34px); line-height: 1.2; margin: 0 0 14px; font-weight: 700; letter-spacing: -.015em; }
.sec-head p { color: var(--dim); margin: 0; font-size: 16px; }

.grid { display: grid; gap: 18px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 13px;
  padding: 24px; box-shadow: var(--shadow-sm);
  background-image: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,0) 42%);
}
.card h3 { font-size: 17px; margin: 0 0 9px; font-weight: 600; }
.card p { color: var(--dim); font-size: 14.5px; margin: 0; }
.card .ic { font-size: 24px; display: block; margin-bottom: 13px; }

/* numbered steps */
.step { position: relative; padding-left: 60px; }
.step .n {
  position: absolute; left: 0; top: 2px;
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(217,174,59,.13); border: 1px solid rgba(217,174,59,.32);
  color: var(--gold); font-family: 'IBM Plex Mono', monospace; font-weight: 500;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}

/* what we take */
.take { display: flex; flex-wrap: wrap; gap: 10px; }
.take span {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 9px 16px; font-size: 14px; color: var(--ink);
}

/* business block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px; color: var(--dim); font-size: 15px; }
.checklist li::before { content: "✓"; color: var(--mint); font-weight: 700; flex-shrink: 0; }
.checklist li b { color: var(--ink); font-weight: 600; }

/* compliance cards */
.cert { border-left: 3px solid var(--gold); }
.cert .num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--gold); margin: 4px 0 9px; word-break: break-word; }

/* coverage */
.places { display: flex; flex-wrap: wrap; gap: 10px; }
.places span {
  background: rgba(69,199,149,.10); border: 1px solid rgba(69,199,149,.28);
  color: var(--ink); border-radius: 8px; padding: 10px 17px; font-size: 15px;
}

/* call to action strip */
.cta {
  background: linear-gradient(155deg, var(--teal-lit) 0%, #0C3F45 60%, #082E34 100%);
  border: 1px solid var(--line); border-radius: 18px; padding: 46px 40px;
  box-shadow: var(--shadow); text-align: center;
}
.cta h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 0 0 12px; font-weight: 700; }
.cta p { color: rgba(232,242,241,.82); margin: 0 auto 26px; max-width: 42em; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card a { color: var(--ink); text-decoration: none; font-size: 17px; font-weight: 600; }
.contact-card a:hover { color: var(--gold); }
.contact-card .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 7px; }
.contact-card address { font-style: normal; color: var(--dim); font-size: 14.5px; line-height: 1.65; }

/* footer */
.site-foot { border-top: 1px solid var(--line); padding: 44px 0 30px; margin-top: 20px; background: rgba(11,42,47,.5); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; margin-bottom: 30px; }
.site-foot h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin: 0 0 14px; font-weight: 600; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot a { color: var(--dim); text-decoration: none; font-size: 14px; }
.site-foot a:hover { color: var(--gold); }
.site-foot .about { color: var(--dim); font-size: 14px; max-width: 30em; }
.legal {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--faint);
}

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #08252A; border-bottom: 1px solid var(--line); padding: 10px 16px 18px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .menu-btn { display: block; }
  .head-cta { display: none; }
}
@media (max-width: 560px) {
  .g3, .g4, .g2 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
  .hero { padding: 48px 0 44px; }
  .cta { padding: 34px 22px; }
  .brand span { display: none; }
}

/* --- header fit: keep nav items and the button on one line each ---------- */
.nav a, .head-cta, .brand b, .brand span { white-space: nowrap; }
@media (min-width: 901px) and (max-width: 1150px) {
  .nav a { font-size: 13px; padding: 8px 9px; }
  .head-cta { padding: 10px 15px; }
  .brand span { display: none; }
}
