@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --cream:   #F5F0E8;
  --cream2:  #EDE6D8;
  --cream3:  #E4DAC8;
  --maroon:  #8B1A1A;
  --maroon2: #6B1414;
  --maroon3: #4A0D0D;
  --gold:    #B8963C;
  --gold2:   #D4AF5A;
  --text:    #2C1810;
  --muted:   #7A6A5A;
  --border:  rgba(139,26,26,0.12);
  --shadow:  rgba(44,24,16,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.92); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); transition: all 0.4s;
}
nav.scrolled { padding: 0.75rem 3.5rem; background: rgba(245,240,232,0.98); box-shadow: 0 4px 32px var(--shadow); }
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.nav-brand { flex-direction: row; align-items: center; gap: 0.9rem; }
.nav-logo-img { height: 46px; width: auto; opacity: 1; transition: opacity 0.25s ease; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); letter-spacing: 0.08em; }
.logo-main span { color: var(--gold); }
.logo-sub { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.3s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:1px; background:var(--maroon); transform:scaleX(0); transition:transform 0.3s; transform-origin:left; }
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--maroon); }
.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 0.55rem 1.1rem;
  border-radius: 40px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  opacity: 0; transition: opacity 0.3s;
  border-radius: 40px;
}
.nav-cta:hover { color: #fff; border-color: transparent; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,26,26,0.28); }
.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta .cta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--maroon); display: inline-block; position: relative; z-index: 1; transition: background 0.3s; }
.nav-cta:hover .cta-dot { background: var(--gold2); }
.nav-cta .cta-wa { font-size: 1rem; position: relative; z-index: 1; }

@media (max-width: 1200px) {
  nav { padding: 0.95rem 2.25rem; }
  .logo-sub { display: none; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.78rem; }
  .nav-cta { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
  .nav-logo-img { height: 40px; }
}

@media (max-width: 1050px) {
  .nav-links { gap: 0.9rem; }
  .nav-links a { font-size: 0.76rem; }
}

/* PAGE HERO */
.page-hero { padding: 9rem 0 5rem; background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle, rgba(139,26,26,0.05) 1px, transparent 1px); background-size:36px 36px; }
.page-hero .container { position: relative; z-index: 2; }

/* LAYOUT */
.container { max-width: 1300px; margin: 0 auto; padding: 0 3.5rem; }
section { padding: 6rem 0; }
.section-tag { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem; font-weight: 500; }
.section-tag::before { content:''; flex:none; width:32px; height:1px; background:var(--gold); }
h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; line-height: 1.05; color: var(--text); }
h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; line-height: 1.1; margin-bottom: 1rem; color: var(--text); }
h2 em, h1 em { color: var(--maroon); font-style: italic; }
.btn-primary { display:inline-block; background:var(--maroon); color:#fff; padding:0.95rem 2.4rem; border-radius:3px; font-weight:600; text-decoration:none; font-size:0.88rem; letter-spacing:0.04em; transition:all 0.35s; box-shadow:0 6px 22px rgba(139,26,26,0.3); }
.btn-primary:hover { background:var(--maroon2); transform:translateY(-3px); box-shadow:0 12px 36px rgba(139,26,26,0.38); }
.btn-outline { display:inline-block; border:1.5px solid var(--maroon); color:var(--maroon); padding:0.93rem 2.4rem; border-radius:3px; font-weight:500; text-decoration:none; font-size:0.88rem; letter-spacing:0.04em; transition:all 0.3s; background:transparent; }
.btn-outline:hover { background:var(--maroon); color:#fff; }

/* REVEAL ANIMATIONS */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.75s cubic-bezier(0.25,1,0.5,1), transform 0.75s cubic-bezier(0.25,1,0.5,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.75s cubic-bezier(0.25,1,0.5,1), transform 0.75s cubic-bezier(0.25,1,0.5,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.75s cubic-bezier(0.25,1,0.5,1), transform 0.75s cubic-bezier(0.25,1,0.5,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1E0808 0%, var(--maroon3) 100%);
  color: rgba(255,255,255,0.8);
  position: relative; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,150,60,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Top accent bar */
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--maroon), var(--gold2), transparent);
}

/* CTA strip inside footer */
.footer-cta-strip {
  max-width: 1300px; margin: 0 auto;
  padding: 3.5rem 3.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 3rem;
}
.fcs-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 0.3rem;
}
.fcs-left h3 em { color: var(--gold2); font-style: italic; }
.fcs-left p { color: rgba(255,255,255,0.42); font-size: 0.82rem; }
.fcs-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.fcs-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.4rem; border-radius: 5px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  letter-spacing: 0.04em; transition: all 0.3s;
}
.fcs-btn:hover { transform: translateY(-2px); }
.fcs-btn-wa { background: #25D366; color: #fff; }
.fcs-btn-wa:hover { background: #1aae55; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.fcs-btn-call { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: #fff; }
.fcs-btn-call:hover { background: rgba(255,255,255,0.18); }

.footer-main {
  max-width: 1300px; margin: 0 auto;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  position: relative; z-index: 1;
}
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 0.82rem; line-height: 1.85; margin-top: 0.8rem; max-width: 240px; }

/* Footer social icons */
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-soc {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none; transition: all 0.3s;
  color: rgba(255,255,255,0.6);
}
.footer-soc:hover { background: rgba(184,150,60,0.2); border-color: rgba(184,150,60,0.4); transform: translateY(-2px); color: var(--gold2); }

.footer-col h5 { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.2rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; margin-bottom: 0.5rem; transition: all 0.2s; }
.footer-col a:hover { color: var(--gold2); padding-left: 4px; }
.footer-col p { color: rgba(255,255,255,0.42); font-size: 0.82rem; margin-bottom: 0.5rem; line-height: 1.65; }

/* Awards strip */
.footer-awards {
  max-width: 1300px; margin: 0 auto;
  padding: 1.5rem 3.5rem 2rem;
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.faward {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em;
}
.faward span { font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 3.5rem;
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
}
.footer-bottom-copy { color: rgba(255,255,255,0.25); font-size: 0.73rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.73rem; text-align: center; }
.footer-bottom a { color: var(--gold2); text-decoration: none; font-size: 0.73rem; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.7; }
.footer-col-contact .footer-socials { margin-top: 0.8rem !important; margin-bottom: 1rem !important; flex-wrap: wrap; }

/* SERVICE MODAL */
.svc-modal-overlay {
  position:fixed; inset:0; z-index:9000;
  background:rgba(44,24,16,0.55); backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity 0.4s;
}
.svc-modal-overlay.open { opacity:1; pointer-events:all; }
.svc-modal {
  background:var(--cream); border-radius:4px;
  width:min(780px, 90vw); max-height:88vh; overflow-y:auto;
  transform:scale(0.88) translateY(28px);
  transition:transform 0.45s cubic-bezier(0.25,1,0.5,1);
  box-shadow:0 40px 100px rgba(44,24,16,0.3); position:relative;
}
.svc-modal-overlay.open .svc-modal { transform:scale(1) translateY(0); }
.modal-close {
  position:absolute; top:1.2rem; right:1.2rem;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:none;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:1rem; color:#fff;
  transition:all 0.2s; z-index:2;
}
.modal-close:hover { background:rgba(255,255,255,0.3); }
.modal-hero { background:linear-gradient(135deg, var(--maroon3) 0%, var(--maroon) 100%); padding:3rem 3rem 2.5rem; border-radius:4px 4px 0 0; }
.modal-icon { font-size:3.2rem; margin-bottom:1rem; display:block; }
.modal-hero h2 { font-family:'Playfair Display',serif; font-size:1.9rem; font-weight:700; color:#fff; margin-bottom:0.4rem; }
.modal-hero .msub { color:rgba(255,255,255,0.65); font-size:0.82rem; letter-spacing:0.1em; text-transform:uppercase; }
.modal-body { padding:2.5rem 3rem; }
.modal-body p { color:var(--muted); line-height:1.85; font-size:0.92rem; margin-bottom:1.1rem; }
.modal-features { display:grid; grid-template-columns:1fr 1fr; gap:0.9rem; margin:1.5rem 0; }
.modal-feat { display:flex; align-items:flex-start; gap:0.6rem; padding:0.9rem 1.1rem; background:var(--cream2); border-radius:3px; border-left:3px solid var(--maroon); }
.modal-feat::before { content:'✦'; color:var(--gold); font-size:0.65rem; flex:none; margin-top:0.2rem; }
.modal-feat span { font-size:0.82rem; color:var(--text); line-height:1.5; }
.modal-cta { display:flex; gap:1rem; margin-top:2rem; flex-wrap:wrap; }

/* NAV HAMBURGER — hidden on desktop */
.nav-hamburger { display: none; }

/* ============================================================
   MOBILE RESPONSIVE — 768px and below
   ============================================================ */

@media (max-width: 900px) {
  /* NAV — hamburger */
  .nav-links, .nav-cta { display: none !important; }
  nav { padding: 0.85rem 1.2rem; }
  .nav-logo-img { height: 38px; }

  /* NAV MOBILE TOGGLE */
  .nav-hamburger {
    display: flex !important;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--maroon); border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-mobile-open .nav-links {
    display: flex !important; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; padding: 0.5rem 0 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    gap: 0; z-index: 999; border-top: 2px solid var(--maroon);
  }
  .nav-mobile-open .nav-links li {
    display: block; border-bottom: 1px solid rgba(139,26,26,0.08);
  }
  .nav-mobile-open .nav-links a {
    display: block; padding: 0.95rem 1.8rem;
    font-size: 1rem; font-weight: 500; color: var(--text);
  }
  .nav-mobile-open .nav-links a::after { display: none; }
  .nav-mobile-open .nav-links a.active { color: var(--maroon); background: rgba(139,26,26,0.04); }
  .nav-mobile-open .nav-cta {
    display: block !important; margin: 1rem 1.8rem 0;
    text-align: center;
  }

  /* LAYOUT */
  .container { padding: 0 1.2rem; }
  section { padding: 3.5rem 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  /* FOOTER */
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem 1.5rem !important;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-strip { flex-direction: column; gap: 1.2rem; padding: 2rem 1.5rem; text-align: center; }
  .fcs-btns { justify-content: center; }
  .footer-bottom { padding: 1rem 1.5rem; }

  /* PAGE HERO */
  .page-hero { padding: 7rem 0 3.5rem; }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  /* LAYOUT */
  .container { padding: 0 1rem; }
  section { padding: 3rem 0; }
  h2 { font-size: 1.65rem; }

  /* FOOTER GRID */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
    padding: 2rem 1.2rem !important;
  }
  .footer-brand { grid-column: 1 !important; }
  .footer-col { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.2rem; }
  .footer-bottom { padding: 1rem 1.2rem; flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-bottom-copy { text-align: center; }
}

