/* =============================================
   conceptstory Theme — Main Stylesheet
   ============================================= */

/* --- Google Fonts loaded via functions.php --- */

:root {
  --bg:        #f6f5f2;
  --ink:       #14181c;
  --ink-2:     #5c6671;
  --line:      #e2e0da;
  --petrol:    #0b7d96;
  --petrol-d:  #085f73;
  --navy:      #0d3b66;
  --navy-deep: #0a2740;
  --teal:      #3bc0bd;
  --lime:      #7ac20f;
  --yellow:    #ffe000;
  --font:      "Red Hat Display", -apple-system, system-ui, sans-serif;
  --maxw:      1800px;
  --head-h:    120px;
  --wrap-px:   clamp(20px, 4vw, 56px);
}

/* Regular */
body {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
}

/* Bold */
h1, h2, h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
}

/* Italic */
em {
    font-family: 'Red Hat Display', sans-serif;
    font-style: italic;
    font-weight: 400;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--petrol); color: #fff; }

/* ---- Layout ---- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--wrap-px);
}
.sec { padding: 100px 0; }
.sec-sm { padding: 60px 0; }
.center { text-align: center; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.02; letter-spacing: -0.025em; }
.display  { font-size: clamp(2.8rem, 8vw, 7rem); font-weight: 600; letter-spacing: -0.035em; line-height: .98; }
.h2       { font-size: clamp(2rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.h3       { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.02em; }
em, .it   { font-style: italic; font-weight: 400; color: var(--petrol); }
.band-petrol em, .band-navy em { color: var(--yellow); }
.band-yellow em { color: var(--petrol); }
.hl       { font-style: normal; background: linear-gradient(transparent 62%, var(--yellow) 62%); padding: 0 .08em; }
.muted    { color: var(--ink-2); }
.up       { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 600; }
.tag      { font-size: .74rem; font-weight: 600; letter-spacing: .14em; color: var(--ink-2); text-transform: uppercase; display: inline-flex; gap: .6em; align-items: center; }
.tag b    { color: var(--petrol); font-weight: 700; }
.big      { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; }

/* ---- Bands / Section backgrounds ---- */
.band-bg     { background: var(--bg); }
.band-white  { background: #fff; }
.band-petrol { background: var(--petrol); color: #fff; }
.band-navy   { background: var(--navy-deep); color: #fff; }
.band-yellow { background: var(--yellow); color: var(--ink); }
.band-line   { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- Links ---- */
.lnk {
  position: relative; display: inline-flex; align-items: center; gap: .5em;
  font-weight: 500; padding-bottom: 2px; color: var(--petrol);
}
.lnk::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1.5px; width: 100%; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.lnk:hover::after { transform: scaleX(1); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font); font-weight: 600; font-size: .98rem;
  padding: .82em 1.6em; border-radius: 100px;
  border: 1.5px solid var(--petrol); background: transparent; color: var(--petrol);
  cursor: pointer; transition: background .25s, color .25s, border-color .25s, transform .25s;
  text-decoration: none;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .25s; flex-shrink: 0; }
.btn:hover { background: var(--petrol); color: #fff; transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }
.btn-fill { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.btn-fill:hover { background: var(--petrol-d); border-color: var(--petrol-d); }
.btn-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn-dark:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-ghost-white { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- Header ---- */
#site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
#site-header.scrolled { border-color: var(--line); }

.site-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: .75rem;
  gap: 2rem;
  transition: padding .7s cubic-bezier(.16,1,.3,1);
}
#site-header.scrolled .site-nav { padding-top: .75rem; }

/* Logo mark — shrinks on scroll */
.site-brand { display: flex; align-items: flex-end; text-decoration: none; }
.site-brand .logo-mark {
  width: 128px; height: 128px;
  flex-shrink: 0;
  transition: width .7s cubic-bezier(.16,1,.3,1),
              height .7s cubic-bezier(.16,1,.3,1),
              transform .4s cubic-bezier(.16,1,.3,1);
}
#site-header.scrolled .site-brand .logo-mark { width: 64px; height: 64px; }
.site-brand:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }

/* Right column */
.nav-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

/* Wordmark — collapses via grid-rows trick (no layout jump) */
.wordmark-wrap {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows .7s cubic-bezier(.16,1,.3,1),
              opacity .5s cubic-bezier(.16,1,.3,1);
}
#site-header.scrolled .wordmark-wrap { grid-template-rows: 0fr; opacity: 0; }
.wordmark-inner { overflow: hidden; min-height: 0; }
.wordmark {
  display: block;
  font-weight: 300;
  font-size: clamp(4.4rem, 6vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .s { color: var(--petrol); }

/* Desktop nav row */
.nav-bottom-row { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links li { margin: 0; }
.nav-links a { font-weight: 400; font-size: 1rem; color: var(--ink); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.current-menu-item { color: var(--petrol); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px; width: 32px; align-items: flex-end;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 100%; }
.nav-toggle span:nth-child(3) { width: 20px; }

/* ---- Mobile menu overlay ---- */
#mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column;
  clip-path: inset(0% 0% 100% 0%);
  transition: clip-path 1s cubic-bezier(.16,1,.3,1);
  visibility: hidden;
}
#mobile-menu.open {
  clip-path: inset(0% 0% 0% 0%);
  visibility: visible;
}
.mobile-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem var(--wrap-px) 1rem;
}
.mobile-menu-head .logo-mark { width: 48px; height: 48px; }
.mobile-menu-close {
  background: none; border: none; cursor: pointer; padding: 8px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.mobile-menu-close svg { width: 28px; height: 28px; }
.mobile-nav { display: flex; flex-direction: column; padding: 2rem var(--wrap-px) 3rem; }
.mobile-nav-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1);
}
#mobile-menu.open .mobile-nav-item { opacity: 1; transform: translateY(0); }
.mobile-nav-item a {
  display: block;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: .5em 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.mobile-nav-item a:hover { color: var(--petrol); }

/* ---- Mobile breakpoint ---- */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
}

/* ---- Hero / ghero (page hero) ---- */
.ghero { padding: 80px 0 100px; border-bottom: 1px solid var(--line); }
.ghero .breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--ink-2); margin-bottom: 32px; }
.ghero .breadcrumb a { color: var(--ink-2); transition: color .2s; }
.ghero .breadcrumb a:hover { color: var(--petrol); }
.ghero .breadcrumb span.sep { opacity: .5; }
.ghero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.badge { border: 1.5px solid var(--line); padding: 6px 16px; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--ink-2); }

/* ---- Sec head ---- */
.sec-head { margin-bottom: 56px; }
.sec-head .tag { margin-bottom: 14px; display: flex; }

/* ---- KPI strip ---- */
.kpi-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; padding: 48px 0; border-top: 1px solid var(--line); }
.kpi-num { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.04em; color: var(--petrol); line-height: 1; }
.band-petrol .kpi-num { color: var(--yellow); }
.kpi-label { color: var(--ink-2); margin-top: 6px; font-size: .9rem; font-weight: 500; }
.band-petrol .kpi-label { color: rgba(255,255,255,.8); }

/* ---- Portfolio grid ---- */
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.pf-card { display: block; text-decoration: none; color: var(--ink); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: box-shadow .25s; }
.pf-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.pf-media { aspect-ratio: 3/2; overflow: hidden; background: var(--line); }
.pf-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.pf-card:hover .pf-media img { transform: scale(1.05); }
.pf-info { padding: 28px 32px 32px; }
.pf-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.pf-row h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; transition: color .2s; }
.pf-card:hover .pf-row h3 { color: var(--petrol); }
.pf-yr { color: var(--ink-2); font-size: .85rem; font-weight: 500; }
.pf-desc { color: var(--ink-2); font-size: .92rem; line-height: 1.5; margin-bottom: 20px; }
.pf-cta { display: inline-flex; align-items: center; gap: .5em; color: var(--petrol); font-size: .9rem; font-weight: 500; }

/* ---- Services list ---- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 80px 1fr 2fr auto;
  gap: 2rem; align-items: center; padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: color .2s, padding-left .2s;
}
.svc-row:hover { color: var(--petrol); padding-left: 10px; }
.svc-num { color: var(--petrol); font-weight: 700; font-size: .8rem; letter-spacing: .1em; }
.svc-title { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -0.02em; }
.svc-desc { color: var(--ink-2); font-size: .95rem; line-height: 1.5; }
.svc-arrow { color: var(--petrol); flex-shrink: 0; }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.step { padding: 0; }
.si { font-size: .75rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.step h3 { font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 16px; }
.step p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.6; margin-bottom: 20px; }
.step ul { display: flex; flex-direction: column; gap: 8px; }
.step ul li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .88rem; }
.step ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* ---- About grid ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-grid .big { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.2; }
.about-grid .about { display: flex; flex-direction: column; gap: 1.2rem; }
.about-grid .about p { color: var(--ink-2); line-height: 1.7; }

/* ---- Brands ---- */
.brands { display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); }
.brands span {
  font-size: 1.05rem; font-weight: 500; color: var(--ink-2);
  padding: 18px 0; width: 25%; border-bottom: 1px solid var(--line);
  transition: color .25s, padding-left .25s; position: relative; cursor: default;
}
.brands span::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 8px; background: var(--yellow);
  transform: translateY(-50%); transition: width .25s;
}
.brands span:hover { color: var(--petrol); padding-left: 18px; }
.brands span:hover::before { width: 8px; }

/* ---- Testimonials ---- */
.voices-track {
  display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 20px;
  scrollbar-width: thin; scrollbar-color: var(--petrol) var(--line);
}
.voices-track::-webkit-scrollbar { height: 4px; }
.voices-track::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
.voices-track::-webkit-scrollbar-thumb { background: var(--petrol); border-radius: 2px; }
.qt {
  flex: 0 0 clamp(300px, 38vw, 460px); background: #fff; padding: 40px 36px;
  position: relative; border: 1px solid var(--line); border-radius: 14px;
  display: flex; flex-direction: column; scroll-snap-align: start;
}
.qt::before {
  content: "\201C"; position: absolute; top: 16px; right: 28px;
  font-size: 3.6rem; line-height: 1; color: var(--yellow); font-weight: 700; font-family: Georgia, serif;
}
.qt p { font-size: 1.08rem; letter-spacing: -0.01em; line-height: 1.45; margin-bottom: 24px; flex: 1; }
.qt .src { font-size: .85rem; font-weight: 700; }
.qt .src span { display: block; color: var(--ink-2); font-weight: 400; margin-top: 2px; }
.qt.feat { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.qt.feat::before { color: var(--yellow); }
.qt.feat .src span { color: rgba(255,255,255,.78); }

/* ---- Blog grid ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.post { display: block; text-decoration: none; color: var(--ink); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: box-shadow .25s; }
.post:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.post-media { aspect-ratio: 3/2; overflow: hidden; background: var(--petrol); position: relative; }
.post-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.18), transparent 60%); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.post:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 28px 28px 32px; }
.post-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; }
.cat { background: var(--petrol); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .05em; }
.post-time { color: var(--ink-2); font-size: .82rem; }
.post h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 12px; transition: color .2s; }
.post:hover h3 { color: var(--petrol); }
.post-excerpt { color: var(--ink-2); font-size: .9rem; line-height: 1.55; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 980px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font); color: var(--ink); padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--petrol); }
.faq-q span { font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 500; letter-spacing: -0.015em; line-height: 1.3; }
.faq-ic {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  color: var(--ink-2); transition: background .2s, border-color .2s, color .2s;
  font-size: 1.2rem; font-weight: 400; line-height: 1;
}
.faq-item.open .faq-q { color: var(--petrol); }
.faq-item.open .faq-ic { background: var(--petrol); border-color: var(--petrol); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { color: var(--ink-2); font-size: 1rem; padding: 0 60px 28px 0; max-width: 80ch; line-height: 1.7; }

/* ---- Contact section ---- */
.contact-band { background: var(--yellow); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 40px; }
.cinfo .k { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(20,24,28,.5); margin-bottom: 4px; }
.cinfo a, .cinfo p { font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.cinfo a { transition: color .2s; }
.cinfo a:hover { color: var(--petrol); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.cf-field { display: flex; flex-direction: column; }
.cf-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(20,24,28,.5); margin-bottom: 8px; }
.cf-input, .cf-textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1.5px solid rgba(20,24,28,.3);
  padding: 10px 0; font-size: 1rem; color: var(--ink); font-family: var(--font); outline: none; resize: none;
  transition: border-color .2s;
}
.cf-input:focus, .cf-textarea:focus { border-bottom-color: var(--petrol); }
.cf-check { display: flex; align-items: flex-start; gap: 12px; font-size: .88rem; color: var(--ink); cursor: pointer; }
.cf-check input { margin-top: 3px; accent-color: var(--petrol); }
.cf-check a { color: var(--petrol); }

/* ---- Service detail ---- */
.svc-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--bg); border-radius: 10px; font-weight: 500; font-size: .98rem; }
.check-icon { color: var(--petrol); flex-shrink: 0; max-width: 2rem }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.approach-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: 12px; transition: box-shadow .25s, transform .25s; }
.approach-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-4px); }
.approach-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.approach-card p { color: var(--ink-2); font-size: .9rem; line-height: 1.6; }
.next-svc-card {
  display: block; padding: 28px 32px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; text-decoration: none; color: #fff; transition: background .2s, border-color .2s;
}
.next-svc-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #fff; }
.next-svc-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.next-svc-num { font-size: .78rem; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.next-svc-card h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.next-svc-card p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.5; }

/* ---- Footer ---- */
#site-footer { background: var(--navy-deep); color: #fff; padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem 4rem; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand .brand-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 24px; text-decoration: none; }
.footer-brand .brand-logo img { width: 52px; height: 52px; }
.footer-brand .brand-logo span { font-weight: 300; font-size: 1.8rem; letter-spacing: -0.02em; color: #fff; }
.footer-brand .brand-logo .s { color: var(--yellow); }
.footer-brand .tagline { font-size: 1.1rem; font-weight: 600; line-height: 1.2; max-width: 340px; margin-bottom: 12px; }
.footer-brand .subtagline { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 340px; line-height: 1.6; margin-bottom: 28px; }
.footer-col-title { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .95rem; transition: color .2s; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-links .addr { color: rgba(255,255,255,.55); font-size: .95rem; line-height: 1.6; }
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--yellow); }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .85rem; }

/* ---- CTA Badge (fixed rotating) ---- */
.cta-badge {
  position: fixed; right: 30px; bottom: 30px; z-index: 50;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--petrol); color: #fff; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(11,125,150,.35);
  transition: transform .3s;
}
.cta-badge:hover { transform: scale(1.08); }
.cta-badge svg { position: absolute; width: 100%; height: 100%; animation: spin-badge 16s linear infinite; }
.cta-badge-arrow { position: relative; z-index: 1; }
@keyframes spin-badge { to { transform: rotate(360deg); } }

/* ---- Scroll reveal ---- */
.rv, .rv-l, .rv-r { opacity: 0; transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.rv     { transform: translateY(40px); }
.rv-l   { transform: translateX(-40px); }
.rv-r   { transform: translateX(40px); }
.rv.in, .rv-l.in, .rv-r.in { opacity: 1; transform: none; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--ink-2); margin-bottom: 32px; }
.breadcrumb a { color: var(--ink-2); transition: color .2s; text-decoration: none; }
.breadcrumb a:hover { color: var(--petrol); }
.breadcrumb .sep { opacity: .5; }

/* ---- WordPress Core ---- */
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.wp-block-image img { border-radius: 6px; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.2rem; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 2rem 0 1rem; }
.entry-content ul { list-style: disc; padding-left: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.4em; }
.entry-content a { color: var(--petrol); text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid var(--petrol); padding-left: 1.4em; color: var(--ink-2); font-style: italic; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .pf-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .svc-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 60px 1fr; gap: 1rem; }
  .svc-row .svc-desc, .svc-row .svc-arrow { display: none; }
  .brands span { width: 50%; }
  .approach-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .brands span { width: 100%; }
  .qt { flex: 0 0 88vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sec { padding: 60px 0; }
}
