/*
Theme Name:  Jack Williams Photography
Theme URI:   https://jack-williams.co.uk
Description: Custom WordPress theme for Jack Williams Photography – portrait, family and event photographer based in Lee-on-Solent, Hampshire.
Author:      Jack Williams
Author URI:  https://jack-williams.co.uk
Version:     1.0.0
Text Domain: jack-williams-photography
*/

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colours */
  --jw-lion-gold:        #F1B15F;
  --jw-deep-terracotta:  #C66A3B;
  --jw-charcoal:         #131417;
  --jw-soft-sand:        #FAF4EC;
  --jw-forest-teal:      #2E6B64;
  --jw-mid-plum:         #5A3E66;
  --jw-white:            #FFFFFF;
  --jw-mid-grey:         #666666;
  --jw-light-grey:       #E8E4DC;

  /* Typography */
  --jw-font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --jw-font-body:    "Source Sans 3", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --jw-max-width:    1120px;
  --jw-section-pad:  64px 0;
  --jw-radius:       8px;
  --jw-radius-pill:  999px;

  /* Shadows */
  --jw-shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --jw-shadow-md: 0 6px 18px rgba(0,0,0,.08);
  --jw-shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  /* Transitions */
  --jw-trans: all .22s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--jw-soft-sand);
  color: var(--jw-charcoal);
  font-family: var(--jw-font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--jw-forest-teal);
  text-decoration: none;
  transition: var(--jw-trans);
}
a:hover { color: var(--jw-deep-terracotta); text-decoration: underline; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--jw-font-heading);
  color: var(--jw-charcoal);
  line-height: 1.2;
  margin: 0 0 .75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

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

strong { font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */
.jw-container {
  width: min(var(--jw-max-width), 92vw);
  margin: 0 auto;
}

.jw-container--narrow {
  width: min(780px, 92vw);
  margin: 0 auto;
}

.jw-section { padding: var(--jw-section-pad); }
.jw-page    { padding: 40px 0; }

.jw-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.jw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.jw-grid-2-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.jw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--jw-lion-gold);
  color: var(--jw-charcoal);
  padding: .85em 2.2em;
  border-radius: var(--jw-radius-pill);
  font-family: var(--jw-font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--jw-trans);
  white-space: nowrap;
}
.jw-btn:hover {
  background: var(--jw-deep-terracotta);
  color: var(--jw-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--jw-shadow-md);
}

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

.jw-btn--white {
  background: var(--jw-white);
  color: var(--jw-charcoal);
}
.jw-btn--white:hover {
  background: var(--jw-lion-gold);
  color: var(--jw-charcoal);
}

.jw-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.jw-card {
  background: var(--jw-white);
  padding: 28px;
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow-sm);
  transition: var(--jw-trans);
}
.jw-card:hover {
  box-shadow: var(--jw-shadow-md);
  transform: translateY(-3px);
}

.jw-card--pricing {
  text-align: center;
  border: 2px solid var(--jw-light-grey);
}
.jw-card--pricing:hover {
  border-color: var(--jw-lion-gold);
}

.jw-card--pricing .jw-price {
  font-family: var(--jw-font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--jw-charcoal);
  line-height: 1;
  margin: .75rem 0;
}

.jw-card--pricing .jw-price-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
}

.jw-card--pricing ul {
  text-align: left;
  margin: 1rem 0 1.5rem;
}
.jw-card--pricing ul li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--jw-light-grey);
  font-size: .95rem;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.jw-card--pricing ul li::before {
  content: '✓';
  color: var(--jw-forest-teal);
  font-weight: 700;
  flex-shrink: 0;
}
.jw-card--pricing ul li:last-child { border-bottom: none; }

/* Service cards */
.jw-service-card {
  background: var(--jw-white);
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--jw-trans);
}
.jw-service-card:hover {
  box-shadow: var(--jw-shadow-lg);
  transform: translateY(-4px);
}
.jw-service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--jw-light-grey);
}
.jw-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.jw-service-card:hover .jw-service-card__img img { transform: scale(1.04); }
.jw-service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.jw-service-card__price {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
  margin-bottom: .5rem;
}
.jw-service-card__body p { flex: 1; margin-bottom: 1.25rem; }

/* Blog cards */
.jw-blog-card {
  background: var(--jw-white);
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--jw-trans);
}
.jw-blog-card:hover { box-shadow: var(--jw-shadow-md); transform: translateY(-3px); }
.jw-blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--jw-light-grey);
}
.jw-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.jw-blog-card:hover .jw-blog-card__img img { transform: scale(1.04); }
.jw-blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.jw-blog-card__cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jw-mid-plum);
  margin-bottom: .4rem;
}
.jw-blog-card__title { font-size: 1.05rem; margin-bottom: .5rem; flex: 1; }
.jw-blog-card__title a { color: var(--jw-charcoal); }
.jw-blog-card__title a:hover { color: var(--jw-deep-terracotta); text-decoration: none; }
.jw-blog-card__meta { font-size: .82rem; color: var(--jw-mid-grey); margin-bottom: .75rem; }
.jw-blog-card__excerpt { font-size: .92rem; margin-bottom: 1rem; }
.jw-blog-card__link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--jw-forest-teal);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.jw-blog-card__link::after { content: '→'; transition: var(--jw-trans); }
.jw-blog-card:hover .jw-blog-card__link::after { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */
.jw-hero {
  background: var(--jw-charcoal);
  color: var(--jw-white);
  position: relative;
  overflow: hidden;
}
.jw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,20,23,.95) 0%, rgba(19,20,23,.75) 100%);
  z-index: 1;
}
.jw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.jw-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.jw-hero-inner h1 { color: var(--jw-white); max-width: 720px; margin-bottom: 1rem; }
.jw-hero-inner p  { color: rgba(255,255,255,.82); max-width: 600px; font-size: 1.1rem; margin-bottom: 0; }

.jw-hero--page { }
.jw-hero--page .jw-hero-inner { padding: 60px 0; }
.jw-hero--page .jw-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
  margin-bottom: .75rem;
}

/* ============================================================
   SECTION LABELS & DECORATORS
   ============================================================ */
.jw-section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
  margin-bottom: .6rem;
}

.jw-gold-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--jw-lion-gold);
  margin: .75rem 0 1.25rem;
}

.jw-text-center { text-align: center; }
.jw-text-center .jw-gold-bar { margin-left: auto; margin-right: auto; }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.jw-feature-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .55rem 0;
  border-bottom: 1px solid var(--jw-light-grey);
  font-size: .97rem;
}
.jw-feature-list li:last-child { border-bottom: none; }
.jw-feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jw-lion-gold);
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.jw-faq { max-width: 780px; margin: 0 auto; }
.jw-faq__item { border-bottom: 1px solid var(--jw-light-grey); }
.jw-faq__item:first-child { border-top: 1px solid var(--jw-light-grey); }

.jw-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--jw-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jw-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--jw-trans);
}
.jw-faq__q:hover { color: var(--jw-deep-terracotta); }
.jw-faq__q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--jw-lion-gold);
  flex-shrink: 0;
  transition: var(--jw-trans);
}
.jw-faq__q[aria-expanded="true"]::after { content: '−'; }
.jw-faq__a {
  display: none;
  padding: 0 0 1.1rem;
  font-size: .97rem;
  line-height: 1.7;
  color: var(--jw-charcoal);
}
.jw-faq__a.open { display: block; }

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.jw-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.jw-location-item {
  background: var(--jw-white);
  border-left: 3px solid var(--jw-lion-gold);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--jw-radius) var(--jw-radius) 0;
  box-shadow: var(--jw-shadow-sm);
}
.jw-location-item h4 { color: var(--jw-charcoal); margin-bottom: .35rem; font-size: .97rem; }
.jw-location-item p  { font-size: .88rem; color: var(--jw-mid-grey); margin: 0; }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.jw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.jw-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--jw-white);
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow-sm);
}
.jw-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--jw-charcoal);
  color: var(--jw-lion-gold);
  font-family: var(--jw-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.jw-step h4 { margin-bottom: .4rem; font-size: 1rem; }
.jw-step p  { font-size: .88rem; color: var(--jw-mid-grey); margin: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.jw-cta {
  background: var(--jw-charcoal);
  padding: 64px 0;
  text-align: center;
}
.jw-cta h2 { color: var(--jw-white); margin-bottom: .75rem; }
.jw-cta p  { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.jw-cta .jw-btn-group { justify-content: center; }

/* ============================================================
   THUMBNAIL
   ============================================================ */
.jw-thumb img {
  width: 100%;
  height: auto;
  border-radius: var(--jw-radius);
  display: block;
  box-shadow: var(--jw-shadow-lg);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--jw-white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--jw-shadow-sm);
  transition: var(--jw-trans);
}
.site-header.scrolled { box-shadow: var(--jw-shadow-md); }

.jw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-title a {
  font-family: var(--jw-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jw-charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.site-title a:hover { text-decoration: none; color: var(--jw-deep-terracotta); }

.site-title .jw-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Desktop nav */
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--jw-charcoal);
  padding: .5rem .8rem;
  border-radius: 6px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: var(--jw-trans);
}
.site-nav a:hover,
.site-nav a.current-menu-item {
  color: var(--jw-deep-terracotta);
  background: rgba(198,106,59,.07);
  text-decoration: none;
}
.site-nav .jw-nav-cta {
  background: var(--jw-lion-gold);
  color: var(--jw-charcoal);
  border-radius: var(--jw-radius-pill);
  padding: .5rem 1.2rem;
  font-weight: 600;
  margin-left: .5rem;
  letter-spacing: .04em;
}
.site-nav .jw-nav-cta:hover {
  background: var(--jw-deep-terracotta);
  color: var(--jw-white);
}

/* Dropdown */
.site-nav .menu-item-has-children { position: relative; }
.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--jw-white);
  box-shadow: var(--jw-shadow-md);
  border-radius: var(--jw-radius);
  border-top: 3px solid var(--jw-lion-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--jw-trans);
  z-index: 100;
  list-style: none;
}
.site-nav .menu-item-has-children:hover .sub-menu,
.site-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav .sub-menu li a {
  display: block;
  padding: .6rem 1rem;
  font-size: .88rem;
  border-radius: 0;
  color: var(--jw-charcoal);
}
.site-nav .sub-menu li a:hover {
  background: var(--jw-soft-sand);
  color: var(--jw-deep-terracotta);
}

/* Mobile toggle */
.jw-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.jw-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--jw-charcoal);
  transition: var(--jw-trans);
  transform-origin: center;
}
.jw-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jw-menu-toggle.open span:nth-child(2) { opacity: 0; }
.jw-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.jw-mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--jw-white);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: .25rem;
}
.jw-mobile-nav.open { display: flex; }
.jw-mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--jw-charcoal);
  padding: .8rem 0;
  border-bottom: 1px solid var(--jw-light-grey);
  text-decoration: none;
  display: block;
}
.jw-mobile-nav a:hover { color: var(--jw-deep-terracotta); }
.jw-mobile-nav .jw-btn { margin-top: 1.5rem; width: 100%; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--jw-charcoal);
  color: rgba(255,255,255,.7);
}
.jw-footer-main {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
}
.jw-footer-brand .jw-footer-title {
  font-family: var(--jw-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jw-white);
  margin-bottom: .2rem;
}
.jw-footer-brand .jw-footer-sub {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
  margin-bottom: 1rem;
  display: block;
}
.jw-footer-brand p { font-size: .9rem; margin-bottom: 1.25rem; }

.jw-footer-socials { display: flex; gap: .6rem; }
.jw-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--jw-trans);
}
.jw-footer-socials a:hover {
  background: var(--jw-lion-gold);
  color: var(--jw-charcoal);
  text-decoration: none;
}

.jw-footer-col h5 {
  font-family: var(--jw-font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
  margin-bottom: 1rem;
}
.jw-footer-col ul li { margin-bottom: .5rem; }
.jw-footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  text-decoration: none;
  transition: var(--jw-trans);
}
.jw-footer-col ul li a:hover { color: var(--jw-lion-gold); text-decoration: none; }
.jw-footer-col p { font-size: .9rem; }

.jw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.jw-footer-bottom p,
.jw-footer-bottom a {
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  margin: 0;
}
.jw-footer-bottom a:hover { color: var(--jw-lion-gold); }
.jw-footer-links { display: flex; gap: 1.25rem; }

/* ============================================================
   BLOG SINGLE
   ============================================================ */
.jw-single {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 0;
}
.jw-post-header {
  background: var(--jw-charcoal);
  padding: 60px 0 50px;
  text-align: center;
}
.jw-post-header .jw-post-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jw-lion-gold);
  margin-bottom: .75rem;
}
.jw-post-header h1 { color: var(--jw-white); max-width: 760px; margin: 0 auto .75rem; }
.jw-post-meta { font-size: .9rem; color: rgba(255,255,255,.55); }

.jw-post-body {
  background: var(--jw-white);
  padding: 40px;
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow-sm);
  margin: 32px 0;
}
.jw-post-body h2 { margin: 2.5rem 0 .75rem; font-size: 1.6rem; }
.jw-post-body h3 { margin: 2rem 0 .6rem; font-size: 1.25rem; }
.jw-post-body p  { margin-bottom: 1.2rem; line-height: 1.75; }
.jw-post-body ul,
.jw-post-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.jw-post-body ul { list-style: disc; }
.jw-post-body ol { list-style: decimal; }
.jw-post-body li { margin-bottom: .5rem; }
.jw-post-body a  { color: var(--jw-forest-teal); text-decoration: underline; }
.jw-post-body strong { color: var(--jw-charcoal); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.jw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.jw-contact-detail {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.jw-contact-icon {
  width: 42px;
  height: 42px;
  background: var(--jw-charcoal);
  color: var(--jw-lion-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.jw-contact-text strong {
  display: block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--jw-mid-grey);
  margin-bottom: .2rem;
}
.jw-contact-text span { font-size: .97rem; color: var(--jw-charcoal); font-weight: 600; }

.jw-form-wrap {
  background: var(--jw-white);
  border-radius: var(--jw-radius);
  box-shadow: var(--jw-shadow-md);
  padding: 2.5rem;
}
.jw-form-wrap h2 { margin-bottom: 1.5rem; }

/* WPForms overrides */
.wpforms-form .wpforms-field-label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--jw-charcoal);
  margin-bottom: .4rem;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
  border: 1.5px solid var(--jw-light-grey);
  border-radius: 6px;
  padding: .75rem 1rem;
  font-family: var(--jw-font-body);
  font-size: .97rem;
  width: 100%;
  background: var(--jw-soft-sand);
  transition: var(--jw-trans);
}
.wpforms-form input:focus,
.wpforms-form textarea:focus {
  outline: none;
  border-color: var(--jw-charcoal);
  background: var(--jw-white);
}
.wpforms-form .wpforms-submit {
  background: var(--jw-lion-gold);
  color: var(--jw-charcoal);
  border: none;
  padding: .85em 2.2em;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--jw-radius-pill);
  cursor: pointer;
  transition: var(--jw-trans);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.wpforms-form .wpforms-submit:hover {
  background: var(--jw-deep-terracotta);
  color: var(--jw-white);
}

/* ============================================================
   404
   ============================================================ */
.jw-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}
.jw-404 .jw-404-num {
  font-family: var(--jw-font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--jw-light-grey);
  line-height: 1;
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }

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

/* Breadcrumbs */
.jw-breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.jw-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.jw-breadcrumb a:hover { color: var(--jw-lion-gold); }
.jw-breadcrumb span { margin: 0 .4rem; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--jw-lion-gold);
  color: var(--jw-charcoal);
  padding: .75rem 1.5rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Pagination */
.jw-pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.jw-pagination a,
.jw-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid var(--jw-light-grey);
  color: var(--jw-charcoal);
  text-decoration: none;
  transition: var(--jw-trans);
}
.jw-pagination a:hover,
.jw-pagination .current {
  background: var(--jw-lion-gold);
  border-color: var(--jw-lion-gold);
  color: var(--jw-charcoal);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .jw-steps { grid-template-columns: 1fr 1fr; }
  .jw-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --jw-section-pad: 48px 0; }
  .jw-grid-2  { grid-template-columns: 1fr; }
  .jw-grid-3  { grid-template-columns: 1fr; }
  .jw-grid-2-equal { grid-template-columns: 1fr; }
  .jw-location-grid { grid-template-columns: 1fr; }
  .jw-contact-grid { grid-template-columns: 1fr; }
  .jw-footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .jw-footer-bottom { flex-direction: column; text-align: center; }
  .jw-cta .jw-btn-group { flex-direction: column; align-items: center; }
  .site-nav { display: none; }
  .jw-menu-toggle { display: flex; }
  .jw-hero-inner { padding: 56px 0; }
  .jw-post-body { padding: 24px; }
  .jw-form-wrap { padding: 1.5rem; }
}

@media (max-width: 640px) {
  .jw-steps { grid-template-columns: 1fr; }
  .jw-btn-group { flex-direction: column; }
  .jw-btn-group .jw-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .jw-404 .jw-404-num { font-size: 5rem; }
}
