:root {
  --navy: #1f3a5f;
  --navy-dark: #15294a;
  --accent: #c9a96e;
  --text: #333;
  --muted: #666;
  --bg: #ffffff;
  --bg-alt: #f5f5f3;
  --border: #e5e5e0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand img { max-height: 60px; width: auto; }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.primary-nav .has-sub { position: relative; }
.primary-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
}
.primary-nav .submenu li { width: 100%; }
.primary-nav .submenu a {
  padding: 10px 18px;
  display: block;
  text-transform: none;
  letter-spacing: 0.3px;
  font-weight: 500;
  font-size: 14px;
}
.primary-nav .submenu a:hover { background: var(--bg-alt); }
.primary-nav .has-sub:hover .submenu { display: flex; }

.header-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-social a, .search-btn {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.header-social a:hover, .search-btn:hover { background: var(--accent); color: #fff; }

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  min-height: 520px;
}
.slides { position: relative; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; position: relative; }
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 40px;
  padding-bottom: 40px;
}
.slide-card {
  max-width: 526px;
  background: rgba(255,255,255,.0);
}
.slide-card img { width: 100%; height: auto; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 2;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.dot.is-active { background: #fff; }

/* Inner-page hero strip */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,41,74,.78) 0%, rgba(31,58,95,.72) 100%);
  z-index: -1;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 38px;
  font-weight: 300;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.breadcrumbs {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cdd6e0;
}
.breadcrumbs a { color: #fff; opacity: .8; }
.breadcrumbs a:hover { opacity: 1; color: var(--accent); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

.page-body {
  padding: 70px 0 90px;
  background: #fff;
}
.page-body .container { max-width: 880px; }
.page-body h2 {
  color: var(--navy);
  font-weight: 400;
  font-size: 26px;
  margin: 36px 0 14px;
}
.page-body h3 {
  color: var(--navy);
  font-weight: 600;
  font-size: 19px;
  margin: 24px 0 10px;
}
.page-body p { margin: 0 0 16px; font-size: 16px; color: var(--text); }
.page-body ul, .page-body ol { padding-left: 22px; margin: 0 0 18px; }
.page-body li { margin-bottom: 6px; }
.copy-placeholder {
  border: 2px dashed var(--border);
  background: #fafaf8;
  padding: 28px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  margin: 24px 0;
}
.copy-placeholder strong { color: var(--navy); }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin: 20px 0 30px;
  padding: 0;
}
.service-list > div {
  background: #fafaf8;
  border-left: 3px solid var(--navy);
  padding: 16px 18px;
  border-radius: 0 4px 4px 0;
}
.service-list dt {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.service-list dd { margin: 0; color: var(--text); font-size: 14.5px; }

.testimonial {
  margin: 28px 0 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f5f3ee 0%, #fafaf8 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--text);
}
.testimonial p { margin: 0 0 8px; font-size: 17px; line-height: 1.5; }
.cta-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 28px 32px;
  border-radius: 6px;
  margin: 32px 0;
}
.cta-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 22px;
}
.cta-card .contact-form { max-width: 480px; }
.lead-line {
  font-size: 17px;
  color: var(--navy);
  margin: 8px 0 24px;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .service-list { grid-template-columns: 1fr; }
}

/* Intro line above slider */
.intro {
  padding: 22px 0 8px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.intro a { color: var(--navy); }

/* Main 2-col block (about + form) */
.main-block { padding: 60px 0; }
.main-grid {
  display: block;
  max-width: 920px;
  margin: 0 auto;
}
.about-image {
  display: block;
  margin: 0 0 24px;
  border-radius: 6px;
  overflow: hidden;
  max-width: 320px;
}
.about-image img { width: 100%; }
.section-title {
  font-size: 28px;
  color: var(--navy);
  margin: 4px 0 14px;
  font-weight: 400;
}
.rule {
  border: none;
  border-top: 2px solid #000;
  margin: 18px 0;
}
.about-copy {
  column-count: 2;
  column-gap: 36px;
  color: var(--text);
}
.about-copy p { margin: 0 0 14px; break-inside: avoid; font-size: 15px; }
.about-copy a { color: var(--navy); font-weight: 600; }

.form-col { position: sticky; top: 110px; }
.form-title {
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 14px;
  text-align: center;
  font-weight: 400;
}
.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 4px;
}
.form-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.4;
}
.required-note {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin: 0 0 10px;
}
.required-note span, .req { color: #c0392b; }

/* Banner */
.banner {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 6px;
}
.contact-form input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  border-radius: 2px;
}
.contact-form input:focus {
  outline: none;
  border-color: var(--navy);
}
.btn-primary {
  margin-top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
  align-self: center;
  transition: background .2s;
}
.btn-primary:hover { background: var(--accent); }
.facebook-link {
  display: inline-block;
  margin-top: 32px;
}
.facebook-link img { max-width: 48px; margin: 0 auto; }

/* Rates */
.rates {
  padding: 50px 0;
  text-align: center;
  color: var(--muted);
}
.rates p { margin: 6px 0; }
.contact-line a { font-weight: 600; }

/* Share */
.share {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fafaf8;
}
.share p {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.share-icons { display: flex; gap: 8px; justify-content: center; }
.share-icons a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.share-icons a:hover { background: var(--accent); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cdd6e0;
  padding: 40px 0;
  text-align: center;
}
.footer-nav {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 0 18px;
  padding: 0;
}
.footer-nav a {
  color: #cdd6e0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-nav a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}
.footer-social a:hover { background: var(--accent); }
.footer-meta p {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 4px 0;
  color: #8c9bae;
}

/* Responsive */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .slide-inner { justify-content: center; }
  .slide-card { max-width: 80%; }
  .main-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-copy { column-count: 1; }
  .form-col { position: static; }
  .banner { background-attachment: scroll; height: 260px; }
}
@media (max-width: 600px) {
  .contact-form .row { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .brand img { max-height: 48px; }
}
