:root {
  /* Soft champagne background to match the logo palette */
  --bg: #efe6d9; /* soft champagne */
  --surface: #ffffff;
  --muted-text: #6b7280;
  --text: #1f2937;
  --brand: #8a6b5a; /* dusty brown */
  --accent: #c75a14;
  --accent-2: #b14911;
  --nav-bg: #0b2545; /* navy frame */
  --frame-brown: #8a6b5a; /* dusty brown frame for footer */
  --radius: 14px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--nav-bg);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  height: 88px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-text {
  display: inline-block;
  color: #fff;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #6f4f3e);
  color: #fff;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--muted-text);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  transition: color 0.16s ease, transform 0.12s ease;
  padding: 0.34rem 0.5rem;
  border-radius: 8px;
}

.site-nav a[aria-current="page"] { color: var(--text); text-decoration: underline; }

.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* Active page highlight */
.site-nav a.active {
  color: #fff;
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  gap: 0.4rem;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0.45rem;
  min-width:42px;
  min-height:42px;
  transition:transform 0.2s ease;
}

.nav-toggle:hover {
  transform: scale(1.1);
}
.menu-icon {
  width: 28px;
  height: 3px;
  margin:  0;
  background: #fff;
  display: block;
  border-radius: 999px;
}

.hero {
  padding: 3.2rem 0 2.2rem;
}

.hero-home-bg {
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.42), rgba(124, 74, 45, 0.18)),
    url("assets/newRamp.jpg") center/cover no-repeat;
  border-radius: 0 0 28px 28px;
}

.hero-home-bg .eyebrow,
.hero-home-bg .hero h1,
.hero-home-bg .hero p,
.hero-home-bg .hero-copy p,
.hero-home-bg .hero-copy .eyebrow {
  color: #fffdf8;
}

.hero-home-bg .eyebrow {
  color: #d9a84e;
}

.hero-home-bg .eyebrow {
  color: #d9a84e;
}

.hero-home-bg .hero h1,
.hero-home-bg .eyebrow {
  text-shadow: 0 2px 14px rgba(15, 23, 42, 0.55);
}

.hero-home-bg .hero-copy p,
.hero-home-bg .hero-copy .eyebrow {
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.45);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.75rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-copy {
  padding: 1.5rem 0;
}

@media (max-width: 860px) {
  .hero {
    padding: 2.2rem 0 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    padding: 1rem 0 0;
  }

  .hero-copy p,
  .hero-supporting-text {
    max-width: 100%;
  }

  .hero-side-panel {
    display: block;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero-info-list {
    width: 100%;
    max-width: 100%;
    gap: 1rem;
  }

  .hero-info-item {
    padding: 1.25rem 1.2rem;
  }

  .hero-supporting-text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge {
    width: 100%;
  }
}

.hero-side-panel {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b8864b, #7c4a2d);
  color: #fffdf8;
  border: 1px solid rgba(255,255,255,0.28);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  letter-spacing: 0.01em;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.25);
  color: #ffffff;
}

.hero-supporting-text {
  margin: 0 0 1.4rem;
  max-width: 42rem;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.35);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f7d3a8;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-home-bg .eyebrow {
  color: #d9a84e !important;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  color: #ffffff;
}

.hero-home-accent {
  color: #d9a84e;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.35);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

.hero-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 520px;
}

.hero-info-item {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(16,24,32,0.08);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.05);
}

.hero-info-item h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: #7a4d2b;
}

.hero-info-item .title-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.hero-info-item p {
  margin: 0;
  color: #7a4d2b;
  line-height: 1.6;
  font-weight: 600;
}

.hero-info-item .gold-word {
  color: #7a4d2b;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease, box-shadow 0.12s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(90deg, #c75a14, #9c4f28);
  color: #fff;
  box-shadow: 0 8px 22px rgba(199,90,30,0.12);
}

.button-secondary {
  background: #fff;
  color: #7c4a2d;
  border: 1px solid rgba(16,24,32,0.06);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: rgba(255, 247, 237, 0.82);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-intro.text-center {
  text-align: center;
}

.section-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #2c2f35;
}

.section-intro p {
  margin: 0;
  color: #475569;
  line-height: 1.85;
  font-size: 1.05rem;
}

.about-grid,
.services-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card,
.service-card,
.faq-card,
.contact-card,
.map-card,
.placeholder-card {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(16,24,32,0.04);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 1.2rem;
}

.about-card h3,
.service-card-body h3,
.faq-card h3,
.contact-card h2 {
  margin-top: 0;
  color: #7c4a2d;
}

.about-card p,
.service-card-body p,
.faq-card p,
.contact-card p,
.footer-grid p {
  color: #475569;
  line-height: 1.7;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, rgba(244, 236, 226, 0.78), rgba(255, 255, 255, 0.88));
}

.service-image-caption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.service-card-body {
  padding: 1.4rem;
}

.service-card-body ul {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
  color: #475569;
}

.service-card-body li {
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  min-height: 180px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(16,24,32,0.08);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gallery-img-spr1 {
  filter: brightness(1.12) contrast(1.15) saturate(1.12);
}

.gallery-card-caption {
  padding: 0.9rem 0.95rem 1rem;
}

.gallery-card-caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #7c4a2d;
}

.gallery-card-caption p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #475569;
}

.placeholder-card {
  text-align: center;
}

.placeholder-card h3 {
  margin: 0 0 0.75rem;
  color: #7c4a2d;
}

.placeholder-card p {
  margin: 0;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.contact-section { padding-bottom: 4rem; }

.contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items:start; gap:1.25rem; }

.contact-card {
  display: grid;
  gap: 1.2rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-details strong { display:block; color:#7c4a2d; margin-bottom:0.35rem; }

.map-card {
  overflow: hidden;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 8px;
}

.contact-form { display:grid; gap:0.9rem; padding:1.25rem; }

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
  color: #334155;
}

.contact-form label { display:grid; gap:0.4rem; font-weight:600; color:#243046; }
.contact-form input, .contact-form textarea { width:100%; border-radius:10px; border:1px solid rgba(16,24,32,0.06); padding:0.9rem 1rem; background:#fff; outline:none; }
.contact-form input:focus, .contact-form textarea:focus { border-color:#b14911; box-shadow:0 6px 18px rgba(177,90,45,0.08); }

.site-footer {
  background: var(--nav-bg);
  color: #fff;
  padding: 2.25rem 0 1.25rem;
}
.footer-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:1rem; align-items:start; }
.footer-brand { font-weight:700; margin-bottom:0.5rem; color:#fff; display:flex; align-items:center; gap:0.6rem; }
.footer-logo { width:64px; height:64px; object-fit:contain; border-radius:6px; }
.footer-heading { margin:0 0 0.6rem; font-weight:700; color:#fff; }
.site-footer a { display:block; color: rgba(255,255,255,0.95); text-decoration:none; margin-bottom:0.4rem; }
.site-footer a:hover { text-decoration:underline; }
.footer-copy { margin-top:1.5rem; text-align:center; color:rgba(255,255,255,0.85); font-size:0.95rem; }

/* Ensure all footer text is white for maximum contrast */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer .footer-brand,
.site-footer .footer-heading,
.site-footer .footer-copy {
  color: #ffffff !important;
}

@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .services-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 5.5rem 0 auto auto;
    transform: translateY(-150%);
    opacity: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: var(--nav-bg);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 30;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav a { color: #fff; font-size:1rem; }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-panel-card {
    padding: 1.2rem;
  }

  .button {
    width: 100%;
  }

  .gallery-grid,
  .about-grid,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo { height: 56px; max-width: 220px; }
  .footer-logo { width:44px; height:44px; }
  .service-card img { height: 160px; }
}
