:root{
  --bg:#fff7ee;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#4b5563;
  --brand:#d14b4b;
  --ring: rgba(209,75,75,.25);
  --shadow: 0 10px 25px rgba(17,24,39,.08);
  --radius: 18px;
  --max: 1050px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 500px at 10% 0%, rgba(209,75,75,.10), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(63,127,134,.14), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(255,247,238,.7);
  border-bottom: 1px solid rgba(31,41,55,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  max-width:var(--max); margin:0 auto; padding:14px 24px;
  gap:16px;
}
.logo-row{display:flex; align-items:center; gap:12px}
.logo{width:44px; height:44px; border-radius:14px; object-fit:cover; border:1px solid rgba(31,41,55,.10);}
.brand{display:flex; flex-direction:column; font-weight:800; letter-spacing:.2px;}
.brand small{font-weight:600; color:var(--muted);}
.links{display:flex; gap:8px; flex-wrap:wrap; align-items:center; font-weight:700; color:var(--muted); font-size:13px;}
.links a{ text-decoration:none; padding:8px 10px; border-radius:12px }
.links a:hover{ background: rgba(31,41,55,.05) }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31,41,55,.10);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
  text-decoration:none;
  font-weight:800;
}
.btn.primary{
  border-color: rgba(209,75,75,.22);
  background: linear-gradient(180deg, rgba(209,75,75,.12), rgba(209,75,75,.06));
  box-shadow: 0 10px 20px rgba(209,75,75,.12);
}
.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(31,41,55,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}
h1{font-size:40px; line-height:1.08; margin:0 0 10px}
h2{margin:18px 0 10px; font-size:24px}
.sub{font-size:18px; color:var(--muted); margin:0 0 18px}
.fine{font-size:13px; color:var(--muted); margin-top:10px}
.hero-split{display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:stretch;}
.hero-photo{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(31,41,55,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.75);
  min-height: 320px;
}
.hero-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.top-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.mini-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;}
.mini-links a{
  color:var(--muted); font-weight:800; text-decoration:none;
  padding:8px 10px; border-radius:12px;
  border:1px solid rgba(31,41,55,.10);
  background: rgba(255,255,255,.65);
}
.mini-links a:hover{background: rgba(255,255,255,.85)}
.three{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:14px;}
.feature{padding:14px 14px; border-radius: 16px; border: 1px solid rgba(31,41,55,.09); background: rgba(255,255,255,.7);}
.about-grid{display:grid; grid-template-columns: 220px 1fr; gap:18px; align-items:start;}
.headshot{width:260px; height:260px; border-radius: 22px; object-fit:cover; object-position:50% 20%; border:1px solid rgba(31,41,55,.10); box-shadow: 0 12px 22px rgba(17,24,39,.10); background:#fff;}
.smallprint{background: rgba(255,255,255,.55); border: 1px solid rgba(31,41,55,.08); border-radius: var(--radius); padding:14px 16px;}
footer{padding:18px 0 40px; color:var(--muted); font-size:13px;}
.footer-row{display:flex; flex-wrap:wrap; gap:8px; justify-content:space-between; align-items:center}
@media (max-width: 980px){
  .hero-split{grid-template-columns:1fr}
  .three{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .headshot{width:260px; height:260px; border-radius: 22px; object-fit:cover; object-position:50% 20%; border:1px solid rgba(31,41,55,.10); box-shadow: 0 12px 22px rgba(17,24,39,.10); background:#fff;}
  h1{font-size:34px}
  header{position:relative}
}

.nav{flex-wrap:wrap;}
}

/* Clickable brand to return home */
.logo-home{
  text-decoration:none;
  color: inherit;
  border-radius: 16px;
}
.logo-home:focus{outline: 3px solid var(--ring); outline-offset: 2px}
.logo-home:hover .brand{opacity: 0.95;}

/* Homepage photo strip */
.photo-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.photo{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(31,41,55,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.75);
  aspect-ratio: 16 / 10;
}
.photo img{width:100%; height:100%; object-fit:cover; display:block;}
@media (max-width: 980px){
  .photo-grid{grid-template-columns:1fr}
  .photo{aspect-ratio: 16 / 11;}
}

/* Polished homepage hero */
.hero-polished{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:20px;
  align-items:start;
}
.hero-image{border-radius: var(--radius); overflow:hidden; border:1px solid rgba(31,41,55,.10); box-shadow: var(--shadow); aspect-ratio: 3 / 4; max-width: 420px; justify-self:end; background: rgba(255,255,255,.75);}
.hero-image img{width:100%; height:100%; object-fit:cover; object-position:50% 20%; display:block;}
.info-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.info-card{text-align:center;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(31,41,55,.10);
  border-radius:16px;
  padding:14px;
}
.info-card h3{margin:0 0 8px; font-size:15px; display:flex; align-items:center; justify-content:center; gap:8px;}
.info-card span.icon{
  font-size:16px;
}
@media (max-width: 980px){
  .hero-polished{grid-template-columns:1fr;}
  .info-cards{grid-template-columns:1fr;}
}

/* Center homepage CTA row */
.home-cta{
  display:flex;
  justify-content:center;
  margin-top:16px;
}

/* Stacked centered CTA (button + note) */
.cta-stack{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.cta-stack .fine{ margin-top:8px; text-align:center; }


/* CSS-only mobile menu */
.nav-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.menu-btn{
  display:none;
  border:1px solid rgba(31,41,55,.12);
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  padding:10px 12px;
  font-weight:800;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
  cursor:pointer;
  user-select:none;
}
.menu-btn:focus{outline: 3px solid var(--ring); outline-offset: 2px}

@media (max-width: 980px){
  .nav{flex-wrap:wrap;}
  .menu-btn{display:inline-flex; align-items:center; gap:8px;}
  .links{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    margin-top:10px;
    padding:10px;
    border-radius: 16px;
    border: 1px solid rgba(31,41,55,.10);
    background: rgba(255,255,255,.78);
    box-shadow: var(--shadow);
  }
  /* show menu when checkbox is checked */
  .nav-toggle:checked ~ .links{display:flex;}
}

/* Clickable homepage cards without visual changes */
.card-link{display:block; text-decoration:none; color:inherit;}
.card-link:hover{color:inherit;}
.card-link:focus{outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 16px;}
.card-link .info-card{height:100%;}





/* Rates page: text wrap around photo (desktop), photo below text (mobile) */
.rates-photo{
  float: right;
  width: 300px;
  max-width: 38%;
  height: auto;
  margin: 6px 0 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,.10);
  box-shadow: var(--shadow);
  display:block;
}
.clearfix::after{
  content:"";
  display:block;
  clear: both;
}
@media (max-width: 980px){
  .rates-photo{
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 12px 0 0 0;
  }
}
