
:root{
  --ink:#151613;
  --muted:#66665f;
  --paper:#f5f2eb;
  --paper-2:#ebe6dc;
  --white:#ffffff;
  --stone:#867d70;
  --accent:#9b4d2c;
  --accent-dark:#73351d;
  --line:rgba(21,22,19,.13);
  --shadow:0 18px 50px rgba(0,0,0,.10);
  --radius:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.77rem;
  font-weight:800;
  color:var(--accent);
}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  line-height:1.08;
  letter-spacing:-.02em;
  margin:0 0 .6em;
}
h1{font-size:clamp(2.7rem,7vw,5.9rem);max-width:12ch}
h2{font-size:clamp(2rem,4.2vw,3.7rem)}
h3{font-size:1.45rem}
p{margin:0 0 1.15rem}
.lead{font-size:clamp(1.06rem,2vw,1.28rem);color:#34352f;max-width:760px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:.9rem 1.2rem;
  border-radius:999px;
  background:var(--accent);
  color:var(--white);
  text-decoration:none;
  font-weight:800;
  border:1px solid var(--accent);
  transition:.2s ease;
}
.btn:hover{background:var(--accent-dark);border-color:var(--accent-dark);transform:translateY(-1px)}
.btn.secondary{background:transparent;color:var(--ink);border-color:rgba(21,22,19,.3)}
.btn.secondary:hover{background:var(--ink);color:white}
.topbar{
  background:var(--ink);
  color:white;
  font-size:.9rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:38px;
  gap:1rem;
}
.topbar a{text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(245,242,235,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.01em;
}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--ink);color:white;
  font-family:Georgia,serif;font-size:1.25rem;
}
.nav-links{display:flex;align-items:center;gap:1.15rem}
.nav-links a{text-decoration:none;font-weight:700;font-size:.94rem}
.nav-links a:hover{color:var(--accent)}
.menu-btn{display:none;border:0;background:transparent;font-size:1.55rem}
.hero{
  padding:clamp(4rem,8vw,7.5rem) 0 5rem;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:auto -5% -22% auto;
  width:62vw;height:62vw;max-width:850px;max-height:850px;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 35%,rgba(155,77,44,.18),transparent 56%),
    linear-gradient(135deg,rgba(21,22,19,.08),rgba(255,255,255,0));
  z-index:-1;
}
.hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:3rem;align-items:center}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.7rem}
.hero-photo{
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:520px;
  background:var(--paper-2);
  border:1px solid var(--line);
}
.hero-photo img{width:100%;height:100%;object-fit:cover;min-height:520px}
.hero-badges{display:flex;gap:.6rem;flex-wrap:wrap;margin:1.2rem 0 0}
.badge{padding:.45rem .7rem;border:1px solid var(--line);border-radius:999px;font-size:.86rem;font-weight:700;background:rgba(255,255,255,.5)}
.section{padding:5.5rem 0}
.section.white{background:white}
.section.dark{background:var(--ink);color:white}
.section.dark .lead,.section.dark p{color:#d6d6cf}
.section-head{display:flex;justify-content:space-between;gap:2rem;align-items:end;margin-bottom:2.4rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.35rem;
  box-shadow:0 8px 24px rgba(0,0,0,.035);
}
.card.dark-card{background:#22231f;color:white;border-color:rgba(255,255,255,.10)}
.card a.more{font-weight:800;color:var(--accent);text-decoration:none}
.service-card{
  display:flex;flex-direction:column;justify-content:space-between;min-height:275px
}
.service-icon{
  width:50px;height:50px;border-radius:14px;
  background:var(--paper-2);
  display:grid;place-items:center;font-size:1.25rem;margin-bottom:1.1rem
}
.photo-card{padding:0;overflow:hidden}
.photo-card img{width:100%;height:280px;object-fit:cover}
.photo-card .pad{padding:1.2rem}
.split{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.checks{display:grid;gap:.7rem;margin:1.2rem 0}
.check{display:flex;gap:.65rem;align-items:flex-start}
.check b{color:var(--accent)}
.band{
  padding:1.1rem 0;
  background:var(--accent);
  color:white;
}
.band .container{display:flex;align-items:center;justify-content:space-between;gap:1.5rem}
.band strong{font-family:Georgia,serif;font-size:1.35rem}
.kicker-card{
  background:linear-gradient(135deg,#24251f,#12130f);
  color:white;border-radius:30px;padding:2.3rem;
}
.kicker-card p{color:#d8d8d1}
.logo-word{font-family:Georgia,serif;font-size:2.2rem;font-weight:800;letter-spacing:-.04em}
.small{font-size:.9rem;color:var(--muted)}
.breadcrumbs{font-size:.86rem;color:var(--muted);padding-top:1.2rem}
.breadcrumbs a{text-decoration:none}
.page-hero{padding:3.8rem 0 3.2rem}
.page-hero h1{font-size:clamp(2.6rem,6vw,5rem);max-width:14ch}
.rich-text{max-width:840px}
.rich-text h2{font-size:2rem;margin-top:2rem}
.rich-text h3{margin-top:1.6rem}
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line);padding:1rem 0}
.faq summary{cursor:pointer;font-weight:800}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
label{display:block;font-size:.88rem;font-weight:800;margin-bottom:.35rem}
input,select,textarea{
  width:100%;
  font:inherit;
  padding:.85rem .9rem;
  border:1px solid rgba(21,22,19,.22);
  border-radius:12px;
  background:white;
}
textarea{min-height:160px;resize:vertical}
.full{grid-column:1/-1}
.contact-panel{background:white;border:1px solid var(--line);border-radius:28px;padding:1.5rem}
.contact-list{display:grid;gap:.9rem}
.contact-list a{text-decoration:none;font-weight:800}
.notice{padding:.9rem 1rem;border-radius:12px;background:#fff3de;border:1px solid #efd3a5;font-size:.92rem}
.footer{background:#11120f;color:#e7e7df;padding:4rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:1.3fr .7fr .7fr;gap:2rem}
.footer h3{font-family:inherit;font-size:1rem;text-transform:uppercase;letter-spacing:.08em}
.footer a{color:#e7e7df;text-decoration:none}
.footer a:hover{text-decoration:underline}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:2.5rem;padding-top:1.3rem;color:#aaa}
.location-pills{display:flex;flex-wrap:wrap;gap:.5rem}
.location-pills span{padding:.42rem .72rem;background:white;border:1px solid var(--line);border-radius:999px;font-size:.88rem;font-weight:700}
.cta-box{
  display:flex;justify-content:space-between;align-items:center;gap:2rem;
  padding:2rem;border-radius:26px;background:var(--paper-2);border:1px solid var(--line)
}
.placeholder-note{font-size:.8rem;color:var(--muted);margin-top:.45rem}
@media(max-width:900px){
  .hero-grid,.split,.grid-3,.grid-2,.footer-grid{grid-template-columns:1fr}
  .hero-photo,.hero-photo img{min-height:380px}
  .nav-links{
    display:none;position:absolute;left:20px;right:20px;top:80px;
    background:var(--paper);border:1px solid var(--line);border-radius:18px;
    padding:1rem;box-shadow:var(--shadow);flex-direction:column;align-items:flex-start
  }
  .nav-links.open{display:flex}
  .menu-btn{display:block}
  .section-head,.band .container,.cta-box{align-items:flex-start;flex-direction:column}
}
@media(max-width:620px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .topbar .container{font-size:.78rem}
  .form-grid{grid-template-columns:1fr}
  .full{grid-column:auto}
  .section{padding:4rem 0}
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: url("../images/dinomac-logo.png") center / contain no-repeat !important;
  border: none !important;
  border-radius: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
}