/* =============================================
   SIROCHMAN MEDIA - SITE-WIDE STYLE IMPROVEMENTS
   ============================================= */

/* MOBILE MENU */
dialog[aria-label="Menu"],
.wp-block-navigation__responsive-dialog {
  background-color: #005000 !important;
}
dialog[aria-label="Menu"] a,
dialog[aria-label="Menu"] .wp-block-navigation-item__content,
.wp-block-navigation__responsive-dialog a {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.05em !important;
  padding: 8px 0 !important;
  display: block !important;
}
dialog[aria-label="Menu"] button,
.wp-block-navigation__responsive-close {
  color: #ffffff !important;
  font-size: 1.4rem !important;
}

/* SECTION HEADINGS - centered with green underline */
h2.wp-block-heading {
  text-align: center !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 2rem !important;
  padding-bottom: 0.6em !important;
}
h2.wp-block-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #005000;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

/* BODY TEXT */
body { color: #222222; }
.entry-content p, .wp-block-group p {
  line-height: 1.85 !important;
  color: #333 !important;
}

/* IMAGE HOVER EFFECT */
figure.wp-block-image img,
.wp-block-gallery img {
  border-radius: 6px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
figure.wp-block-image img:hover,
.wp-block-gallery img:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

/* PRICING - highlight service names */
.entry-content strong {
  color: #005000 !important;
  font-size: 1.05rem !important;
}

/* PREPARATION - left border on sub-headings */
.entry-content h2 {
  border-left: 4px solid #005000 !important;
  padding-left: 0.8rem !important;
  text-align: left !important;
}
.entry-content h2::after {
  display: none !important;
}

/* FOOTER - improved contrast and centering */
footer, .wp-block-template-part footer,
[class*="footer"] {
  background-color: #0a2e0a !important;
  padding: 3rem 2rem !important;
  text-align: center !important;
}
footer .wp-block-columns {
  justify-content: center !important;
  gap: 3rem !important;
}
footer p, footer address, footer li,
footer .wp-block-site-title,
footer .wp-block-paragraph {
  color: #dddddd !important;
  font-size: 0.95rem !important;
  line-height: 1.9 !important;
  text-align: center !important;
}
footer a {
  color: #88dd88 !important;
  text-decoration: none !important;
}
footer a:hover { text-decoration: underline !important; }
footer h2, footer .wp-block-site-title a {
  color: #ffffff !important;
  font-size: 1rem !important;
  letter-spacing: 0.15em !important;
}

/* HEADER SHADOW */
header { box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important; }

/* MOBILE */
@media (max-width: 768px) {
  h1.wp-block-heading { font-size: 2.4rem !important; }
  h2.wp-block-heading { font-size: 1.4rem !important; }
  .entry-content p { max-width: 100% !important; padding: 0 1rem !important; }
  footer .wp-block-columns { flex-direction: column !important; align-items: center !important; }
}

/* NAV - remove green background box, make links green on white */
.wp-block-navigation,
.wp-block-navigation ul,
.wp-block-navigation .wp-block-navigation__container {
  background-color: transparent !important;
}
.wp-block-navigation .wp-block-navigation-item__content {
  background-color: transparent !important;
  color: #005000 !important;
}
.wp-block-navigation .wp-block-navigation-item__content:hover {
  text-decoration: underline !important;
}

/* LOGO - match nav link size */
.wp-block-site-title a,
.wp-block-site-title {
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
  color: #005000 !important;
  text-transform: uppercase !important;
}

/* NAV - remove green background, make transparent */
header .wp-block-group.has-primary-background-color,
header .has-primary-background-color {
  background-color: transparent !important;
}
header .wp-block-navigation .wp-block-navigation-item__content {
  color: #005000 !important;
}

/* LOGO - match nav font size */
.wp-block-site-title a {
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
  color: #005000 !important;
  text-transform: uppercase !important;
}

/* ===== SIROCHMAN MEDIA NEW SITE CSS ===== */
:root {
    --green-deep: #003a00;
    --green-mid: #005000;
    --green-bright: #007a00;
    --green-light: #e8f5e8;
    --gold: #c9a84c;
    --off-white: #f9f8f5;
    --dark: #111111;
    --mid-gray: #555555;
    --light-gray: #e0ddd8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--dark);
    overflow-x: hidden;
  }

  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--green-deep);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--green-deep);
    color: #fff;
  }

  .nav-cta {
    background: var(--green-mid) !important;
    color: #fff !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2px !important;
  }

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

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--green-deep);
    padding: 1.5rem 2rem;
    gap: 0.25rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  .hero {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,80,0,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 80% 80%, rgba(0,80,0,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 9vw, 8rem); font-weight: 700; line-height: 0.95; color: var(--green-deep); letter-spacing: -0.01em; margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards; }
  .hero-title em { font-style: italic; font-weight: 300; color: var(--green-mid); }
  .hero-subtitle { font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; color: var(--mid-gray); max-width: 580px; line-height: 1.85; margin: 1.5rem auto 3rem; opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
  .hero-divider { width: 1px; height: 80px; background: var(--light-gray); margin: 4rem auto 0; opacity: 0; animation: fadeUp 0.8s ease 1s forwards; }

  .btn-primary { background: var(--green-deep); color: #fff; padding: 1rem 2.5rem; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: 2px solid var(--green-deep); cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { background: transparent; color: var(--green-deep); }
  .btn-secondary { background: transparent; color: var(--green-deep); padding: 1rem 2.5rem; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: 2px solid var(--green-deep); cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block; }
  .btn-secondary:hover { background: var(--green-deep); color: #fff; }

  .section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
  .section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-mid); text-align: center; margin-bottom: 0.75rem; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; text-align: center; color: var(--green-deep); margin-bottom: 3.5rem; letter-spacing: 0.02em; }

  .specialities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .spec-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--green-light); }
  .spec-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
  .spec-card:hover img { transform: scale(1.06); }
  .spec-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,30,0,0.75) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 1.5rem; transition: background 0.3s; }
  .spec-card:hover .spec-card-overlay { background: linear-gradient(to top, rgba(0,30,0,0.85) 0%, rgba(0,30,0,0.2) 100%); }
  .spec-card-name { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

  .about-section { background: var(--green-deep); color: #fff; padding: 6rem 2rem; }
  .about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .about-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2; margin-bottom: 2rem; color: #fff; }
  .about-title strong { font-weight: 700; font-style: italic; }
  .about-text p { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
  .about-image-wrap { position: relative; }
  .about-image-wrap::before { content: ''; position: absolute; top: -16px; right: -16px; bottom: 16px; left: 16px; border: 2px solid rgba(201,168,76,0.4); pointer-events: none; z-index: 0; }
  .about-image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; position: relative; z-index: 1; }

  footer { background: #020f02; color: rgba(255,255,255,0.6); padding: 4rem 2rem; text-align: center; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.25em; color: #fff; text-transform: uppercase; margin-bottom: 1.5rem; }
  .footer-tagline { font-size: 0.9rem; font-weight: 300; line-height: 1.8; max-width: 500px; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.5); }
  .footer-contact { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .footer-contact-item { text-align: center; }
  .footer-contact-item .label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
  .footer-contact-item a, .footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  .footer-contact-item a:hover { color: #fff; }
  .footer-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.15); margin: 0 auto 1.5rem; }
  .footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

  .page-header { background: var(--green-deep); padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0,120,0,0.15) 0%, transparent 70%); pointer-events: none; }
  .page-header-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .page-header-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; color: #fff; letter-spacing: 0.02em; }
  .page-header-sub { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.7); max-width: 560px; margin: 1.25rem auto 0; line-height: 1.8; }

  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
  .pricing-card { background: #fff; border: 1px solid var(--light-gray); padding: 2.5rem; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
  .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .pricing-card.featured { border-color: var(--green-mid); border-width: 2px; }
  .pricing-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -1px; left: 2rem; background: var(--green-mid); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; padding: 0.3rem 0.8rem; }
  .pricing-card-name { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.75rem; }
  .pricing-card-price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--green-deep); line-height: 1; margin-bottom: 0.25rem; }
  .pricing-card-price-note { font-size: 0.75rem; color: var(--mid-gray); margin-bottom: 1.5rem; }
  .pricing-divider { width: 40px; height: 2px; background: var(--light-gray); margin-bottom: 1.5rem; }
  .pricing-card-desc { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.85; }
  .pricing-note { font-size: 0.78rem; color: var(--green-mid); font-weight: 600; margin-top: 0.75rem; font-style: italic; }
  .pricing-footer { text-align: center; padding: 0 2rem 5rem; max-width: 700px; margin: 0 auto; }
  .pricing-footer p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.8; margin-bottom: 2rem; }

  .prep-content { max-width: 800px; margin: 0 auto; padding: 5rem 2rem; }
  .prep-intro { font-size: 1rem; color: var(--mid-gray); line-height: 1.9; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--light-gray); }
  .prep-step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--light-gray); align-items: start; }
  .prep-step-num { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--green-mid); border: 2px solid var(--green-mid); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; background: #fff; }
  .prep-step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.75rem; }
  .prep-step-desc { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.9; }
  .prep-extras { background: var(--green-deep); color: #fff; padding: 3rem; margin-top: 1rem; }
  .prep-extras-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; }
  .prep-extra-item { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.8); }
  .prep-extra-item::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 700; }

  .form-group { margin-bottom: 1.75rem; }
  .form-label { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 0.5rem; }
  .form-label .req { color: var(--green-mid); }
  .form-input, .form-select, .form-textarea { width: 100%; padding: 0.85rem 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: var(--dark); background: #fff; border: 1px solid var(--light-gray); outline: none; transition: border-color 0.2s; appearance: none; }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green-mid); }
  .form-textarea { min-height: 130px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .form-submit { width: 100%; padding: 1.1rem; background: var(--green-deep); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border: 2px solid var(--green-deep); cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; }
  .form-submit:hover { background: transparent; color: var(--green-deep); }

  .contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; align-items: start; }
  .contact-info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; }
  .contact-info-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--green-deep); margin-bottom: 1.5rem; line-height: 1.2; }
  .contact-info-text { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.9; margin-bottom: 2.5rem; }
  .contact-detail { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
  .contact-detail-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.3rem; }
  .contact-detail-value { font-size: 1rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.2s; }
  .contact-detail-value:hover { color: var(--green-mid); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 5rem; }
  .gallery-item { overflow: hidden; aspect-ratio: 1; background: var(--green-light); cursor: zoom-in; }
  .gallery-item.tall { aspect-ratio: 2/3; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; display: block; }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-back { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); cursor: pointer; padding: 2rem 2rem 0; max-width: 1200px; margin: 0 auto; display: block; }
  .gallery-back:hover { color: var(--green-deep); }

  @media (max-width: 900px) { .specialities-grid { grid-template-columns: repeat(2, 1fr); } .about-inner { grid-template-columns: 1fr; gap: 3rem; } .about-image-wrap { order: -1; } .about-image-wrap img { aspect-ratio: 4/3; } .contact-split { grid-template-columns: 1fr; gap: 3rem; } }
  @media (max-width: 640px) { .nav-links { display: none; } .hamburger { display: flex; } .specialities-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } .pricing-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .prep-step { grid-template-columns: 1fr; } .prep-step-num { width: 48px; height: 48px; font-size: 2.5rem; } .hero-title { font-size: clamp(3rem, 12vw, 5rem); } .footer-contact { gap: 2rem; } }