/* ===================================================================
   Fiona Raikes — fionaraikes.com
   Brand tokens
=================================================================== */
:root {
  --charcoal: #1C1C1C;
  --sage: #3D7A6E;
  --sage-dark: #2F5F55;
  --lime: #E3EC84;
  --teal: #49B0B6;
  --off-white: #F7F5F1;
  --white: #FFFFFF;

  --font-headline: 'Oswald', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  --max-width: 1180px;
  --max-width-narrow: 760px;
}

/* ===================================================================
   Reset
=================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ===================================================================
   Layout helpers
=================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: var(--max-width-narrow); }
.center { text-align: center; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.label-sage { color: var(--sage); }
.label-lime { color: var(--lime); }

.handwritten-label {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--sage);
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-bottom: 1.25rem;
}

.statement-line {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--sage);
  line-height: 1.3;
}

.body-lg { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.body-strong { font-weight: 600; }

.text-lime { color: var(--lime); }
.text-white { color: var(--white); }

.tbc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal);
  opacity: 0.8;
}

/* ===================================================================
   Buttons
=================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); }

.btn-lime {
  background: var(--lime);
  color: var(--charcoal);
}
.btn-lime:hover { background: #d9e368; }

.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

/* ===================================================================
   Header / Nav
=================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid rgba(28,28,28,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1500px;
}

.wordmark {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-nav ul {
  display: flex;
  gap: 2rem;
}

.site-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.site-nav a:not(.btn):hover { color: var(--sage); }

.nav-btn-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===================================================================
   Hero
=================================================================== */
.hero {
  background: var(--charcoal);
  color: var(--white);
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.hero-headline {
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  color: var(--white);
  margin: 0 auto 1.5rem;
  white-space: normal;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 42ch;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 1.5rem;
}

.hero-annotation {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--lime);
  transform: rotate(-2deg);
  margin-top: 2.25rem;
}

.hero-label {
  font-size: 0.9rem;
  color: var(--teal);
  margin-top: 1.25rem;
}

/* ===================================================================
   Services banner strip (scrolling ticker)
=================================================================== */
.services-banner {
  background: var(--sage);
  padding: 1.5rem 0;
  overflow: hidden;
}

.banner-track {
  display: flex;
  width: max-content;
  animation: banner-scroll 26s linear infinite;
}

.services-banner:hover .banner-track { animation-play-state: paused; }

@keyframes banner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.services-banner ul {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.services-banner li {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  white-space: nowrap;
  padding: 0 1.5rem;
}

.banner-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  margin-left: 1.5rem;
}

/* ===================================================================
   Two-column sections (solution / about)
=================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.two-col-main p { max-width: 60ch; }

.pull-quote {
  border-left: 4px solid var(--sage);
  padding: 0.25rem 0 0.25rem 1.75rem;
  font-family: var(--font-headline);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--charcoal);
}

.pull-quote-boxed {
  background: var(--off-white);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 1.05rem;
  max-width: 46ch;
}
.pull-quote-boxed + .pull-quote-boxed { margin-top: 1.25rem; }

.pull-quote-boxed cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-top: 0.75rem;
}
.pull-quote-boxed cite a { color: var(--teal); }
.pull-quote-boxed cite a:hover { color: var(--sage); }

.solution-photo {
  width: 100%;
  border-radius: 4px;
}

.two-col-photo {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.two-col-photo-wrap img {
  width: 100%;
  border-radius: 4px;
}

.about-role {
  font-weight: 600;
  color: var(--sage);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.about-freedom-line {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 1.75rem;
  margin-top: 0.5rem;
}

.problem-closer {
  margin-top: 1.75rem;
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

/* ===================================================================
   Transition statement ("You want it all...")
=================================================================== */
.want-it-all {
  position: relative;
  overflow: hidden;
  background-color: var(--charcoal);
  background-image: url('../images/inspo-web.jpg');
  background-size: cover;
  background-position: center;
}

.want-it-all-scrim {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.88);
}

.want-it-all-content {
  position: relative;
  z-index: 1;
}

.want-it-all-headline {
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}

.want-it-all-sub {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.want-it-all-body {
  max-width: 46ch;
  margin: 0 auto;
  opacity: 0.85;
}

.scroll-cue {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
  margin-top: 2.5rem;
}
.scroll-cue::before,
.scroll-cue::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2.5px;
  height: 13px;
  background: var(--charcoal);
}
.scroll-cue::before { left: calc(50% - 4px); transform: translateY(-30%) rotate(-45deg); }
.scroll-cue::after { left: calc(50% + 4px); transform: translateY(-30%) rotate(45deg); }

/* ===================================================================
   Services — expand-on-scroll / click accordion
=================================================================== */
.services-stack-wrap {
  padding-top: clamp(4rem, 8vw, 7rem);
  background: var(--off-white);
}

.services-stack-wrap > .container {
  padding-bottom: 2.5rem;
}

.accordion {
  border-top: 1px solid rgba(28,28,28,0.1);
}

.acc-item {
  --acc-num-col: clamp(2.5rem, 6vw, 4rem);
  --acc-gap: clamp(1rem, 3vw, 2.5rem);
  --acc-side: clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(28,28,28,0.1);
}

.acc-h { font-size: inherit; line-height: inherit; }

.acc-header {
  width: 100%;
  display: grid;
  grid-template-columns: var(--acc-num-col) 1fr auto;
  column-gap: var(--acc-gap);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.25rem) var(--acc-side);
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  max-width: var(--max-width);
  margin: 0 auto;
}

.acc-num {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1;
  opacity: 0.5;
  padding-top: 0.15em;
}

.acc-toggle { margin-top: 0.3em; }

.acc-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.acc-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
}

.acc-badge {
  background: var(--charcoal);
  color: var(--lime);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.acc-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
}
.acc-toggle::before,
.acc-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.acc-toggle::before { width: 18px; height: 2px; }
.acc-toggle::after { width: 2px; height: 18px; }
.acc-item.is-open .acc-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows 0.4s ease;
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }

.acc-panel-inner {
  overflow: hidden;
  min-height: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--acc-side) 0;
}

.acc-item.is-open .acc-panel-inner {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.acc-panel-inner .panel-desc {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 60ch;
  margin-bottom: 1rem;
}

.acc-panel-inner .panel-price {
  font-weight: 700;
  opacity: 0.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.services-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.services-cta-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.services-cta .btn { margin-top: 0.5rem; }

/* ===================================================================
   Proof of work — tiles over background photo
=================================================================== */
.proof-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background-color: var(--charcoal);
  background-image: url('../images/background-the-work.jpg');
  background-size: cover;
  background-position: center;
}

.proof-scrim {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.72);
}

.proof-content {
  position: relative;
  z-index: 1;
}

.proof-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.proof-tile {
  background: rgba(247,245,241,0.08);
  border: 1px solid rgba(247,245,241,0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
}

.proof-tile p {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ===================================================================
   Testimonials — scrolling marquee (placeholder)
=================================================================== */
.testimonials-marquee-section { padding-bottom: 3rem; }
.testimonials-marquee-section > .container { margin-bottom: 2.5rem; }

.marquee {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee::-webkit-scrollbar { display: none; }
.marquee.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  width: 340px;
  flex-shrink: 0;
}

.testimonial-card:not(.placeholder) {
  width: 440px;
}

.testimonial-card p {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.testimonial-card:not(.placeholder) p {
  font-size: 1rem;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.testimonial-card cite a { color: var(--teal); }
.testimonial-card cite a:hover { color: var(--sage); }

.testimonial-card.placeholder {
  background: transparent;
  border: 1px dashed rgba(28,28,28,0.25);
}

.testimonial-card.placeholder p {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(28,28,28,0.5);
  font-style: italic;
}

.testimonial-card.placeholder cite {
  color: rgba(28,28,28,0.4);
}

/* ===================================================================
   Ops Clarity Call
=================================================================== */
.clarity-section .btn { margin-top: 0.5rem; }

.clarity-price {
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===================================================================
   Discovery call block
=================================================================== */
.discovery-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.discovery-main h2 { margin-bottom: 1.5rem; }
.discovery-main .btn { margin-top: 0.5rem; }

.discovery-photo {
  width: 100%;
  border-radius: 4px;
}

/* ===================================================================
   Contact
=================================================================== */
.contact-list {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.contact-list li {
  background: var(--sage);
  border-radius: 6px;
  padding: 1.5rem 2.25rem;
  min-width: 230px;
  box-shadow: 0 12px 24px rgba(28,28,28,0.12);
}

.contact-label {
  display: block;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

.contact-list a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.15s ease;
}

.contact-list a:hover { color: var(--lime); }

/* ===================================================================
   Links page (link-in-bio)
=================================================================== */
.links-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.links-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.links-wordmark {
  display: inline-block;
  color: var(--lime);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.links-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.links-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-links {
  width: 100%;
  background: rgba(28,28,28,0.5);
  border-color: var(--white);
  color: var(--white);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-links:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--charcoal);
}

.center-label { text-align: center; }

.links-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.links-testimonial-grid .testimonial-card {
  width: auto;
}

.footer-back-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--off-white);
}
.footer-back-link:hover { color: var(--teal); }

/* ===================================================================
   Free Business Audit
=================================================================== */
.audit-cta {
  cursor: not-allowed;
  opacity: 0.6;
}
.audit-cta:hover { transform: none; background: transparent; color: var(--sage); }

/* ===================================================================
   Footer
=================================================================== */
.site-footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wordmark-footer { color: var(--off-white); }

.footer-nav ul { display: flex; gap: 1.75rem; }
.footer-nav a { font-size: 0.9rem; }
.footer-nav a:hover { color: var(--teal); }

.copyright {
  font-size: 0.8rem;
  color: rgba(247,245,241,0.55);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247,245,241,0.12);
}

/* ===================================================================
   Mobile
=================================================================== */
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col-photo-wrap { max-width: 320px; margin: 0 auto 2rem; }

  .acc-item { --acc-num-col: 2rem; --acc-gap: 1rem; }
  .acc-num { font-size: 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-btn-group { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem 2.5rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    border-bottom: 1px solid rgba(28,28,28,0.08);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1.25rem;
  }

  .nav-cta { align-self: flex-start; }
}

@media (max-width: 600px) {
  .testimonial-card,
  .testimonial-card:not(.placeholder) { width: 280px; }

  .links-testimonial-grid .testimonial-card {
    width: 100%;
    text-align: center;
  }
}

