:root{
  --bg:#fbf7ef;
  --surface:rgba(255,255,255,.86);
  --surface-solid:#fff;
  --text:#1a1a1a;
  --muted:#4b4b4b;
  --border:rgba(0,0,0,.12);
  --accent:#b08d2a; /* warm gold */
  --accent-2:#234a5a; /* deep blue-green */
  --shadow:0 10px 25px rgba(0,0,0,.10);
  --radius:18px;
  --max:1120px;
  --focus: 0 0 0 3px rgba(176,141,42,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; height:auto}
a{color:inherit}
a:focus, button:focus, input:focus, textarea:focus, summary:focus{
  outline:none;
  box-shadow:var(--focus);
}
.skip-link{
  position:absolute; left:-999px; top:12px;
  background:var(--surface-solid); padding:10px 14px;
  border-radius:10px; border:1px solid var(--border);
  z-index:9999;
}
.skip-link:focus{left:12px}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(12px);
  background:var(--surface);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:74px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  background:linear-gradient(135deg, rgba(176,141,42,.18), rgba(35,74,90,.12));
  border:1px solid var(--border);
  display:grid; place-items:center;
  font-weight:800; letter-spacing:.02em;
  color:var(--accent-2);
}
.brand-name{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand-name strong{font-size:1.03rem; letter-spacing:.02em}
.brand-name span{font-size:.86rem; color:var(--muted)}
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  text-decoration:none;
  font-weight:650;
  color:rgba(0,0,0,.82);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(0,0,0,.05)}
.nav a[aria-current="page"]{background:rgba(176,141,42,.14); color:#000}

.dropdown{position:relative}
.dropdown > button{
  font:inherit; border:0; background:transparent;
  font-weight:650; color:rgba(0,0,0,.82);
  padding:10px 10px; border-radius:12px;
  cursor:pointer;
  display:flex; align-items:center; gap:8px;
}
.dropdown > button:hover{background:rgba(0,0,0,.05)}
.caret{width:10px; height:10px; display:inline-block; transform:rotate(45deg); border-right:2px solid rgba(0,0,0,.6); border-bottom:2px solid rgba(0,0,0,.6); margin-top:-2px}
.menu{
  position:absolute; top:48px; left:0;
  min-width:280px;
  background:var(--surface-solid);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:10px;
  display:none;
}
.menu a{
  display:block; padding:10px 12px;
  border-radius:12px;
  font-weight:650;
}
.menu a:hover{background:rgba(176,141,42,.12)}
.dropdown[aria-expanded="true"] .menu{display:block}

.cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:750;
  cursor:pointer;
  background:var(--surface-solid);
}
.btn-primary{
  background:linear-gradient(135deg, rgba(176,141,42,.95), rgba(176,141,42,.78));
  color:#111;
  border-color:rgba(0,0,0,.08);
}
.btn-primary:hover{filter:brightness(.98)}
.btn-outline:hover{background:rgba(0,0,0,.05)}

.hamburger{
  display:none;
  border:1px solid var(--border);
  background:var(--surface-solid);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}
.hamburger .bar{
  width:22px; height:2px; background:rgba(0,0,0,.72);
  display:block; margin:4px 0; border-radius:4px;
}

.hero{
  position:relative;
  min-height:76vh;
  display:grid;
  align-items:center;
  color:#0d0d0d;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(251,247,239,.86) 0%, rgba(251,247,239,.72) 42%, rgba(251,247,239,.18) 78%, rgba(251,247,239,.08) 100%);
  z-index:1;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image:url("../img/topofwebsite.png");
  background-size:cover;
  background-position:center;
  z-index:0;
  transform:scale(1.02);
}
.hero-content{
  position:relative; z-index:2;
  padding:70px 0 48px;
}
.hero h1{
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  line-height:1.12;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.hero p{
  margin:0 0 14px;
  color:rgba(0,0,0,.78);
  font-size:1.06rem;
  max-width:62ch;
}
.hero .subtle{color:rgba(0,0,0,.68)}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}

.section{padding:54px 0}
.section h2{
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin:0 0 10px;
  letter-spacing:-.01em;
}
.section p.lead{margin:0 0 22px; color:var(--muted); max-width:70ch}
.grid{
  display:grid; gap:18px;
}
.grid.services{grid-template-columns: repeat(3, 1fr)}
.card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,.06);
}
.card .thumb{
  height:178px;
  background-size:cover;
  background-position:center;
}
.card .body{padding:16px 16px 18px}
.card .body h3{margin:0 0 6px; font-size:1.1rem}
.card .body p{margin:0 0 12px; color:var(--muted)}
.card .body .link{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--accent-2); font-weight:800; text-decoration:none;
}
.card .body .link:hover{text-decoration:underline}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.7);
  font-weight:700;
  color:rgba(0,0,0,.75);
}

.split{
  display:grid; gap:22px;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
}
.panel{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow: 0 12px 22px rgba(0,0,0,.06);
}
.checklist{margin:0; padding-left:18px}
.checklist li{margin:8px 0; color:var(--muted)}
.callout{
  background:linear-gradient(135deg, rgba(35,74,90,.14), rgba(176,141,42,.12));
  border:1px solid rgba(0,0,0,.10);
  border-radius:var(--radius);
  padding:22px;
  display:flex; flex-direction:column; gap:10px;
}
.callout strong{font-size:1.1rem}
.footer{
  border-top:1px solid var(--border);
  padding:26px 0 34px;
  background:rgba(255,255,255,.55);
}
.footer .cols{
  display:grid; gap:18px;
  grid-template-columns: 1.3fr 1fr 1fr;
}
.footer small{color:var(--muted)}
.footer a{color:var(--accent-2); text-decoration:none}
.footer a:hover{text-decoration:underline}

.page-hero{
  position:relative;
  padding:56px 0;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.page-hero::after{
  content:"";
  position:absolute; inset:0;
  background-size: var(--hero-size, cover);
  background-position: var(--hero-pos, center 25%);
  filter:saturate(1.02);
  transform:scale(1.01);
  z-index:0;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(251,247,239,.90) 0%, rgba(251,247,239,.78) 48%, rgba(251,247,239,.30) 82%, rgba(251,247,239,.12) 100%);
  z-index:1;
}
.page-hero .content{position:relative; z-index:2}
.breadcrumb{font-weight:700; color:rgba(0,0,0,.65); margin-bottom:10px}
.page-hero h1{margin:0 0 10px; font-size: clamp(1.9rem, 3vw, 2.6rem)}
.page-hero p{margin:0; max-width:75ch; color:rgba(0,0,0,.74)}

.two-col{
  display:grid; grid-template-columns: 1fr .9fr; gap:22px;
  align-items:start;
}
.note{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.note h3{margin:0 0 8px}
.note p{margin:0; color:var(--muted)}
.kv{
  display:grid; gap:8px; margin:16px 0 0;
}
.kv div{
  display:flex; justify-content:space-between; gap:14px;
  padding:10px 12px;
  background:rgba(255,255,255,.7);
  border:1px solid var(--border);
  border-radius:14px;
}
.kv strong{font-weight:800}
.form{
  display:grid; gap:12px;
}
label{font-weight:750}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.88);
  font:inherit;
}
textarea{min-height:140px; resize:vertical}
.help{font-size:.93rem; color:var(--muted)}
hr.sep{border:0; border-top:1px solid var(--border); margin:22px 0}

@media (max-width: 980px){
  .grid.services{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .footer .cols{grid-template-columns: 1fr}
}
@media (max-width: 760px){
  .nav, .cta{display:none}
  .hamburger{display:inline-block}
  .hero{min-height:72vh}
  .page-hero{min-height:240px; padding:40px 0}
}

.mobile-drawer{
  position:fixed; inset:0;
  background:rgba(0,0,0,.36);
  display:none;
  z-index:2000;
}
.mobile-drawer[aria-hidden="false"]{display:block}
.drawer-panel{
  position:absolute; right:0; top:0; height:100%;
  width:min(92vw, 420px);
  background:var(--bg);
  border-left:1px solid var(--border);
  padding:18px;
  box-shadow: -20px 0 30px rgba(0,0,0,.18);
}
.drawer-header{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px}
.drawer-close{
  border:1px solid var(--border);
  background:var(--surface-solid);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}
.drawer-nav a{
  display:block;
  padding:14px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
}
.drawer-nav a:hover{background:rgba(0,0,0,.05)}
.drawer-nav details{
  border:1px solid var(--border);
  background:rgba(255,255,255,.7);
  border-radius:16px;
  padding:10px 10px;
  margin:10px 0;
}
.drawer-nav summary{
  list-style:none;
  cursor:pointer;
  font-weight:900;
  padding:10px 10px;
  border-radius:12px;
}
.drawer-nav summary::-webkit-details-marker{display:none}
.drawer-nav .sub a{padding:12px 10px; font-weight:750}
