/* Verge Property — site styles */
:root {
  --ironstone: #4A220D;
  --orange: #973D0C;
  --orange-hi: #B5531A;
  --clay: #B07E55;
  --clay-soft: #E2CDB4;
  --slate: #4E5D66;
  --sand: #EDE3D4;
  --paper: #F8F2E9;
  --ink: #1A0F08;
  --muted: #4A3A2F;
  --line: #D3C1AB;
  --radius: 14px;
  --max: 1160px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--orange); text-underline-offset: 3px; }
a:hover { color: var(--ironstone); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--ironstone); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .9em; display: block; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 40em; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ironstone); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* Notice bar */
.notice { background: #2A1307; color: #EADCCB; font-size: .85rem; text-align: center; padding: 8px 16px; }
.notice strong { color: #fff; font-weight: 700; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(237,227,212,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ironstone); }
.brand svg { width: 34px; height: 34px; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; cursor: pointer; color: var(--ironstone); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: .98rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: var(--sans); transition: background .15s, color .15s, border-color .15s; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #3A1A09; color: #fff; }
.btn-ghost { border-color: var(--ironstone); color: var(--ironstone); background: transparent; }
.btn-ghost:hover { background: var(--ironstone); color: #fff; }
.btn-light { background: #fff; color: var(--ironstone); }
.btn-light:hover { background: var(--clay-soft); color: var(--ironstone); }
.nav .btn { padding: 10px 18px; font-size: .9rem; color: #fff; }
.nav .btn:hover { color: #fff; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 96px 0 88px; background: linear-gradient(180deg, #E6D8C5 0%, #EDE3D4 100%); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero .lead { margin-bottom: 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card { background: #3A1A09; color: #EADCCB; box-shadow: 0 24px 44px -24px rgba(42,19,7,.7); border-radius: 22px; padding: 34px; position: relative; overflow: hidden; }
.hero-card h3 { color: #fff; font-size: 1.5rem; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li { padding: 12px 0 12px 34px; border-top: 1px solid rgba(234,220,203,.18); position: relative; }
.hero-card li:first-child { border-top: 0; }
.hero-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); box-shadow: inset 0 0 0 5px var(--ironstone), 0 0 0 1px var(--orange); }
.hero-card strong { color: #fff; }
.contours { position: absolute; inset: 0; z-index: 1; opacity: .7; pointer-events: none; }

/* Page hero (inner pages) */
.page-hero { padding: 80px 0 56px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: #E6D8C5; }
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }

/* Sections */
section { padding: 88px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: #3A1A09; color: #EADCCB; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: #D9A77C; }
.section-head { max-width: 720px; margin-bottom: 48px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #FBF7F1; border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(74,34,13,.06); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.card p { color: var(--muted); }
.card .more { margin-top: auto; font-weight: 700; text-decoration: none; color: var(--orange); }
.card .more::after { content: " →"; }
.card-link { text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s, border-color .15s; }
.card-link:hover { transform: translateY(-3px); border-color: var(--clay); box-shadow: 0 14px 30px -18px rgba(74,34,13,.45); color: inherit; }
.icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ironstone); color: #F0C4A6; display: grid; place-items: center; margin-bottom: 20px; }
.icon svg { width: 26px; height: 26px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.panel { background: #D9BFA0; border-radius: 22px; padding: 40px; position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; }
.panel .big { font-family: var(--serif); font-size: 3.2rem; color: var(--ironstone); line-height: 1; margin-bottom: 6px; position: relative; z-index: 2; }
.panel p { color: var(--ironstone); margin: 0; position: relative; z-index: 2; }
.panel .contours { opacity: .5; }

/* Checks */
.checks { list-style: none; padding: 0; margin: 0 0 1.5em; }
.checks li { padding-left: 32px; position: relative; margin-bottom: 12px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 5px; background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/13px no-repeat; }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 58px; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--serif); font-size: 2.1rem; color: #D9A77C; }
.section-dark .step p { color: #EADCCB; }

/* Quote / callout */
.callout { border-left: 4px solid var(--orange); background: var(--paper); padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0; }
.callout p:last-child { margin: 0; }

/* Prose (articles, services) */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.9rem; margin-top: 1.6em; }
.prose > h2:first-child, .prose > .meta + p + h2 { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .45em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0 1.6em; font-size: .96rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--ironstone); font-weight: 700; background: var(--clay-soft); }
.layout-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
.aside { position: sticky; top: 100px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.aside h3 { font-size: 1.25rem; }
.aside p { color: var(--muted); font-size: .96rem; }
.aside .btn { width: 100%; justify-content: center; }
.aside .small { margin-top: 18px; font-size: .85rem; }

/* Tags */
.tag { display: inline-block; align-self: flex-start; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); background: var(--clay-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.meta { font-size: .88rem; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--orange); color: #fff; border-radius: 26px; padding: 56px; display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { margin: 0; opacity: .92; }
.cta-band .contours { opacity: .25; }
.cta-band > *:not(.contours) { position: relative; z-index: 2; }

/* Forms */
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-weight: 700; font-size: .92rem; color: var(--ironstone); display: block; margin-bottom: 6px; }
input, select, textarea { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid #BFA88E; border-radius: 10px; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(151,61,12,.15); }
textarea { min-height: 130px; resize: vertical; }
.hidden { display: none; }
.form-note { font-size: .85rem; color: var(--muted); }

/* Footer */
.site-footer { background: #1F0E05; color: #D6C2AE; padding: 64px 0 28px; font-size: .93rem; }
.site-footer a { color: #EADCCB; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.site-footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand-name small { color: var(--clay); }
.legal { border-top: 1px solid rgba(234,220,203,.15); padding-top: 22px; font-size: .8rem; line-height: 1.6; color: #B9A38E; }
.legal p { margin: 0 0 .6em; }

/* Responsive */
@media (max-width: 960px) {
  .hero .wrap, .split, .layout-aside { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aside { position: static; }
  .cta-band { grid-template-columns: 1fr; padding: 40px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .page-hero { padding: 52px 0 40px; }
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; top: 72px; left: 0; right: 0; background: var(--sand); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 18px; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; justify-content: center; border-bottom: 0; }
  .grid-2, .grid-3, .grid-4, .form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card, .panel { padding: 26px; }
  .cta-band { padding: 30px 24px; border-radius: 20px; }
  .prose table { font-size: .88rem; }
  .prose th, .prose td { padding: 8px; }
}
