@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,700&display=swap');

/* =============================================
   YAMAHA OUTBOARD SPECIALIST
   Stylesheet — styles.css
   Color Palette (from logo):
     --navy:   #122d45  Deep Navy
     --ocean:  #1a7abd  Ocean Blue
     --sky:    #6ba3c4  Sky Blue
     --white:  #f5f8fa  Crisp White
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:        #122d45;
  --navy-dark:   #0b1e2e;
  --ocean:       #1a7abd;
  --ocean-light: #2490d8;
  --sky:         #6ba3c4;
  --sky-light:   #c8dfe9;
  --white:       #f5f8fa;
  --white-pure:  #ffffff;
  --text-dark:   #1a2e3e;
  --text-mid:    #3d5a70;
  --text-light:  #6b8fa8;
  --border:      #d0e4ef;

  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(18,45,69,0.10);
  --shadow-md:  0 4px 16px rgba(18,45,69,0.13);
  --shadow-lg:  0 8px 32px rgba(18,45,69,0.16);

  --max-width: 1160px;
  --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);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ocean-light); }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  font-size: clamp(1.25rem, 5vw, 2.75rem);
  text-align: center;
}
h3, h4, h5, h6 { font-size: clamp(1.1rem, 2.8vw, 1.45rem); }
p  { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 4.5rem 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p   { color: var(--sky-light); }
.section--sky {
  background: var(--sky-light);
}
.section--alt {
  background: #e8f3f9;
}

.section-header { text-align: center; margin-bottom: 2.75rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p  { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.text-center { text-align: center; }
.text-ocean  { color: var(--ocean) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ocean);
  color: var(--white-pure);
  border-color: var(--ocean);
}
.btn-primary:hover {
  background: var(--ocean-light);
  border-color: var(--ocean-light);
  color: var(--white-pure);
  box-shadow: 0 4px 14px rgba(26,122,189,0.4);
}

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

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

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.2rem;
}

.btn-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.btn-group .btn {
  justify-content: center;
  text-align: center;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  position: relative;
  z-index: 200;
}

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

.header-logo img {
  height: 138px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav a {
  color: var(--sky-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white-pure);
  background: rgba(107,163,196,0.18);
}

.nav-cta {
  background: var(--ocean) !important;
  color: var(--white-pure) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius-md) !important;
}
.nav-cta:hover {
  background: var(--ocean-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-pure);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .header-inner { height: 90px; }
  .header-logo img { height: 72px; }
  .hamburger { display: flex; padding: 0.6rem; }
  .hamburger span { width: 28px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(107,163,196,0.2);
    padding: 1rem 1.25rem 1.5rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.15rem; }
  .main-nav a { display: block; padding: 0.85rem 1rem; font-size: 1rem; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, #1a4e75 100%);
  background-size: cover;
  background-position: center;
}

.hero--has-bg-image {
  /* Client will provide image — swap in via inline style or this class */
}

/* Dark overlay so text reads clearly over any photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 44, 0.52);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem 6rem;
  width: 100%;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--white-pure);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 0.4rem 1rem;
  display: inline-block;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content p {
  color: var(--sky-light);
  font-size: 1.15rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Wave animation container — sits at bottom of hero, above the overlay */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
  overflow: hidden;
}

.hero-waves svg {
  display: block;
  width: 100%;
}

.wave-path-1 {
  fill: rgba(26, 122, 189, 0.55);
  animation: waveShift1 8s linear infinite;
  transform-origin: center bottom;
}

.wave-path-2 {
  fill: rgba(18, 45, 69, 0.75);
  animation: waveShift2 12s linear infinite;
  transform-origin: center bottom;
}

@keyframes waveShift1 {
  0%   { transform: translateX(0) scaleY(1); }
  50%  { transform: translateX(-5%) scaleY(1.05); }
  100% { transform: translateX(0) scaleY(1); }
}

@keyframes waveShift2 {
  0%   { transform: translateX(0) scaleY(1); }
  50%  { transform: translateX(4%) scaleY(0.97); }
  100% { transform: translateX(0) scaleY(1); }
}

/* ---------- HERO WATER SPLASH EFFECT ---------- */
.hero-splash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Smaller hero for interior pages */
.hero--sm {
  min-height: 280px;
}
.hero--sm .hero-content {
  padding: 3rem 1.25rem 5rem;
}

/* ---------- PAGE TITLE STRIP (interior pages without hero photo) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,28,44,0.3);
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4.5rem;
}
.page-hero-content h1 { color: var(--white-pure); }
.page-hero-content p  { color: var(--sky-light); font-size: 1.05rem; }

.page-hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
  overflow: hidden;
}
.page-hero-waves svg { display: block; width: 100%; }

/* ---------- WHY CHOOSE US (3 cards) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--ocean);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card-icon {
  width: 96px;
  height: 96px;
  background: var(--sky-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 2.8rem;
  color: var(--navy);
}
.why-card-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--navy);
}
.why-card h3 { margin-bottom: 0.6rem; color: var(--navy); }
.why-card p  { font-size: 1.15rem; }

/* ---------- SERVICES LIST (home page) ---------- */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 3rem;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.service-bullet-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--ocean);
}
@media (max-width: 560px) {
  .services-list { grid-template-columns: 1fr; gap: 0.6rem 1.5rem; }
  .services-list li { font-size: 1rem; }
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ---- Service Carousel ---- */
.service-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.service-carousel-card {
  min-width: 100%;
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}
.service-carousel-card h3 {
  text-align: center;
  color: var(--navy);
  margin: 0;
}
.service-card-body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.service-card-text {
  flex: 1;
  font-size: 1.15rem;
  color: var(--text-mid);
}
.service-card-text p { margin-bottom: 0; }
.service-card-image {
  flex: 1;
}
.service-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.service-card-cta {
  text-align: center;
}
.carousel-btn {
  background: var(--ocean);
  color: var(--white-pure);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--white-pure);
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--navy); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sky-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--ocean); }
@media (max-width: 640px) {
  .service-carousel { gap: 0.5rem; }
  .carousel-btn { width: 44px; height: 44px; font-size: 1.5rem; }
  .service-carousel-card { padding: 1.25rem; gap: 1rem; }
  .service-card-body { flex-direction: column; gap: 1rem; }
  .service-card-text { font-size: 1rem; }
  .service-card-image img { height: 200px; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean) 0%, #1460a0 100%);
  padding: 3.5rem 1.25rem;
  text-align: center;
  color: var(--white-pure);
}
.cta-banner h2 { color: var(--white-pure); margin-bottom: 0.6rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--ocean); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
  color: var(--navy);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ocean);
  color: var(--white-pure);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer p {
  padding-bottom: 1.1rem;
  color: var(--text-mid);
  font-size: 1.15rem;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ---------- CONTACT SECTION (info bar) ---------- */
.contact-bar {
  background: var(--sky-light);
  padding: 2.5rem 1.25rem;
}
.contact-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.97rem;
}
.contact-item-icon {
  font-size: 1.2rem;
}

/* ---------- CONTACT FORM PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form-wrap {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; color: var(--navy); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26,122,189,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-consent {
  background: var(--sky-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.25rem;
}
.form-consent h4 { font-size: 0.88rem; margin-bottom: 0.6rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }

.checkbox-group { display: flex; flex-direction: column; gap: 0.55rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--ocean);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white-pure);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-info-card h2 { color: var(--white-pure); margin-bottom: 1.5rem; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(107,163,196,0.2);
}
.info-row:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-row-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.info-row-text strong { display: block; color: var(--sky-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.info-row-text span, .info-row-text a { color: var(--white-pure); font-size: 0.97rem; }
.info-row-text a:hover { color: var(--sky); }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
.blog-tag {
  background: var(--sky-light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.65rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; color: var(--navy); }
.blog-card p  { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 1rem; flex: 1; }
.blog-card .btn { align-self: flex-start; font-size: 0.88rem; padding: 0.5rem 1.1rem; }

/* ---------- BLOG POST PAGE ---------- */
.post-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
}

.post-header { margin-bottom: 2rem; }
.post-meta { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.75rem; }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }

.post-body h2 { margin: 2rem 0 0.85rem; color: var(--navy); }
.post-body h3 { margin: 1.5rem 0 0.65rem; color: var(--navy); font-size: 1.1rem; }
.post-body h4 { margin: 1.25rem 0 0.5rem; color: var(--ocean); }
.post-body p  { margin-bottom: 1rem; color: var(--text-mid); }
.post-body ul,
.post-body ol { margin: 0.75rem 0 1rem 1.5rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.6; }
.post-body blockquote {
  border-left: 4px solid var(--ocean);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--sky-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-mid);
}

.post-author-bio {
  background: var(--sky-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.post-author-bio-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white-pure);
  flex-shrink: 0;
}
.post-author-bio-text strong { display: block; color: var(--navy); margin-bottom: 0.25rem; }
.post-author-bio-text p { font-size: 0.9rem; margin-bottom: 0; }

.post-sidebar-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.post-sidebar-card h4 { color: var(--navy); margin-bottom: 1rem; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.05em; }
.post-sidebar-card ul { list-style: none; }
.post-sidebar-card li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.post-sidebar-card li:last-child { border-bottom: none; }
.post-sidebar-card a { color: var(--ocean); }
.post-sidebar-card a:hover { color: var(--navy); }

.post-cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white-pure);
  text-align: center;
}
.post-cta-card h4 { color: var(--white-pure); margin-bottom: 0.75rem; font-size: 1rem; }
.post-cta-card p  { color: var(--sky-light); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ---------- LEGAL PAGES (Privacy, Terms) ---------- */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
}
.legal-body h2 { font-size: 1.3rem; margin: 2.25rem 0 0.75rem; color: var(--navy); }
.legal-body p  { color: var(--text-mid); margin-bottom: 0.85rem; }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.85rem; }
.legal-body ul li { color: var(--text-mid); margin-bottom: 0.35rem; }
.legal-updated {
  display: inline-block;
  background: var(--sky-light);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--sky-light);
  padding: 3.5rem 0 0;
}

/* Three equal columns */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo-col { grid-column: 1 / -1; text-align: center; }
  .footer-logo-col a { display: inline-block; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo-col { text-align: left; }
  .footer-logo { height: 120px; }
  .footer-contact-col li { font-size: 1rem; }
  .footer-social-row { font-size: 1rem; }
  .footer-legal-links { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* Col 1 — Logo only, 4× larger */
.footer-logo-col { display: flex; align-items: flex-start; }
.footer-logo { height: 208px; width: auto; display: block; }

/* Col 2 — Contact & Hours */
.footer-contact-col h4,
.footer-social-col h4 {
  color: var(--white-pure);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-contact-col ul { list-style: none; }
.footer-contact-col li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: var(--sky);
}
.footer-contact-col a {
  color: var(--sky);
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--white-pure); }

/* Col 3 — Social links with icon + label */
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--sky);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-social-row:hover { color: var(--white-pure); }
.footer-social-row svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Bottom bar */
.footer-bottom {
  padding: 1.5rem 0 0;
  font-size: 0.83rem;
  color: var(--text-light);
}
.footer-legal-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.9rem 0;
}
.footer-legal-links a {
  color: var(--sky);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--white-pure); }
.footer-copyright {
  text-align: center;
  padding: 0.75rem 0 0.5rem;
  color: var(--text-light);
}
.footer-powered {
  text-align: center;
  padding-bottom: 1.5rem;
}
.footer-powered a {
  color: var(--sky);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-powered a:hover { color: var(--white-pure); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--ocean); }
.breadcrumb span { margin: 0 0.4rem; }

/* ---------- UTILITIES ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ---------- RESPONSIVE HELPERS ---------- */
@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .cta-banner { padding: 2rem 1.25rem; }

  /* Hero */
  .hero { min-height: 320px; }
  .hero-content { padding: 2.5rem 1.25rem 4rem; }
  .hero-content h1 { max-width: 100%; }
  .hero-content p { font-size: 1rem; }

  /* Page heroes (about, services, etc.) */
  .page-hero { min-height: 160px; }
  .page-hero-content { padding: 1.5rem 1.25rem 2.5rem; }

  /* Buttons */
  .btn-lg { font-size: 1rem; padding: 0.75rem 1.5rem; }
  .btn-group { max-width: min(320px, 90vw); }

  /* FAQ */
  .faq-question { padding: 0.85rem 0; font-size: 1rem; }
  .faq-answer p { font-size: 1rem; }

  /* Why grid — single column */
  .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
