*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

:root {
  --navy: #0d1414;
  --navy-mid: #142036;
  --navy-light: #1e2f4a;
  --gold: #c49a3c;
  --gold-light: #e0b85a;
  --gold-pale: #f3e7c4;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-light: #e8e5df;
  --gray-mid: #9a9690;
  --text-dark: #1a1612;
  --shadow-1: 0 14px 30px rgba(13, 20, 20, 0.08);
  --shadow-gold: 0 16px 34px -14px rgba(196, 154, 60, 0.5);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

/* ICONS */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 20, 20, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 60, 0.2);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { z-index: 101; }

.nav-logo img { height: 185px; width: auto; display: block; margin-top: -5px; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  transition: background 0.3s;
}

.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 101;
  padding: 9px;
  margin: -9px;
  line-height: 1;
}

body.menu-open { overflow: hidden; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.menu-open::after {
  opacity: 1;
  visibility: visible;
}

/* HERO */
.page-hero {
  padding: 170px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  background-image:
    linear-gradient(rgba(196,154,60,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 85%, rgba(196,154,60,0.14) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300'%3E%3Cpath d='M40,280 L220,60 L400,280' fill='none' stroke='%23c49a3c' stroke-width='2' opacity='0.5'/%3E%3Cpath d='M160,280 L340,110 L520,280' fill='none' stroke='%23c49a3c' stroke-width='2' opacity='0.3'/%3E%3Cpath d='M320,280 L480,150 L640,280' fill='none' stroke='%23c49a3c' stroke-width='2' opacity='0.18'/%3E%3C/svg%3E");
  background-position: center bottom, center bottom;
  background-repeat: no-repeat;
  background-size: auto, 700px auto;
  mask-image: linear-gradient(to bottom, transparent, black 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 55%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(196, 154, 60, 0.12), transparent);
  pointer-events: none;
}

.page-hero .hero-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(196, 154, 60, 0.22), rgba(196, 154, 60, 0.08));
  border: 1px solid rgba(196, 154, 60, 0.4);
  box-shadow: 0 10px 24px -8px rgba(196, 154, 60, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  position: relative;
  z-index: 0;
}

.page-hero .hero-icon .icon { width: 34px; height: 34px; }

.page-hero .hero-icon::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  border: 1px solid rgba(196, 154, 60, 0.45);
  background: radial-gradient(circle, rgba(196, 154, 60, 0.22) 0%, transparent 70%);
  z-index: -1;
  animation: heroPulse 3.5s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.07); }
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  position: relative;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.page-back:hover {
  color: var(--gold-light);
  border-color: rgba(196, 154, 60, 0.5);
  background: rgba(196, 154, 60, 0.08);
}

.page-hero .hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 25%, transparent 100%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero h1 em { color: var(--gold-light); font-style: italic; }

.page-hero .hero-desc {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  position: relative;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* CONTENT */
.page-section { padding: 80px 2rem; }

.page-section .section-inner { max-width: 1100px; margin: 0 auto; }

.page-section.alt { background: var(--off-white); }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold);
}

.page-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-section p {
  color: var(--gray-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 720px;
}

.page-section .section-inner:has(> .section-label) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  align-items: end;
}

.page-section .section-inner > .section-label { grid-column: 1 / -1; margin-bottom: 1.1rem; }

.page-section .section-inner > h2 { grid-column: 1; margin-bottom: 0; }

.page-section .section-inner > p:not(.section-label) {
  grid-column: 2;
  margin: 0;
  align-self: end;
}

.page-section .section-inner > .content-grid,
.page-section .section-inner > .benefits-list,
.page-section .section-inner > .about-grid,
.page-section .section-inner > .other-services-grid {
  grid-column: 1 / -1;
  margin-top: 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 2.1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,60,0.35);
  box-shadow: 0 20px 40px rgba(13,20,20,0.1);
}

.feature-card:hover::before { height: 100%; }

.feature-card .fc-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #e8d7a8 100%);
  border: 1px solid rgba(196, 154, 60, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 6px 14px -6px rgba(196, 154, 60, 0.45);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a67f28;
  margin-bottom: 1.2rem;
  transition: transform 0.35s, background 0.35s, border-color 0.35s, box-shadow 0.35s, color 0.35s;
}

.fc-icon .icon { width: 22px; height: 22px; }

.feature-card:hover .fc-icon {
  background: linear-gradient(135deg, rgba(196, 154, 60, 0.28), rgba(196, 154, 60, 0.1));
  border-color: rgba(196, 154, 60, 0.55);
  box-shadow: 0 10px 24px -8px rgba(196, 154, 60, 0.5);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--gray-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: none;
}

/* BENEFITS LIST */
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.benefits-list li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  color: var(--gray-mid);
  font-weight: 300;
  font-size: 0.95rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.benefits-list li:hover {
  border-color: rgba(196, 154, 60, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}

.benefits-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--gold-pale);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a67f28' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m4.5 12.5 5 5 10-11'/></svg>");
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* OTHER SERVICES */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.other-services-grid a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 1.15rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s;
}

.other-services-grid a .icon-svc { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.other-services-grid a span { color: var(--gold); transition: transform 0.3s; margin-left: auto; }
.other-services-grid a span .icon { width: 14px; height: 14px; }

.other-services-grid a:hover {
  border-color: rgba(196, 154, 60, 0.45);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.other-services-grid a:hover span { transform: translateX(4px); }

/* CTA */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 2rem;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300'%3E%3Cpath d='M160,280 L400,90 L640,280' fill='none' stroke='%23c49a3c' stroke-width='2' opacity='0.22'/%3E%3C/svg%3E");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 640px auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner h2 em { color: var(--gold-light); font-style: italic; }

.cta-banner p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
  position: relative;
}

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: background 0.3s;
  position: relative;
}

.btn-cta:hover { background: var(--gold-light); }

/* THANKS PAGE */
.thanks-check {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 154, 60, 0.28), rgba(196, 154, 60, 0.1));
  border: 1px solid rgba(196, 154, 60, 0.5);
  box-shadow: 0 12px 30px -10px rgba(196, 154, 60, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  position: relative;
  animation: heroPulse 3.5s ease-in-out infinite;
}

.thanks-check .icon { width: 40px; height: 40px; }

.thanks-btn { border-radius: 999px; margin-top: 2.25rem; }

/* FOOTER */
footer {
  border-top: 1px solid rgba(196,154,60,0.2);
  padding: 2.5rem 2rem;
  background: var(--navy);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img { height: 130px; width: auto; }

.footer-links { display: flex; gap: 1.75rem; list-style: none; }

.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.3s; }

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ABOUT */
.about-img {
  grid-column: 1 / -1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 60, 0.25);
  box-shadow: var(--shadow-1);
}

.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-stat { text-align: center; }

.about-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.about-stat .stat-label {
  color: var(--gray-mid);
  font-size: 0.8rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-logo img { height: 100px; margin-top: 0; }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 70px; right: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: rgba(13, 20, 20, 0.98);
    backdrop-filter: blur(12px);
    padding: 2.75rem 2rem 2rem;
    gap: 0;
    z-index: 100;
    border-left: 3px solid var(--gold);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  }
  .nav-links.active { transform: translateX(0); visibility: visible; }
  .nav-links a { display: block; width: 100%; text-align: left; }

  .nav-links::before {
    content: 'Menu';
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .nav-links a {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }
  .nav-links a:not(.nav-cta) {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links .nav-cta { display: block; width: 100%; text-align: center; margin-top: 1.75rem; font-size: 0.85rem; }
  .content-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 160px 1.25rem 70px; }
  .page-hero::before { background-size: auto, 420px auto; }
  .page-section { padding: 60px 1.25rem; }
  .cta-banner { padding: 70px 1.25rem; }
  .cta-banner::before { background-size: 380px auto; }
  .btn-cta { width: 100%; text-align: center; }
  .page-section .section-inner:has(> .section-label) { grid-template-columns: 1fr; gap: 0; }
  .page-section .section-inner > h2 { grid-column: 1; margin-bottom: 1rem; }
  .page-section .section-inner > p:not(.section-label) { grid-column: 1; }
  .benefits-list { grid-template-columns: 1fr; }
}
