/*
Theme Name: Deja Vu Barbershop
Theme URI: https://dejavubarberss.com/
Author: Deja Vu Barbershop
Description: Custom theme for Deja Vu Barbershop, Murray Hill NYC. Full-width design, no page builder required.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dejavu-barbershop
*/

/* ============================================
   DEJA VU BARBERSHOP — Redesign preview
   Real brand tokens extracted from the live site (not invented):
   gold/tan #c58c5f, hover gold #cd9f52, deep red accent #a0002e,
   near-black #1a1a1a, cream #fffcf5. Fonts: Teko (headings) + Roboto (body)
   — both already the real fonts live on dejavubarberss.com today.
   Architecture adapted from the agency's proven barbershop component
   system (LilAcroix Barbers build).
   ============================================ */

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

:root {
  --gold: #c58c5f;
  --gold-light: #cd9f52;
  --gold-dark: #a9754a;
  --accent: #a0002e;
  --dark: #1a1a1a;
  --darker: #000000;
  --text: #4a4a4a;
  --text-light: #8a8a8a;
  --bg: #ffffff;
  --bg-cream: #fffcf5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.3s ease;
  --font-heading: 'Teko', Arial, sans-serif;
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --nav-height: 84px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--darker); line-height: 1.15; font-weight: 600; letter-spacing: 0.3px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
p { margin-bottom: 1rem; }

.intro-copy { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.intro-copy p { font-size: 1.08rem; color: var(--text); line-height: 1.85; margin-bottom: 0; }
.section-label { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; display: block; }
.section-header { text-align: center; margin-bottom: 46px; }
.section-header p { color: var(--text-light); max-width: 620px; margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 14px auto 22px; border: none; }
.section { padding: 84px 0; background: var(--bg); }
.section-alt { padding: 84px 0; background: var(--bg-cream); }
.section-dark { padding: 84px 0; background: var(--darker); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: var(--white); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 34px; border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.4px; cursor: pointer; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--darker); border-color: var(--darker); }
.btn-outline-dark:hover { background: var(--darker); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* Utility bar (thin gold accent strip, matches real site) */
.topbar { background: var(--gold); color: var(--white); font-size: 0.85rem; }
.topbar-inner { max-width: var(--max-width); margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: var(--white); font-weight: 600; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-icon { flex-shrink: 0; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0; }
.topbar-social a:hover { background: rgba(255,255,255,0.32); }
@media (max-width: 700px) { .topbar-left span:first-child { display: none; } }

/* Header / Nav */
.navbar { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.98); box-shadow: 0 1px 14px rgba(0,0,0,0.07); }
.navbar-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); padding: 0 24px; }

/* Logo — real brand mark (GBP badge, transparent PNG, cropped to the badge itself) */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 18px; }
.footer-logo img { height: 68px; width: auto; display: block; }
@media (max-width: 920px) { .nav-logo img { height: 50px; } }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { font-size: 0.92rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.4px; display: inline-flex; align-items: center; gap: 4px; }
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--gold); }
.nav-menu .caret { font-size: 0.6rem; color: var(--text-light); }
.has-dd { position: relative; }
.dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 240px; background: var(--white); box-shadow: var(--shadow-lg); border-radius: 10px; padding: 10px; opacity: 0; visibility: hidden; transition: all 0.18s ease; }
.has-dd:hover .dropdown, .has-dd:focus-within .dropdown, .dropdown.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 16px; border-radius: 7px; font-size: 0.88rem; color: var(--text); text-transform: none; font-weight: 500; }
.dropdown a:hover { background: var(--bg-cream); color: var(--gold-dark); }

/* Mega-menu: grouped, multi-column services dropdown */
.dropdown.mega { display: flex; gap: 6px; min-width: 460px; padding: 16px; }
.dropdown.mega .mega-col { flex: 1; min-width: 210px; }
.dropdown.mega .dropdown-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-dark); padding: 4px 16px 10px; }
@media (max-width: 920px) {
  .dropdown.mega { flex-direction: column; min-width: 0; }
}

/* Contextual inline links inside body copy — must visually stand out, not blend into text */
.svc-main p a, .svc-main .check-list a, .blog-article p a, .intro-copy p a, .package-card > p a {
  color: var(--gold-dark);
  font-weight: 600;
}
.svc-main p a:hover, .svc-main .check-list a:hover, .blog-article p a:hover, .intro-copy p a:hover, .package-card > p a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.nav-cta { padding: 12px 26px !important; background: var(--gold); color: var(--white) !important; border-radius: 50px; }
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--dark); display: block; }
.nav-overlay { display: none; }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0 30px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { border-bottom: 1px solid #f0f0f0; }
  .nav-menu > li > a { padding: 16px 24px; justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; padding: 0 0 8px 24px; display: none; background: var(--bg-cream); min-width: 0; }
  .dropdown.open { display: block; }
  .nav-cta { margin: 14px 24px 0; text-align: center; }
  .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 150; }
  .nav-overlay.active { opacity: 1; visibility: visible; }
}

/* Hero (multi-slide carousel — plain CSS/JS, no dependency) */
.hero { position: relative; min-height: 640px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1s ease; }
.hero-slide.active { position: relative; opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%); }
.hero-slide .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; padding: 60px 24px; }
.hero .badge { display: inline-block; padding: 8px 18px; background: rgba(197,140,95,0.9); border-radius: 50px; font-size: 0.78rem; color: var(--white); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero-bullets { margin-bottom: 30px; }
.hero-bullets li { position: relative; padding-left: 26px; margin-bottom: 9px; color: rgba(255,255,255,0.92); font-size: 1.02rem; }
.hero-bullets li::before { content: ''; position: absolute; left: 0; top: 4px; width: 15px; height: 15px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cd9f52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; }
.hero-dot.active { background: var(--gold); }
@media (max-width: 768px) { .hero-dots { bottom: 16px; } }

/* page-hero (inner pages) */
.page-hero { position: relative; padding: 130px 0 60px; background-size: cover; background-position: center; color: var(--white); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.86), rgba(0,0,0,0.6)); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; font-size: 1.05rem; }

/* Trust strip — inline stats, no cards/boxes */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; }
.trust-stat { flex: 1 1 220px; display: flex; align-items: center; gap: 16px; padding: 10px 30px; border-left: 1px solid rgba(0,0,0,0.1); }
.trust-stat:first-child { border-left: none; }
.trust-icon { width: 42px; height: 42px; flex-shrink: 0; color: var(--gold-dark); }
.trust-icon svg { width: 100%; height: 100%; }
.trust-stat h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 2px; text-transform: none; color: var(--darker); }
.trust-stat p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
@media (max-width: 768px) { .trust-stat { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding: 18px 10px; } .trust-stat:first-child { border-top: none; } }

/* Services — uniform card grid, consistent photo treatment */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px 90px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.service-card-top h3 { font-size: 1.3rem; text-transform: none; }
.service-card-top .service-price-tag { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-dark); flex-shrink: 0; }
.service-card-body p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 18px; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--gold-dark); }
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Price list (service hub / category) */
.price-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; background: var(--white); border: 1px solid #f1ebe1; border-radius: var(--radius); transition: var(--transition); }
.price-row:hover { box-shadow: var(--shadow); transform: translateX(3px); }
.price-row .sv-name { font-weight: 700; color: var(--darker); font-family: var(--font-body); }
.price-row .sv-name a { color: var(--darker); }
.price-row .sv-name a:hover { color: var(--gold-dark); }
.price-row .sv-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; max-width: 520px; }
.price-row .sv-meta { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.price-row .sv-price { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold-dark); }

/* Service detail (two-column: content + sticky sidebar) */
.svc-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.svc-main img { border-radius: var(--radius-lg); margin-bottom: 28px; box-shadow: var(--shadow); }
.svc-main h2 { font-size: 1.7rem; margin: 34px 0 14px; text-transform: none; }
.svc-main ul.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.svc-main ul.check-list li::before { content: ''; position: absolute; left: 0; top: 4px; width: 15px; height: 15px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c58c5f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }
.svc-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); display: grid; gap: 18px; }
.svc-card { background: var(--bg-cream); border-radius: var(--radius-lg); padding: 24px; }
.svc-card h4 { font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; color: var(--darker); }
.svc-card .price-big { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold-dark); margin-bottom: 14px; }
.svc-card ul li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; }
.svc-card ul li:last-child { border-bottom: none; }
.svc-card ul li a:hover { color: var(--gold-dark); }
.svc-card .btn { width: 100%; justify-content: center; }
.svc-map { border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; border: 1px solid rgba(0,0,0,0.08); }
.svc-map iframe { width: 100%; height: 150px; border: 0; display: block; }

/* Inline contextual CTA (service pages linking to guides, and vice versa) */
.blog-cta-inline { background: var(--bg-cream); border-radius: var(--radius); padding: 26px 28px; margin: 34px 0; text-align: center; }
.blog-cta-inline p { margin-bottom: 16px; }

/* Testimonials */
.quote-carousel { position: relative; max-width: 780px; margin: 0 auto; min-height: 200px; }
.quote-slide { display: none; text-align: center; }
.quote-slide.active { display: block; }
.quote-slide .stars { color: var(--gold-light); margin-bottom: 18px; letter-spacing: 4px; font-size: 1.1rem; }
.quote-slide p { font-family: var(--font-heading); font-weight: 500; font-style: normal; color: var(--white); font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.4; margin-bottom: 22px; text-transform: none; }
.quote-slide .author { font-weight: 700; color: var(--gold-light); font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.5px; }
.quote-dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.quote-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; padding: 0; }
.quote-dot.active { background: var(--gold); }

/* FAQ */
.faq-item { border-bottom: 1px solid #eee; }
.faq-question { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; font-size: 1.05rem; font-weight: 700; color: var(--darker); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* CTA band + full CTA */
.cta-band { background: var(--darker); padding: 54px 24px; text-align: center; color: rgba(255,255,255,0.85); border-top: 3px solid var(--gold); }
.cta-band h3 { color: var(--white); margin-bottom: 8px; }
.cta-band p { margin-bottom: 22px; opacity: 0.85; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.4); }
.cta-band .btn-primary { border-color: var(--gold); }

/* Location */
.location-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.map-frame { width: 100%; height: 360px; border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hours-list { margin: 18px 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; }
.hours-list li.closed { color: var(--accent); font-weight: 600; }

/* Footer */
.footer { background: var(--darker); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.5px; }
.footer a:hover { color: var(--gold-light); }
.footer li { margin-bottom: 9px; font-size: 0.9rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; text-align: center; font-size: 0.82rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.package-card { background: var(--white); border: 1px solid #f1ebe1; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.package-card h3 { font-size: 1.5rem; margin-bottom: 8px; text-transform: none; }
.package-card > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 18px; }
.package-includes { margin: 0 0 22px; flex: 1; }
.package-includes li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 0.95rem; }
.package-includes li::before { content: ''; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c58c5f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }
.package-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.package-price { font-family: var(--font-heading); font-size: 2.1rem; color: var(--gold-dark); }
.package-was { text-decoration: line-through; color: var(--text-light); font-size: 0.95rem; }
.package-save { display: inline-block; background: var(--bg-cream); color: var(--gold-dark); font-size: 0.75rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; }
@media (max-width: 800px) { .packages-grid { grid-template-columns: 1fr; } }

/* Fade-up scroll reveal */
.js .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .location-split { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section, .section-alt, .section-dark { padding: 50px 0; }
  .hero { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .price-row { flex-wrap: wrap; }
}


/* ===== Page-specific styles (from the redesign preview) ===== */
.contact-layout{display:grid;grid-template-columns:1.1fr 0.9fr;gap:56px;align-items:start;}
  @media (max-width:900px){.contact-layout{grid-template-columns:1fr;}}
  .contact-form label{display:block;font-size:0.82rem;font-weight:600;letter-spacing:0.03em;text-transform:uppercase;color:var(--text-light);margin-bottom:6px;}
  .contact-form input, .contact-form textarea{width:100%;padding:13px 14px;border:1px solid #ddd;border-radius:4px;font-family:'Roboto',sans-serif;font-size:0.95rem;margin-bottom:18px;background:#fff;}
  .contact-form textarea{resize:vertical;min-height:120px;}
  .contact-form input:focus, .contact-form textarea:focus{outline:none;border-color:var(--gold);}
  .contact-info-card{background:var(--bg-cream);border-radius:6px;padding:32px;margin-bottom:20px;}
  .contact-info-card h4{text-transform:uppercase;letter-spacing:0.05em;font-size:0.95rem;margin-bottom:14px;color:var(--darker);}
  .contact-info-row{display:flex;align-items:center;gap:12px;margin-bottom:14px;font-size:0.95rem;}
  .contact-info-row:last-child{margin-bottom:0;}
  .ci-icon{width:20px;height:20px;flex-shrink:0;color:var(--gold-dark);}
  .ci-icon svg{width:100%;height:100%;}
  .map-embed{border-radius:6px;overflow:hidden;border:1px solid #eee;margin-top:20px;}
  .map-embed iframe{width:100%;height:280px;border:0;display:block;}

.thankyou-hero{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;background:var(--darker);color:#fff;padding:60px 24px;}
  .thankyou-hero .check{width:72px;height:72px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;margin:0 auto 24px;color:var(--darker);}
  .thankyou-hero .check svg{width:34px;height:34px;}
  .thankyou-hero h1{color:#fff;margin-bottom:14px;}
  .thankyou-hero p{color:#cfcfcf;max-width:520px;margin:0 auto 32px;}

.blog-article{max-width:760px;margin:0 auto;}
  .blog-meta{font-size:0.85rem;color:var(--text-light);text-transform:uppercase;letter-spacing:0.04em;margin-bottom:18px;}
  .blog-article h2{margin-top:34px;text-transform:none;font-size:1.5rem;}
  .blog-article p{margin-bottom:16px;}
  .blog-hero-img{width:100%;border-radius:6px;margin:20px 0 30px;}
  .blog-cta-inline{background:var(--bg-cream);border-radius:6px;padding:26px 28px;margin:34px 0;text-align:center;}
  .blog-cta-inline p{margin-bottom:16px;}

.blog-article{max-width:760px;margin:0 auto;}
  .blog-meta{font-size:0.85rem;color:var(--text-light);text-transform:uppercase;letter-spacing:0.04em;margin-bottom:18px;}
  .blog-article h2{margin-top:34px;text-transform:none;font-size:1.5rem;}
  .blog-article p{margin-bottom:16px;}
  .blog-article ul{margin:0 0 20px 22px;}
  .blog-article li{margin-bottom:8px;}
  .blog-hero-img{width:100%;border-radius:6px;margin:20px 0 30px;}
  .blog-cta-inline{background:var(--bg-cream);border-radius:6px;padding:26px 28px;margin:34px 0;text-align:center;}
  .blog-cta-inline p{margin-bottom:16px;}

/* ===== WordPress-specific additions ===== */
.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .navbar { top: 46px; } }

/* Contact Form 7 inside the designed contact layout */
.contact-form p { margin-bottom: 0; }
.contact-form .wpcf7-form-control-wrap { display: block; }
.contact-form input[type="submit"], .contact-form .wpcf7-submit { width: 100%; background: var(--gold); color: #fff; border: 2px solid var(--gold); border-radius: 50px; padding: 15px 34px; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.4px; cursor: pointer; margin-bottom: 0; transition: var(--transition); }
.contact-form input[type="submit"]:hover, .contact-form .wpcf7-submit:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.contact-form .wpcf7-spinner { display: block; margin: 10px auto 0; }
.contact-form .wpcf7-response-output { margin: 14px 0 0; padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; }
.contact-form .wpcf7-not-valid-tip { color: var(--accent); font-size: 0.82rem; margin: -12px 0 14px; display: block; }

/* Generic WP content (pages without a dedicated template, e.g. Privacy Policy) */
.wp-content-page { max-width: 820px; margin: 0 auto; }
.wp-content-page h2, .wp-content-page h3 { text-transform: none; margin: 30px 0 12px; }
.wp-content-page ul, .wp-content-page ol { list-style: disc; margin: 0 0 18px 22px; }
.wp-content-page ol { list-style: decimal; }
.wp-content-page a { color: var(--gold-dark); font-weight: 600; }
.wp-content-page img { border-radius: var(--radius); margin: 18px 0; }
.blog-article ul { list-style: disc; margin: 0 0 20px 22px; }
