:root {
  --navy: #1c2430;
  --navy-dark: #12171f;
  --gold: #b48b3c;
  --gold-light: #d9b876;
  --cream: #f7f4ee;
  --text: #2c2c2c;
  --muted: #6b6b6b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}
h1, h2, h3, h4 { font-family: "Georgia", serif; font-weight: 600; color: var(--navy); margin: 0 0 .6em; }
p { margin: 0 0 1em; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--navy); }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 780px; }

/* header */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.header-inner {
  max-width: 1140px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 46px; }
.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: block; padding: 14px 16px; color: #e9e4d8; font-family: sans-serif;
  font-size: .95rem; letter-spacing: .02em;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav .sub {
  display: none; position: absolute; left: 0; top: 100%; min-width: 200px;
  background: var(--navy-dark); flex-direction: column; padding: 6px 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
}
.main-nav li.has-sub:hover .sub { display: flex; }
.main-nav .sub a { padding: 10px 18px; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }

.phone-banner {
  background: var(--gold); color: var(--navy-dark); text-align: center;
  font-family: sans-serif; font-weight: 600; font-size: .92rem; padding: 8px 10px;
}
.phone-banner a { color: var(--navy-dark); text-decoration: underline; }

/* hero */
.hero {
  background-size: cover; background-position: center; color: #fff;
  min-height: 62vh; display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-inner h1 { color: #fff; font-size: 2.6rem; margin-bottom: .3em; }
.hero-sub { font-family: sans-serif; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-light); font-size: .95rem; }

.page-hero { background: var(--navy); padding: 46px 0; }
.page-hero h1 { color: #fff; margin: 0; font-size: 2rem; }

.section { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 34px; font-size: 1.7rem; position: relative; }
.section-title::after {
  content: ""; display: block; width: 60px; height: 3px; background: var(--gold);
  margin: 14px auto 0;
}
.section-title.small { font-size: 1.3rem; margin-bottom: 22px; }
.intro-section { background: var(--cream); }

.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.service-card {
  display: block; text-align: center; background: #fff; border: 1px solid #eee;
  border-radius: 6px; overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.12); transform: translateY(-3px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card h3 { padding: 16px; margin: 0; font-size: 1.15rem; }

.cta-section { background: var(--navy); color: #fff; text-align: center; }
.cta-section p { font-family: sans-serif; font-size: 1.1rem; margin: 0; }
.cta-section a { color: var(--gold-light); font-weight: 600; }

.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; }
.gallery-item img { transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.06); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-block address { font-style: normal; font-family: sans-serif; line-height: 1.9; margin-bottom: 16px; }
.map-embed iframe { border-radius: 6px; }

/* footer */
.site-footer { background: var(--navy-dark); color: #cfcabd; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 46px 20px 20px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px;
}
.footer-logo { height: 40px; margin-bottom: 14px; }
.footer-col h4 { color: #fff; font-family: sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-col address { font-style: normal; font-family: sans-serif; font-size: .92rem; line-height: 1.9; }
.footer-col a { color: var(--gold-light); }
.tagline { font-size: .9rem; color: #9d9a8f; }
.footer-bottom {
  text-align: center; font-family: sans-serif; font-size: .8rem; color: #7a7768;
  padding: 14px 20px; border-top: 1px solid #2a3240;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); }
  .main-nav ul.open { display: flex; }
  .main-nav .sub { position: static; display: none; box-shadow: none; }
  .main-nav li.has-sub:hover .sub { display: none; }
  .main-nav li.has-sub.open .sub { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-inner h1 { font-size: 1.9rem; }
}

.fb-embed-wrap { display: flex; justify-content: center; }
.fb-link {
  display: inline-block; font-family: sans-serif; font-weight: 600;
  background: var(--navy); color: #fff; padding: 10px 20px; border-radius: 4px;
}
.fb-link:hover { background: var(--gold); color: var(--navy-dark); }
