/* ============================================================
   SEARCHLY — Global Stylesheet
   Design: Premium boutique, personal, tech-forward
   Fonts: Space Grotesk (Google Fonts)
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --bg:            #FAFAF7;
  --surface:       #F2EDE7;
  --surface-dark:  #1D3A2C;
  --text:          #1C1C1A;
  --text-muted:    #6B6860;
  --text-on-dark:  #F2EDE7;
  --accent:        #1D3A2C;
  --accent-mid:    #2D5240;
  --accent-hover:  #3A6B52;
  --accent-light:  #E0EDE5;
  --border:        #E0D8D0;
  --white:         #FFFFFF;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-full:   999px;
  --shadow-sm:     0 1px 3px rgba(28,28,26,.06), 0 1px 2px rgba(28,28,26,.04);
  --shadow-md:     0 4px 16px rgba(28,28,26,.08), 0 2px 6px rgba(28,28,26,.04);
  --shadow-lg:     0 12px 40px rgba(28,28,26,.1), 0 4px 12px rgba(28,28,26,.06);
  --transition:    all .24s cubic-bezier(.4,0,.2,1);
  --font:          'Space Grotesk', sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;
  --max-w:         1200px;
  --nav-h:         72px;
}

/* ---- 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(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- Typography Scale ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
/* Display serif contrast for em inside headings */
h1 em, h2 em, h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
h2 em { color: var(--accent); }
.section--dark h1 em,
.section--dark h2 em,
.hero--compact h1 em { color: var(--accent-light); }
p  { max-width: 68ch; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}
.section--dark .section-header > h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -.05em;
}
.section--surface { background: var(--surface); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.section--dark .section-label { color: var(--accent-light); }
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header p { margin-top: 1rem; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85em 1.8em;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: -.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--text-on-dark);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--text-on-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--light {
  background: var(--text-on-dark);
  color: var(--accent);
}
.btn--light:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo span {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .1rem;
}
.nav--light:not(.scrolled) .nav__logo { color: var(--white); }
.nav--light:not(.scrolled) .nav__logo span { color: rgba(255,255,255,.6); }
.nav--light:not(.scrolled) .nav__links a { color: rgba(255,255,255,.85); }
.nav--light:not(.scrolled) .nav__links a:hover { color: var(--white); }
.nav--light:not(.scrolled) .nav__cta { opacity: .9; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav__cta { font-size: .88rem; padding: .6em 1.4em; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
  border-radius: 1px;
}
.nav--light:not(.scrolled) .nav__hamburger span { background: var(--white); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}
.nav__mobile-links a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  letter-spacing: -.03em;
}
.nav__mobile-links a:hover { color: var(--accent); padding-left: .5rem; }
.nav__mobile-footer {
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.nav__mobile-footer a { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  padding-left: max(clamp(1.25rem, 5vw, 3rem), calc((100vw - var(--max-w)) / 2 + clamp(1.25rem, 5vw, 3rem)));
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-hover);
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__image::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
}

/* ---- Compact hero (sub-pages) ---- */
.hero--compact {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  background: var(--surface-dark);
  color: var(--white);
  padding-top: calc(var(--nav-h) + clamp(2rem, 4vw, 3.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero--compact .hero__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.hero--compact .hero__eyebrow { color: var(--accent-light); opacity: .7; }
.hero--compact h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -.04em;
}
.hero--compact .lead { color: rgba(255,255,255,.7); max-width: 60ch; margin-top: 1rem; }

/* ============================================================
   ABOUT STRIP (home page)
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.about-strip__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-strip__image:hover img { transform: scale(1.03); }
.about-strip__content { padding: 1rem 0; }
.about-strip__content h2 { margin-bottom: 1.25rem; }
.about-strip__content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-strip__content .btn { margin-top: 1.5rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  border: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 2.5rem;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.service-card:nth-child(2n) { border-right: none; }
.service-card:last-child { border-bottom: none; }
.service-card:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.service-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--accent-light);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.35rem; letter-spacing: -.03em; }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .5rem;
  transition: var(--transition);
}
.service-card__link:hover { gap: .8rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--accent);
  margin-top: .15rem;
  flex-shrink: 0;
}
.process-step__num::before { content: counter(step, decimal-leading-zero); }
.process-step__content h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.process-step__content p { color: var(--text-muted); font-size: .9rem; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.area-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-card__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: .5rem;
}
.area-card h3 {
  font-size: 1rem;
  font-weight: 600;
}
.area-card p {
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: .4rem;
  line-height: 1.5;
}

/* ============================================================
   WHY / USP SECTION
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}
.usp-item {
  padding: 2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.usp-item__num {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  color: rgba(255,255,255,.07);
  letter-spacing: -.06em;
  line-height: .9;
  margin-bottom: -.5rem;
  display: block;
}
.usp-item h3 { font-size: 1rem; color: var(--text-on-dark); margin-bottom: .5rem; }
.usp-item p { font-size: .875rem; color: rgba(242,237,231,.65); line-height: 1.6; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.4;
  color: var(--text);
  quotes: '\201C' '\201D';
}
.quote-block blockquote::before { content: open-quote; color: var(--accent); font-size: 1.5em; line-height: 0; vertical-align: -.3em; margin-right: .1em; }
.quote-block blockquote::after  { content: close-quote; color: var(--accent); font-size: 1.5em; line-height: 0; vertical-align: -.3em; margin-left: .1em; }
.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  font-size: .88rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ============================================================
   LINKEDIN CTA STRIP
   ============================================================ */
.linkedin-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.linkedin-strip__icon {
  width: 48px;
  height: 48px;
  background: #0077b5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.linkedin-strip__icon svg { fill: white; width: 24px; height: 24px; }
.linkedin-strip__text { flex: 1; }
.linkedin-strip__text strong { display: block; font-size: 1rem; margin-bottom: .2rem; }
.linkedin-strip__text span { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.faq__trigger:hover { color: var(--accent); }
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq__body p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}
.faq__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: .4rem; }
.form__group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: .8em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: .95rem;
  transition: var(--transition);
  appearance: none;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,58,44,.1);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__submit { align-self: flex-start; margin-top: .5rem; }
.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--accent-light);
  border-radius: var(--radius-md);
}
.form__success svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.form__success h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.form__success p { color: var(--text-muted); font-size: .9rem; }

/* Contact split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info { padding: 2.5rem; background: var(--surface-dark); color: var(--text-on-dark); border-radius: var(--radius-lg); }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info__item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__item-icon svg { width: 18px; height: 18px; color: var(--text-on-dark); }
.contact-info__item-text span {
  display: block;
  font-size: .78rem;
  color: rgba(242,237,231,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: .2rem;
}
.contact-info__item-text a,
.contact-info__item-text p {
  color: var(--text-on-dark);
  font-size: .95rem;
}
.contact-info__item-text a:hover { color: var(--accent-light); }

/* ============================================================
   ABOUT PAGE (om-searchly)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-grid__photo {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-grid__content h2 { margin-bottom: 1.25rem; }
.about-grid__content p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-value {
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}
.about-value h4 { font-size: .9rem; margin-bottom: .3rem; }
.about-value p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   IMAGE GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-strip__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-strip__item:first-child { aspect-ratio: 3/5; }
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-strip__item:hover img { transform: scale(1.04); }

/* ============================================================
   BLOG / KUNSKAP
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.post-card h3 { font-size: 1.1rem; margin-bottom: .75rem; line-height: 1.3; }
.post-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.post-card__link:hover { gap: .8rem; }

/* Blog article */
.section--article { padding-top: 2.5rem; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.article-content { max-width: 720px; }
.article-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; color: var(--accent); }
.article-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.article-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.article-content strong { color: var(--text); }
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { font-size: .9rem; margin-bottom: 1rem; }
.sidebar-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sidebar-card__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.sidebar-card__author-info strong { display: block; font-size: .9rem; }
.sidebar-card__author-info span { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: var(--text-on-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__brand {}
.footer__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--white);
  display: block;
  margin-bottom: .5rem;
}
.footer__tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 32ch;
}
.footer__col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--white); }
.footer__contact svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__bottom a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer__bottom a:hover { color: var(--white); }
.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}
.footer__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.65); }

/* ============================================================
   TICKER / MARQUEE STRIP
   ============================================================ */
.ticker {
  overflow: hidden;
  background: var(--accent);
  color: var(--text-on-dark);
  padding: .9rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track > span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.ticker__sep {
  color: rgba(255,255,255,.3) !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-scale.revealed { opacity: 1; transform: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.text-accent  { color: var(--accent); }
.text-white   { color: var(--white); }
.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: .3em .8em;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span::before { content: '/'; margin-right: .5rem; }
/* Breadcrumb on light hero background */
.hero__content .breadcrumb { color: var(--text-muted); }
.hero__content .breadcrumb a { color: var(--accent); }
.hero__content .breadcrumb a:hover { color: var(--accent-hover); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    position: relative;
    min-height: 96svh;
    display: flex;
    align-items: flex-end;
  }
  .hero__image {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__image img { height: 100%; object-position: top center; }
  .hero__image::after { display: none; }
  .hero__image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(18,36,26,.78) 25%, rgba(29,58,44,.08) 70%, transparent 100%);
    pointer-events: none;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    background: none;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 7vw, 5rem);
    min-height: auto;
    justify-content: flex-end;
  }
  .hero h1 { color: var(--white); }
  .hero h1 em { color: rgba(224,237,229,.92); }
  .hero .hero__eyebrow { color: rgba(255,255,255,.65); }
  .hero .hero__eyebrow::before { background: rgba(255,255,255,.4); }
  .hero__sub { color: rgba(255,255,255,.72); }
  .hero .btn--ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
  .hero .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-strip__image {
    aspect-ratio: 16/9;
    max-height: 420px;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__photo {
    position: relative;
    top: 0;
    aspect-ratio: 16/9;
    max-height: 420px;
  }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: relative; top: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip__item:first-child { display: none; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .form__row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip__item { aspect-ratio: 4/3; }
  .gallery-strip__item:first-child { display: block; aspect-ratio: 4/3; }
  .usp-grid { grid-template-columns: 1fr; }
  .linkedin-strip { flex-direction: column; text-align: center; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .contact-info { padding: 1.5rem; }
  .hero--compact { min-height: 40vh; }
  .service-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .footer, .btn { display: none; }
  body { background: white; color: black; }
}

#posts-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}