:root {
  --blue: #334A60;
  --blue-dark: #2C4154;
  --tan: #C2A078;
  --white: #F7F7F7;
  --black: #0E0E0E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--blue);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lock link colors (no blue/purple surprises) */
a, a:visited, a:hover, a:active {
  color: var(--tan);
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

h1, h2, h3 { line-height: 1.12; }
p { margin: .75rem 0; }

/* HEADER */
.site-header {
  background: var(--blue-dark);
  border-bottom: 2px solid var(--tan);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* true centered logo */
  align-items: center;
  padding: 1.2rem 0;
  gap: 1rem;
}

.header-spacer { justify-self: start; }

/* Centered, bigger logo */
.logo-img {
  justify-self: center;
  display: flex;
  align-items: center;
}

.logo-img img {
  height: 100px; /* bigger */
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .logo-img img { height: 100px; }
}

/* Menu button always visible */
.menu-toggle {
  justify-self: end;
  background: transparent;
  border: 2px solid rgba(194,160,120,.55);
  color: var(--white);
  padding: .6rem 1rem;
  cursor: pointer;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}

.menu-toggle:hover {
  background: rgba(194,160,120,.12);
}

/* Dropdown menu (used for ALL sizes) */
.nav.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  background: rgba(44,65,84,.98);
  border: 2px solid rgba(194,160,120,.45);
  padding: 1rem;
  box-shadow: 0 18px 55px rgba(0,0,0,.30);
}

.nav.dropdown a {
  display: block;
  padding: .55rem .25rem;
  margin: 0;
  color: var(--white);
  letter-spacing: .10em;
  font-size: .85rem;
}

.nav.dropdown a:hover {
  color: var(--tan);
}

.nav.dropdown .nav-cta {
  margin-top: .6rem;
  text-align: center;
}

/* Open state */
.nav.dropdown.nav-open {
  display: block;
}

/* HERO */
.hero {
  padding: 5.5rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(194,160,120,.12), transparent 40%),
    radial-gradient(900px 420px at 18% 18%, rgba(194,160,120,.18), transparent 60%),
    radial-gradient(700px 320px at 90% 20%, rgba(255,255,255,.08), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: start;
}

.pill {
  border: 1px solid var(--tan);
  padding: .4rem .8rem;
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--tan);
  display: inline-block;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 1rem 0;
}

.lead { max-width: 600px; }

.hero-sub {
  opacity: .85;
  font-size: .95rem;
  margin-top: 1rem;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.trust-item {
  border: 1px solid rgba(194,160,120,.28);
  padding: 1rem;
  background: rgba(0,0,0,.10);
}

.trust-item strong { display: block; color: var(--tan); letter-spacing: .05em; }
.trust-item span { opacity: .85; font-size: .95rem; }

/* BUTTONS */
.btn {
  border: 2px solid var(--tan);
  color: var(--tan) !important;
  background: transparent;
  text-decoration: none;
  padding: .75rem 1.5rem;
  letter-spacing: .1em;
  display: inline-block;
  transition: .25s;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--tan);
  color: var(--blue) !important;
}

.btn:active { transform: translateY(1px); }

.btn-outline {
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue) !important;
}

.btn-small {
  padding: .5rem 1rem;
  font-size: .7rem;
}

.full { width: 100%; text-align: center; }
.cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* SECTIONS */
.section { padding: 4.25rem 0; }
.section-alt { background: var(--blue-dark); }

.section-title {
  letter-spacing: .15em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--tan);
  margin-top: .6rem;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  border: 2px solid rgba(194,160,120,.35);
  padding: 2rem;
  background: rgba(0,0,0,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

.card h3 { margin-top: 0; color: var(--tan); letter-spacing: .06em; }

.list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  opacity: .9;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.placeholder {
  height: 220px;
  border: 2px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,0,0,.08));
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}

/* FORMS */
.hero-card {
  border: 2px solid var(--tan);
  padding: 2rem;
  background: rgba(0,0,0,.15);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

.hero-card h2 { margin-top: 0; }
.muted { opacity: .8; }

label { display: block; font-size: .9rem; letter-spacing: .03em; }

input, textarea, select {
  width: 100%;
  padding: .65rem .7rem;
  margin-top: .35rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(194,160,120,.35);
  color: var(--white);
  border-radius: 2px;
  outline: none;
}

input::placeholder, textarea::placeholder { color: rgba(247,247,247,.65); }

input:focus, textarea:focus, select:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(194,160,120,.18);
}

.fineprint { font-size: .85rem; opacity: .8; margin-top: .5rem; }

.contact-mini {
  display: grid;
  gap: .5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(194,160,120,.35);
  padding-top: .75rem;
}

.contact-mini a {
  color: var(--tan) !important;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.contact-mini a:hover { opacity: .85; }

/* FAQ */
.faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

details {
  border: 2px solid rgba(194,160,120,.25);
  background: rgba(0,0,0,.10);
  padding: 1rem 1.25rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--tan);
  letter-spacing: .04em;
}

details p { margin-top: .75rem; opacity: .9; }

/* CONTACT BOX */
.contact-box {
  border: 2px solid rgba(194,160,120,.35);
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,.10);
  margin: 1.25rem 0;
}

/* FOOTER */
footer {
  border-top: 2px solid var(--tan);
  text-align: center;
  padding: 1.75rem 0;
  background: #223443;
}

.footer-inner p {
  margin: 0;
  letter-spacing: .08em;
  font-size: .9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards, .gallery { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }

  .nav.dropdown {
    right: 0;
    left: auto;
    min-width: 220px;
  }
}

