
:root{
  --ink:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --line:#e2e8f0;
  --tan:#b08b6e;
  --tan2:#c9a489;
  --card:#ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow2: 0 10px 20px rgba(15, 23, 42, 0.10);
  --radius: 20px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
a{ color:inherit; }
.container{ width:min(1120px, calc(100% - 32px)); margin:0 auto; }
.muted{ color:var(--muted); }
.small{ font-size:0.92rem; }
.note{ margin-top:14px; }
.w-100{ width:100%; }

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.topbar-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 10px 0;
}
.brand{ display:flex; align-items:center; }
.logo{
  height:54px; /* bigger logo */
  width:auto;
  display:block;
  object-fit:contain;
}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
  margin-left:6px;
}
.nav-link{
  text-decoration:none;
  font-weight:700;
  color: var(--ink);
  padding: 8px 6px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover{ border-bottom-color: rgba(176,139,110,0.45); }
.nav-link.active{ border-bottom-color: var(--tan); }

.pill-btn{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tan), var(--tan2));
  color: #fff;
  text-decoration:none;
  font-weight:800;
  border: 1px solid rgba(176,139,110,0.25);
  box-shadow: 0 12px 26px rgba(176,139,110,0.22);
}
.pill-btn:hover{ transform: translateY(-1px); }
.ghost-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration:none;
  font-weight:800;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: var(--shadow2);
}
.small-btn{ padding: 10px 14px; font-size:0.95rem; }

.menu-btn{
  display:none;
  margin-left:8px;
  background:#fff;
  border:1px solid rgba(226,232,240,0.9);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.menu-btn span{ display:block; width:20px; height:2px; background:var(--ink); margin:4px 0; border-radius:999px; }
.mobile-nav{
  border-top: 1px solid rgba(226,232,240,0.9);
  padding: 10px 0 14px;
}
.mobile-nav a{
  display:block;
  padding: 12px 16px;
  text-decoration:none;
  font-weight:800;
}
.mobile-pill{ margin:8px 16px 0; }

/* Hero */
.hero{
  position:relative;
  height: 78vh;
  min-height: 560px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.80));
}
.hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 36px 0;
}
.hero h1{
  margin:0;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
}
.hero h2{
  margin: 10px 0 10px;
  font-weight: 700;
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);
}
.hero-text{
  max-width: 720px;
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
}
.hero-btn{ margin-left:0; }
.hero-note{ margin-top: 14px; }

/* Sections */
.section{ padding: 46px 0; }
.section.soft{ background: #fff; border-top: 1px solid rgba(226,232,240,0.9); border-bottom: 1px solid rgba(226,232,240,0.9); }
.section-title{
  font-size: 2.1rem;
  margin: 0 0 18px;
  font-weight: 800;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h4{ margin:0 0 8px; font-size:1.05rem; }
.card p{ margin:0; color: var(--muted); line-height:1.55; font-weight:600; }

.cta-row{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
}
.cta-row.left{ justify-content:flex-start; }

.grid-2{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:start;
}

.info{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}
.info .label{
  display:inline-block;
  min-width: 84px;
  font-weight: 900;
  color: var(--muted);
}
.info a{ font-weight: 900; }
.info span{ font-weight: 700; color: var(--ink); }
.links{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 8px; }

/* Page hero */
.page-hero{
  position:relative;
  height: 42vh;
  min-height: 340px;
  overflow:hidden;
}
.page-hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.page-hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.90));
}
.page-hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 10px 0;
}
.page-hero h1{
  margin:0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}
.page-hero p{
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height:1.6;
}

/* Map */
.map-card{
  background:#fff;
  border:1px solid rgba(226,232,240,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.map-title{
  padding: 14px 16px;
  font-weight: 900;
  border-bottom:1px solid rgba(226,232,240,0.9);
}
.map-card iframe{
  width:100%;
  height: 360px;
  border:0;
  display:block;
}
.form-card label{
  display:block;
  font-weight: 900;
  margin: 10px 0;
}
input, textarea{
  width:100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,0.9);
  font: inherit;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: rgba(176,139,110,0.55);
  box-shadow: 0 0 0 4px rgba(176,139,110,0.16);
}

/* Footer */
.footer{
  padding: 26px 0 16px;
  background: #0b1220;
  color:#fff;
  margin-top: 10px;
}
.footer-inner{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  justify-content: space-between;
}
.footer-logo{ height: 44px; width:auto; display:block; }
.footer-right{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-right a{ color: rgba(255,255,255,0.85); text-decoration:none; font-weight: 800; }
.footer-right a:hover{ text-decoration: underline; }
.footer-bottom{
  padding-top: 12px;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 980px){
  /* Hide desktop nav + the header "Contact Us" button only */
  .nav{ display:none; }
  .topbar .pill-btn{ display:none; }

  /* Keep form submit buttons visible */
  button.pill-btn,
  .form-card .pill-btn{
    display:inline-flex;
  }

  .menu-btn{ display:inline-block; margin-left:auto; }
  .cards{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .logo{ height: 58px; }
}
