/*
Theme Name: Prowl Creative
Theme URI: https://prowlcreative.co.uk
Author: Prowl Creative
Description: Custom theme for Prowl Creative — social media strategy and content design agency.
Version: 1.0.0
Tags: custom, one-page, responsive
*/

/* =============================================
   ROOT VARIABLES
   ============================================= */
:root {
  --cream:        #F8F6F0;
  --ink:          #4A2218;
  --stone:        #E9E6DF;
  --ember:        #ADCDD1;
  --ember-light:  #C4E0E4;
  --mist:         #78766F;
  --white:        #FFFFFF;
  --border:       #D8D5CE;

  --font-head:    'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --max-w:        1200px;
  --section-px:   clamp(1.5rem, 5vw, 5rem);
  --section-py:   clamp(4rem, 8vw, 7rem);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --transition:   0.25s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  display: block;
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.75;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
}
.btn-primary:hover {
  background: var(--ember-light);
  border-color: var(--ember-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(173, 205, 209, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) var(--section-px);
}

.section--stone {
  background-color: var(--stone);
}

.section--ink {
  background-color: var(--ink);
  color: var(--white);
}
.section--ink .label { color: rgba(255,255,255,0.45); }
.section--ink p      { color: rgba(255,255,255,0.65); }


/* Logo white on hero */
.site-nav:not(.scrolled) .nav-logo {
  color: var(--white);
}
.site-nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.85);
}
.site-nav:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}
/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1.5rem, 5vw, 5rem);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: rgba(248, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-logo-svg {
  height: 18px;
  width: auto;
  display: block;
  transition: color var(--transition);
}

.site-nav.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ember); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; }
  .nav-hamburger { display: flex; z-index: 101; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 82svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--section-py) + 5rem) var(--section-px) var(--section-py);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero .label {
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: inherit;
}

.hero__sub {
  max-width: 640px;
  font-size: 1.05rem;
  margin: 0;
  color: rgba(255,255,255,0.75);
}

.hero .btn {
  margin-top: 0;
}

@media (max-width: 600px) {
  .hero__inner { gap: 0.5rem; }
  .hero__sub { font-size: 0.95rem; }
}

.platforms-bar {
  background: var(--ink);
  padding: 1.1rem 0;
  overflow: hidden;
}

.platforms-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.platforms-set {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-right: 6rem;
}

.platform-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.platform-logo svg {
  height: 17px;
  width: auto;
  opacity: 0.6;
  display: block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
}

/* =============================================
   DATA APPROACH SECTION
   ============================================= */
.data-section {
  padding: var(--section-py) var(--section-px);
}

.data-section__header {
  margin-bottom: 3.5rem;
}

.data-section__header h2 {
  max-width: 660px;
  letter-spacing: -0.02em;
}

.data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.data-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition);
}
.data-card:hover { transform: translateY(-4px); }

.data-card__num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ember);
  letter-spacing: 0.08em;
}

.data-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}

.data-card p {
  font-size: 0.9rem;
  flex: 1;
}

@media (max-width: 900px) {
  .data-cards { grid-template-columns: 1fr; gap: 1rem; }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: var(--section-py) var(--section-px);
  background: var(--stone);
}

.services-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-section__header h2 {
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.service-card:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card--featured {
  background: var(--ink);
  color: var(--white);
}
.service-card--featured p { color: rgba(255,255,255,0.6); }
.service-card--featured:hover { border-color: var(--ember); }

.service-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
}

.service-card__price {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.service-card--featured .service-card__price {
  border-top-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

.services-section__cta {
  text-align: center;
}

@media (max-width: 900px) {
  .services-cards { grid-template-columns: 1fr; }
}

/* =============================================
   CONTENT TYPES SECTION
   ============================================= */
.content-types-section {
  padding: var(--section-py) var(--section-px);
}

.content-types__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.content-types__left h2 {
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.content-types__left p {
  font-size: 1rem;
  max-width: 400px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.accordion-trigger__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--border);
  transition: color var(--transition);
}
.accordion-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.accordion-item.open .accordion-icon {
  color: var(--ember);
}

.accordion-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.accordion-arrow {
  font-size: 1rem;
  color: var(--mist);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.accordion-item.open .accordion-body {
  max-height: 200px;
}

.accordion-body p {
  font-size: 0.9rem;
  padding-bottom: 1.25rem;
  padding-left: 2.1rem;
}

@media (max-width: 900px) {
  .content-types__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =============================================
   PORTFOLIO / WORK SECTION
   ============================================= */
.work-section {
  padding: var(--section-py) var(--section-px);
  background: var(--stone);
}

.work-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.work-section__header h2 {
  max-width: 600px;
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
}
.work-section__header p {
  max-width: 640px;
  margin: 0 auto;
}

.work-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.work-grid::-webkit-scrollbar {
  display: none;
}

.work-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  flex: 0 0 260px;
  scroll-snap-align: start;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.work-card__media {
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a18, #2a2a27);
}

.work-card__media-placeholder svg {
  opacity: 0.15;
  width: 40px;
}

.work-card__meta {
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.work-card__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

.work-card__handle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 600px) {
  .work-card { flex: 0 0 200px; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: var(--section-py) var(--section-px);
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-section__photo {
  aspect-ratio: 3/4;
  background: var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-section__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--stone), var(--border));
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section__content h2 {
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  background: var(--stone);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.about-tag .tag-icon { font-size: 0.9rem; }

.about-section__content p {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

@media (max-width: 900px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-section__photo { aspect-ratio: 4/3; }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: var(--section-py) var(--section-px);
  background: var(--ink);
  text-align: center;
}

.testimonial-quote {
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.testimonial-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  padding: var(--section-py) var(--section-px);
}

.process-section__header {
  margin-bottom: 4rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.process-section__header h2 {
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.process-section__header p {
  max-width: 420px;
}

.process-timeline {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  padding: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(10%);
  right: calc(10%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  cursor: default;
  position: relative;
  z-index: 1;
}

.process-step__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mist);
  transition: all var(--transition);
  flex-shrink: 0;
}

.process-step:hover .process-step__dot,
.process-step.active .process-step__dot {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(173,205,209,0.2);
}

.process-step__content {
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.process-step:hover .process-step__content,
.process-step.active .process-step__content {
  opacity: 1;
  transform: translateY(0);
}

.process-step__num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.35rem;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; align-items: flex-start; }
  .process-step__content { opacity: 1; transform: none; text-align: left; }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--section-py) var(--section-px);
  background: #EAF3F5;
  text-align: center;
}

.cta-section h2 {
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: rgba(74,34,24,0.65);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__logo {
  color: var(--white);
  display: flex;
  align-items: center;
}

.site-footer__logo svg {
  height: 16px;
  width: auto;
  display: block;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}
.site-footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.site-footer__links a:hover { color: rgba(255,255,255,0.8); }


/* =============================================
   HIGHLIGHT WORD
   ============================================= */
.highlight-word {
  transition: color var(--transition);
  cursor: default;
}
.highlight-word:hover {
  color: var(--ember);
}
