/*
Theme Name: CBC Palm Coast
Theme URI: https://centralbaptistpc.com/
Author: Central Baptist Church
Author URI: https://centralbaptistpc.com/
Description: Custom theme for Central Baptist Church Palm Coast, Florida. Hand-crafted design with sage and terracotta palette, Fraunces serif and Inter sans-serif typography.
Version: 1.0.0
License: All Rights Reserved
Text Domain: cbc-palmcoast
*/


  :root {
    --bg: #F8F2E6;
    --bg-warm: #EDE5D2;
    --paper: #FFFFFF;
    --sage: #6B7F5C;
    --sage-deep: #4A5C3F;
    --sage-pale: #E8EDDF;
    --terracotta: #C97B5C;
    --terracotta-deep: #A85F42;
    --terracotta-pale: #F5E1D5;
    --ink: #2A2825;
    --ink-soft: #5C5A56;
    --muted: #8B8884;
    --line: rgba(42, 40, 37, 0.08);
    --gold: #B8924A;
    --ocean: #3D6B7A;
    --ocean-deep: #2A4F5C;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    background-image:
      radial-gradient(ellipse 800px 600px at 10% 0%, rgba(201, 165, 87, 0.04), transparent 70%),
      radial-gradient(ellipse 600px 400px at 90% 100%, rgba(201, 123, 92, 0.03), transparent 70%);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
  }

  .serif { font-family: 'Fraunces', serif; font-weight: 400; }

  /* ========== TOP BAR ========== */
  .topbar {
    background: var(--sage-deep);
    color: var(--bg);
    padding: 8px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .topbar-left { display: flex; gap: 24px; align-items: center; }
  .topbar-live {
    display: inline-flex; align-items: center; gap: 8px;
    color: #F2EDE4;
  }
  .topbar-live .dot {
    width: 6px; height: 6px; background: #E8997A; border-radius: 50%;
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
  .topbar a { color: var(--bg); text-decoration: none; opacity: 0.85; }
  .topbar a:hover { opacity: 1; }

  /* ========== NAV ========== */
  nav {
    background: var(--bg);
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
  }
  .logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
    color: var(--ink);
  }
  .logo-mark-img {
    width: 64px; height: 64px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .logo-text {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 500;
  }
  .logo-text em {
    font-style: italic;
    font-variation-settings: 'opsz' 144;
    color: var(--sage-deep);
  }
  .logo-text small {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-top: 4px;
  }
  .nav-links {
    display: flex; gap: 28px; align-items: center;
    list-style: none;
  }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--sage-deep); }
  .nav-cta {
    background: var(--terracotta);
    color: white !important;
    padding: 11px 22px;
    border-radius: 100px;
    font-weight: 500 !important;
    font-size: 13px !important;
    transition: all 0.3s;
  }
  .nav-cta:hover { background: var(--terracotta-deep); transform: translateY(-1px); }

  /* ========== HERO ========== */
  .hero {
    padding: 80px 56px 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-content { animation: fadeUp 1s ease-out; }
  @keyframes fadeUp { from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:translateY(0);} }

  .badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--sage-pale);
    color: var(--sage-deep);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
  }
  .badge .dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }

  h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 6.2vw, 84px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    font-weight: 400;
    color: var(--ink);
  }
  h1 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
    /* subtle font variation */
    font-variation-settings: 'opsz' 144;
  }

  .hero-lede {
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 44px;
    font-weight: 400;
  }

  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--sage-deep);
    color: var(--bg);
  }
  .btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
  .btn-text {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding: 4px 0;
    border-radius: 0;
    font-size: 14px;
  }
  .btn-text:hover { color: var(--terracotta); border-color: var(--terracotta); }

  /* Hero visual side */
  .hero-visual {
    position: relative;
    animation: fadeUp 1s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    aspect-ratio: 4/5;
    background-image:
      linear-gradient(180deg, rgba(42,40,37,0.65) 0%, rgba(42,40,37,0.15) 30%, rgba(42,40,37,0.55) 100%),
      url('./assets/img/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-size: cover;
    background-position: center 60%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(42,40,37,0.25);
  }
  /* Subtle warm overlay to enhance the coastal feel */
  .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 30% 30%, rgba(232, 200, 122, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 60% 60% at 80% 80%, rgba(201, 123, 92, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-image-overlay {
    position: absolute;
    left: 32px;
    top: 32px;
    z-index: 2;
    color: white;
  }
  .hero-image-overlay .greeting {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: white;
    font-size: 32px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  /* Service times card - sits below photo, never overlaps */
  .service-card {
    background: var(--paper);
    padding: 24px 28px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(42,40,37,0.10);
    margin-top: 24px;
    border: 1px solid var(--line);
  }
  .service-card-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .service-card-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .service-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }
  .service-row .name { color: var(--ink); font-weight: 500; }
  .service-row .time { color: var(--sage-deep); font-weight: 600; font-variant-numeric: tabular-nums; }

  /* Decorative organic shape */
  .organic-1 {
    position: absolute;
    top: 100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--terracotta-pale);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    z-index: -1;
    opacity: 0.25;
  }

  /* Hand-drawn underline */
  .underline-doodle {
    position: relative;
    display: inline-block;
  }
  .underline-doodle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0; right: 0;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M2 5 Q 50 1, 100 4 T 198 3' stroke='%23C97B5C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  }

  /* ========== WELCOME ========== */
  .welcome {
    padding: 140px 56px;
    position: relative;
  }
  .container { max-width: 1200px; margin: 0 auto; }

  .welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
  }

  .welcome-img-stack {
    position: relative;
    aspect-ratio: 4/5;
  }
  .welcome-img-main {
    position: absolute;
    inset: 0;
    background-color: #FAF7F2;
    background-image: url('./assets/img/story-illustration.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(42, 40, 37, 0.12);
    border: 1px solid var(--line);
  }
  .welcome-img-accent {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 60%;
    aspect-ratio: 1;
    background:
      linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
    border-radius: 4px;
    z-index: -1;
    box-shadow: 0 10px 30px rgba(168, 95, 66, 0.2);
  }
  .welcome-quote {
    position: absolute;
    top: -24px; left: -28px;
    background: var(--paper);
    padding: 18px 24px;
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(42,40,37,0.18), 0 0 0 1px rgba(42,40,37,0.04);
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--sage-deep);
    font-size: 15px;
    line-height: 1.4;
    max-width: 220px;
    z-index: 2;
  }
  .welcome-quote::before {
    content: '"';
    position: absolute;
    top: -8px; left: 12px;
    font-size: 36px;
    color: var(--terracotta);
    font-style: normal;
    line-height: 1;
  }

  .eyebrow {
    color: var(--terracotta-deep);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: ''; width: 24px; height: 1px;
    background: var(--terracotta-deep);
  }

  h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    font-weight: 400;
  }
  h2 em { font-style: italic; color: var(--sage); font-weight: 400; }

  .welcome-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 18px;
    max-width: 540px;
  }
  .welcome-text p:first-of-type::first-letter {
    font-family: 'Fraunces', serif;
    font-size: 60px;
    float: left;
    line-height: 0.9;
    color: var(--sage);
    margin-right: 8px;
    margin-top: 6px;
    font-weight: 500;
  }

  .signature {
    display: flex; align-items: center; gap: 18px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .signature-img {
    width: 56px; height: 56px;
    background: var(--terracotta-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .signature-name {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink);
  }
  .signature-title {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ========== FIRST TIME ========== */
  .first-time {
    background: var(--bg-warm);
    padding: 140px 56px;
    position: relative;
  }
  .ft-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
  }
  .ft-header .eyebrow { justify-content: center; }
  .ft-header .eyebrow::before, .ft-header .eyebrow::after {
    content: ''; width: 24px; height: 1px;
    background: var(--terracotta-deep);
  }
  .ft-header p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  .ft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ft-card {
    background: var(--paper);
    padding: 44px 36px;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--line);
  }
  .ft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42,40,37,0.08);
    border-color: var(--sage-pale);
  }
  .ft-icon {
    width: 56px; height: 56px;
    background: var(--sage-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--sage-deep);
    margin-bottom: 24px;
  }
  .ft-card.terra .ft-icon { background: var(--terracotta-pale); color: var(--terracotta-deep); }
  .ft-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .ft-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .ft-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
  }

  .ft-cta {
    text-align: center;
    margin-top: 60px;
  }

  /* ========== SERMONS ========== */
  .sermons {
    padding: 140px 56px;
  }
  .sermon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap; gap: 30px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .sermon-header .text { max-width: 560px; }
  .sermon-header p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 8px;
  }

  .sermon-feature {
    background: var(--sage-deep);
    color: var(--bg);
    border-radius: 8px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .sermon-feature-content { position: relative; }
  .sermon-tag {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 5px 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .sermon-feature h3 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .sermon-feature .meta {
    font-size: 13px;
    color: var(--terracotta-pale);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }
  .sermon-feature p {
    color: rgba(250,247,242,0.8);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
  }

  .play-btn {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--terracotta);
    color: white;
    padding: 16px 26px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 100px;
    transition: all 0.3s;
  }
  .play-btn:hover { background: var(--terracotta-deep); transform: translateY(-2px); }

  .sermon-visual {
    aspect-ratio: 4/3;
    background:
      linear-gradient(135deg, rgba(201,123,92,0.3), transparent),
      linear-gradient(45deg, #5C7050, #4A5C3F);
    border-radius: 4px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .sermon-visual .play-circle {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--sage-deep);
    cursor: pointer;
    transition: transform 0.3s;
  }
  .sermon-visual .play-circle:hover { transform: scale(1.1); }

  .sermon-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .sermon-item {
    background: var(--paper);
    padding: 28px;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--line);
  }
  .sermon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(42,40,37,0.08);
  }
  .sermon-item .meta {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .sermon-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .sermon-item .speaker {
    font-size: 13px;
    color: var(--muted);
  }

  /* ========== EVENTS ========== */
  .events {
    padding: 140px 56px;
    background: var(--bg-warm);
  }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .event-card {
    background: var(--paper);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 110px 1fr;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--line);
  }
  .event-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(42,40,37,0.08); }
  .event-date {
    background: var(--sage-pale);
    color: var(--sage-deep);
    padding: 28px 16px;
    text-align: center;
    display: flex; flex-direction: column; justify-content: center;
  }
  .event-card.alt .event-date { background: var(--terracotta-pale); color: var(--terracotta-deep); }
  .event-date .month {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .event-date .day {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
  }
  .event-date .weekday {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.75;
  }
  .event-content { padding: 24px 28px; }
  .event-content .tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .event-content h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .event-content p {
    color: var(--ink-soft);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  .event-meta {
    display: flex; gap: 14px;
    font-size: 12px;
    color: var(--muted);
  }

  /* ========== GIVE ========== */
  .give {
    padding: 140px 56px;
    background: var(--terracotta);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .give::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,235,213,0.2), transparent 70%);
  }
  .give-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .give h2 { color: white; font-weight: 400; }
  .give h2 em { color: #FFE6D5; font-style: italic; }
  .give p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .give blockquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 24px;
    color: white;
    margin: 36px auto 16px;
    max-width: 580px;
    line-height: 1.4;
    font-weight: 400;
  }
  .give cite {
    display: block;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
  }
  .give .btn-primary {
    background: white;
    color: var(--terracotta-deep);
  }
  .give .btn-primary:hover { background: var(--bg); color: var(--ink); }

  /* ========== FOOTER ========== */
  footer {
    background: var(--ink);
    color: rgba(250,247,242,0.7);
    padding: 80px 56px 36px;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand h4 {
    font-family: 'Fraunces', serif;
    color: var(--bg);
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 500;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 20px;
  }
  .footer-col h5 {
    color: var(--terracotta-pale);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(250,247,242,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--terracotta-pale); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(250,247,242,0.1);
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: rgba(250,247,242,0.45);
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--terracotta-pale);
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 700px) {
    .topbar { padding: 8px 20px; font-size: 11px; }
    .topbar-left { gap: 12px; }
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero { padding: 50px 20px 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    
    .strip { padding: 24px 20px; gap: 24px; }
    .welcome, .first-time, .sermons, .events, .give { padding: 80px 20px; }
    .welcome-grid { grid-template-columns: 1fr; gap: 80px; }
    .welcome-img-accent { width: 50%; bottom: -20px; right: -20px; }
    .welcome-quote { left: -10px; max-width: 180px; font-size: 13px; }
    .ft-grid { grid-template-columns: 1fr; }
    .sermon-feature { grid-template-columns: 1fr; padding: 36px 28px; gap: 30px; }
    .sermon-list { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    footer { padding: 60px 20px 28px; }
  }


  /* ========== COASTAL ACCENTS ========== */
  /* Subtle palm frond decorations - line illustrations, watermark style */
  .palm-accent {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
    z-index: 0;
  }
  .palm-accent svg { width: 100%; height: 100%; }

  .welcome { position: relative; }
  .welcome .palm-accent {
    top: 60px;
    right: -40px;
    width: 280px;
    height: 280px;
    transform: rotate(-15deg);
  }

  .first-time { position: relative; }
  .first-time .palm-accent-left {
    bottom: -30px;
    left: -60px;
    width: 220px;
    height: 220px;
    opacity: 0.08;
    transform: rotate(140deg);
  }

  .give { position: relative; }
  .give .palm-accent {
    top: 40px;
    left: 5%;
    width: 180px;
    height: 180px;
    opacity: 0.08;
    transform: rotate(-25deg);
  }
  .give .palm-accent-2 {
    bottom: 40px;
    right: 5%;
    width: 180px;
    height: 180px;
    opacity: 0.08;
    transform: rotate(155deg);
  }

  .welcome .container,
  .first-time .container,
  .give .give-content { position: relative; z-index: 1; }

  @media (max-width: 700px) {
    .palm-accent { display: none; }
  }


  /* ========== MOBILE HAMBURGER MENU ========== */
  .hamburger {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 110;
  }
  .hamburger span {
    display: block;
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger span:nth-child(1) { top: 14px; }
  .hamburger span:nth-child(2) { top: 21px; }
  .hamburger span:nth-child(3) { top: 28px; }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
  }

  /* Mobile menu overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 105;
    padding: 100px 32px 40px;
    overflow-y: auto;
  }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-menu li {
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu li:last-child {
    border-bottom: none;
    margin-top: 24px;
  }
  .mobile-menu a {
    display: block;
    padding: 22px 8px;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-menu a:hover, .mobile-menu a:focus { color: var(--sage-deep); }
  .mobile-menu a em {
    font-style: italic;
    color: var(--sage-deep);
    font-variation-settings: 'opsz' 144;
  }
  .mobile-menu .mobile-cta {
    background: var(--terracotta);
    color: white;
    text-align: center;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 32px;
  }
  .mobile-menu .mobile-cta:hover { background: var(--terracotta-deep); color: white; }
  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
  }
  .mobile-menu-footer a {
    display: inline;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--terracotta-deep);
  }
  body.menu-open { overflow: hidden; }


