:root {
  --ink: #1a2333;
  --ink-soft: #2a3346;
  --orange: #C99850;       /* gold from logo */
  --orange-deep: #A07A38;  /* deeper gold */
  --gold: #C99850;
  --gold-deep: #A07A38;
  --gold-glow: rgba(201, 152, 80, 0.35);
  --fb-blue: #1877F2;
  --cream: #F5EFE6;
  --cream-soft: #faf6ef;
  --white: #ffffff;
  --muted: #5b6878;
  --line: rgba(26, 35, 51, 0.12);
  --shadow: 0 18px 40px rgba(26, 35, 51, 0.12);
  --shadow-lg: 0 28px 60px rgba(26, 35, 51, 0.18);
  --serif: 'Oswald', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream-soft); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.1; letter-spacing: 0.01em; text-transform: uppercase; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  height: 64px; width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(26,35,51,0.08));
  transition: transform 0.25s;
}
.brand:hover .brand-logo { transform: scale(1.04); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase; }
.brand-tag { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; color: var(--gold-deep); text-transform: uppercase; margin-top: 5px; font-weight: 600; }
@media (max-width: 600px) {
  .brand { gap: 8px; }
  .brand-logo { height: 44px; }
  .brand-name { font-size: 13px; letter-spacing: 0.04em; }
  .brand-tag { font-size: 9px; letter-spacing: 0.18em; margin-top: 3px; }
  .header-inner { padding: 10px 14px; gap: 8px; }
}
@media (max-width: 380px) {
  .brand-tag { display: none; }
}
.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a { font-family: var(--serif); font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 0; border-bottom: 2px solid transparent; transition: 0.2s; }
.nav-desktop a:hover, .nav-desktop a.is-active { border-bottom-color: var(--orange); color: var(--orange-deep); }
.header-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 12px 24px; border-radius: 4px;
  font-family: var(--serif); font-weight: 500; font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
  transition: 0.2s;
}
.header-cta:hover { background: var(--ink); }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: 0.25s; }
.nav-mobile { display: none; }
@media (max-width: 960px) {
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .brand-logo { height: 52px; }
  .nav-mobile {
    display: flex; flex-direction: column;
    position: fixed; top: 86px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 28px 32px;
    border-bottom: 3px solid var(--orange);
    transform: translateY(-130%); transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 86px); overflow-y: auto;
  }
  body.menu-open .nav-mobile { transform: translateY(0); }
  body.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-mobile a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 18px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); }
  .nav-mobile a.is-active { color: var(--orange-deep); }
  .nav-mobile-cta {
    margin-top: 18px; background: var(--orange); color: var(--white) !important;
    padding: 16px; border-radius: 4px; text-align: center;
    font-size: 16px !important; border: none !important;
  }
}
main { padding-top: 88px; }

/* ===== HERO (home) ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay { display: none; }
.hero-content { text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 0 28px rgba(0,0,0,0.55); }
.hero-content .btn, .hero-content .hero-eyebrow { text-shadow: none; }
.hero-badge-num, .hero-badge-label { text-shadow: 0 2px 10px rgba(0,0,0,0.85); }
.hero-content { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 80px 28px; width: 100%; color: var(--cream-soft); }
.hero-eyebrow { display: inline-block; padding: 8px 18px; margin-bottom: 28px; border: 1px solid var(--orange); color: var(--orange); font-family: var(--serif); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; border-radius: 2px; }
.hero h1 { font-size: clamp(44px, 7vw, 92px); color: var(--cream-soft); margin-bottom: 28px; max-width: 920px; font-weight: 500; line-height: 1; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: clamp(17px, 1.6vw, 22px); opacity: 0.9; margin-bottom: 40px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-block; padding: 16px 36px; font-family: var(--serif); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; font-size: 14px; border-radius: 4px; transition: 0.2s; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--orange); color: var(--white) !important; border-color: var(--orange); }
.btn-primary:hover { background: var(--cream-soft); color: var(--ink) !important; border-color: var(--cream-soft); }
.btn-ghost { background: transparent; color: var(--cream-soft) !important; border-color: var(--cream-soft); }
.btn-ghost:hover { background: var(--cream-soft); color: var(--ink) !important; }
.btn-dark { background: var(--ink); color: var(--cream-soft) !important; border-color: var(--ink); }
.btn-dark:hover { background: var(--orange); border-color: var(--orange); }

.hero-badges { display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge-num { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--orange); line-height: 1; }
.hero-badge-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,239,230,0.75); margin-top: 6px; }

/* ===== MOBILE HERO READABILITY ===== */
@media (max-width: 700px) {
  .hero { min-height: 86vh; }
  .hero-content {
    padding: 36px 22px;
    background: linear-gradient(180deg, rgba(15,22,34,0.78) 0%, rgba(15,22,34,0.62) 60%, rgba(15,22,34,0.78) 100%);
    border-radius: 10px;
    margin: 18px 14px;
    max-width: calc(100% - 28px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    text-shadow: none;
  }
  .hero h1 { font-size: 40px; line-height: 1.05; margin-bottom: 18px; text-shadow: none; }
  .hero p { font-size: 16px; line-height: 1.55; margin-bottom: 26px; opacity: 1; color: rgba(245,239,230,0.96); text-shadow: none; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 11px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 14px 22px; font-size: 13px; flex: 1 1 auto; text-align: center; }
  .hero-badges { gap: 18px; margin-top: 32px; justify-content: space-between; }
  .hero-badge-num { font-size: 30px; text-shadow: none; }
  .hero-badge-label { font-size: 10px; letter-spacing: 0.16em; text-shadow: none; }
}

/* ===== PAGE HEADER (non-home) ===== */
.page-hero { position: relative; min-height: 380px; display: flex; align-items: center; background-size: cover; background-position: center; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,35,51,0.92), rgba(26,35,51,0.7)); }
.page-hero-content { position: relative; z-index: 2; padding: 80px 28px; max-width: 1320px; margin: 0 auto; width: 100%; color: var(--cream-soft); }
.page-hero h1 { color: var(--cream-soft); font-size: clamp(40px, 5vw, 72px); margin-bottom: 14px; font-weight: 500; }
.page-hero p { font-size: 19px; color: var(--orange); font-family: var(--serif); letter-spacing: 0.04em; }

/* ===== SECTIONS ===== */
section { padding: 100px 28px; position: relative; }
.container { max-width: 1320px; margin: 0 auto; }
.eyebrow { display: inline-block; font-family: var(--serif); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 22px; font-weight: 500; }
.section-title { font-size: clamp(36px, 4.5vw, 58px); margin-bottom: 26px; font-weight: 500; line-height: 1.05; }
.section-title span { color: var(--orange); }
.section-lede { font-size: 19px; color: var(--muted); max-width: 720px; margin-bottom: 64px; }
.text-center { text-align: center; }
.text-center .section-lede { margin-left: auto; margin-right: auto; }

section.bg-cream { background: var(--cream); }
section.bg-image { color: var(--cream-soft); background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
section.bg-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,35,51,0.92), rgba(26,35,51,0.95)); }
section.bg-image > .container { position: relative; z-index: 1; }
section.bg-image h2, section.bg-image h3 { color: var(--cream-soft); }
section.bg-image h2 span, section.bg-image .eyebrow { color: var(--orange); }
section.bg-image p { color: rgba(245,239,230,0.86); }
section.bg-dark { background: var(--ink); color: var(--cream-soft); }
section.bg-dark h2, section.bg-dark h3 { color: var(--cream-soft); }
section.bg-dark h2 span { color: var(--orange); }
section.bg-dark .eyebrow { color: var(--orange); }
section.bg-dark p { color: rgba(245,239,230,0.78); }

/* ===== GRID ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 42px; } }
.two-col img { border-radius: 6px; box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 72px; }
@media (max-width: 700px) { .stats-row { grid-template-columns: 1fr; gap: 24px; } }
.stat { text-align: center; padding: 32px 20px; border-top: 3px solid var(--orange); background: rgba(255,255,255,0.04); }
section.bg-cream .stat { background: var(--white); }
.stat-num { font-family: var(--serif); font-size: 64px; font-weight: 500; color: var(--orange); line-height: 1; }
.stat-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 10px; font-weight: 500; }
section.bg-image .stat-label, section.bg-dark .stat-label { color: rgba(245,239,230,0.7); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 44px; }
@media (max-width: 700px) { .services-grid { gap: 28px; } }
.service-card { background: var(--white); padding: 38px 32px; border-left: 3px solid var(--orange); border-radius: 4px; box-shadow: var(--shadow); transition: 0.25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card h3 { font-size: 24px; margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: 16px; }
section.bg-image .service-card, section.bg-dark .service-card { background: rgba(255,255,255,0.05); border-left-color: var(--orange); }
section.bg-image .service-card p, section.bg-dark .service-card p { color: rgba(245,239,230,0.78); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 4px; aspect-ratio: 4/3; box-shadow: var(--shadow); background: var(--ink); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: '+'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); background: var(--orange); color: var(--white); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: 0.3s; }
.gallery-item:hover::after { transform: translate(-50%,-50%) scale(1); }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(26,35,51,0.96); z-index: 1000; align-items: center; justify-content: center; padding: 28px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 90vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--cream-soft); font-size: 40px; cursor: pointer; line-height: 1; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 44px; }
@media (max-width: 700px) { .reviews-grid { gap: 28px; } }
.review-card { background: var(--white); padding: 38px 34px; border-top: 4px solid var(--orange); border-radius: 4px; box-shadow: var(--shadow); }
.review-stars { color: var(--orange); font-size: 18px; letter-spacing: 4px; margin-bottom: 16px; }
.review-text { font-family: var(--sans); font-size: 17px; color: var(--ink) !important; margin-bottom: 20px; line-height: 1.6; font-style: italic; }
.review-theme { font-family: var(--serif); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-deep) !important; font-weight: 500; }
section.bg-image .review-card, section.bg-dark .review-card { background: var(--cream-soft); }

/* ===== FAQ ===== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 30px 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 14px; text-transform: none; letter-spacing: 0.02em; font-weight: 500; }
.faq-q::before { content: 'Q · '; color: var(--orange); font-weight: 600; }
.faq-a { color: var(--muted); font-size: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card { background: var(--white); padding: 50px 44px; border-radius: 6px; box-shadow: var(--shadow); border-top: 4px solid var(--orange); }
.contact-card h3 { font-size: 28px; margin-bottom: 28px; }
.contact-row { display: flex; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border: none; }
.contact-row strong { font-family: var(--serif); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; font-weight: 500; }
.contact-row span { font-size: 17px; color: var(--ink); }
.contact-row a { color: var(--ink); }
.contact-row a:hover { color: var(--orange-deep); }
.big-phone { background: var(--ink); color: var(--cream-soft); border-radius: 6px; padding: 50px 30px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.big-phone .eyebrow { color: var(--orange); margin-bottom: 18px; }
.big-phone a { color: var(--orange); font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); font-weight: 500; display: block; margin-bottom: 16px; letter-spacing: 0.02em; }
.big-phone a:hover { color: var(--cream-soft); }
.big-phone p { color: rgba(245,239,230,0.78); }

/* ===== CTA STRIP ===== */
.cta-strip { text-align: center; padding: 90px 28px; background: var(--ink); color: var(--cream-soft); }
.cta-strip h2 { color: var(--cream-soft); font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 20px; }
.cta-strip h2 span { color: var(--orange); }
.cta-strip p { color: rgba(245,239,230,0.78); margin-bottom: 34px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.site-footer { background: #0f1622; color: rgba(245,239,230,0.72); padding: 80px 28px 32px; }
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo { height: 96px; width: auto; background: var(--cream-soft); padding: 10px 14px; border-radius: 6px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.footer-name { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--cream-soft); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-fb { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold); font-family: var(--serif); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; transition: 0.2s; }
.footer-fb:hover { color: var(--cream-soft); }
.footer-tag { font-family: var(--sans); font-size: 16px; color: rgba(245,239,230,0.82); max-width: 320px; }
.footer-col h4 { color: var(--orange); font-family: var(--serif); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.footer-col p { margin-bottom: 6px; font-size: 14px; line-height: 1.6; }
.footer-phone { color: var(--orange); font-family: var(--serif); font-size: 28px; font-weight: 500; display: block; letter-spacing: 0.02em; }
.footer-phone:hover { color: var(--cream-soft); }
.footer-bottom { max-width: 1320px; margin: 56px auto 0; padding-top: 28px; border-top: 1px solid rgba(245,239,230,0.12); text-align: center; font-size: 13px; color: rgba(245,239,230,0.5); }

/* ===== VIBRANCE STRIP (home, under hero) ===== */
.vibrance-strip {
  background: linear-gradient(90deg, var(--gold) 0%, #d8a866 50%, var(--gold) 100%);
  padding: 22px 28px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.vibrance-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.vibrance-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 15px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); font-weight: 600;
  white-space: nowrap;
}
.vibrance-icon { font-size: 22px; line-height: 1; }
@media (max-width: 700px) {
  .vibrance-inner { justify-content: flex-start; }
  .vibrance-item { font-size: 13px; gap: 8px; }
}

/* ===== FACEBOOK BUTTONS ===== */
.btn-fb {
  background: var(--fb-blue); color: var(--white) !important; border-color: var(--fb-blue);
  display: inline-flex; align-items: center;
}
.btn-fb:hover { background: #0e5cc4; border-color: #0e5cc4; }
.nav-mobile-fb {
  margin-top: 12px; text-align: center; color: var(--fb-blue) !important;
  font-family: var(--serif); font-size: 14px !important; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px !important; border: 1px solid var(--fb-blue) !important;
  border-radius: 4px;
}
.big-phone-fb {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 22px; padding: 12px 22px;
  background: var(--fb-blue); color: var(--white) !important;
  font-family: var(--serif); font-size: 14px !important; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 4px;
  transition: 0.2s;
}
.big-phone-fb:hover { background: #0e5cc4; }

/* ===== EXTRA VIBRANCE: hero gradient overlay tweak + hero badges pop ===== */
.hero-overlay { background: linear-gradient(115deg, rgba(26,35,51,0.94) 0%, rgba(26,35,51,0.72) 55%, rgba(201,152,80,0.30) 100%) !important; }
.hero-badge-num { text-shadow: 0 0 24px var(--gold-glow); }
.cta-strip { background: linear-gradient(135deg, var(--ink) 0%, #0f1622 100%); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, var(--gold-glow), transparent 50%); pointer-events: none; }
.cta-strip > * { position: relative; z-index: 1; }

/* Header bottom border slightly thicker + glow */
.site-header { border-bottom-width: 4px; box-shadow: 0 8px 24px rgba(26,35,51,0.06); }
