:root {
  --ink: #24150f;
  --wood: #3a170d;
  --wood-dark: #170d09;
  --gold: #cfaa58;
  --gold-light: #f1d18a;
  --parchment: #eee2c8;
  --parchment-deep: #d9c59d;
  --muted: #6b5a48;
  --green: #657a28;
  --shadow: 0 24px 60px rgba(20, 9, 5, .34);
  --radius: 4px;
  --font-serif: "PT Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", Arial, sans-serif;
  --brand-title-size: clamp(1.25rem, 2.2vw, 1.45rem);
  --black-wood: linear-gradient(rgba(3, 4, 4, .18), rgba(0, 0, 0, .48)), url("/assets/images/backgr.jpg");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #18120f url("/assets/images/backgr.jpg") repeat;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 50% 0, rgba(187, 124, 49, .16), transparent 50%), linear-gradient(rgba(10, 6, 4, .1), rgba(10, 6, 4, .48));
  pointer-events: none;
}
a { color: #566a20; text-underline-offset: .18em; }
a:hover { color: #344313; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 100; padding: .6rem 1rem; color: #fff; background: #111; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { width: 100%; margin: 0; box-shadow: var(--shadow); }
.header-art {
  position: relative;
  min-height: 420px;
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(186, 127, 54, .14), transparent 34%), linear-gradient(135deg, #321b12, #160e0a 72%);
}
.header-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(16, 8, 5, .26), transparent 58%), linear-gradient(0deg, rgba(14, 7, 4, .25), transparent 45%); }
.header-inner { position: relative; z-index: 1; width: min(100% - 2rem, 1080px); min-height: 420px; margin: auto; }
.brand { position: absolute; top: 26px; left: 3%; display: flex; width: min(250px, calc(100% - 2rem)); height: 153px; align-items: center; justify-content: center; flex-direction: column; color: #fff; text-align: center; text-decoration: none; text-shadow: 0 2px 4px #000; }
.brand:hover { color: var(--gold-light); }
.brand-name { font-size: var(--brand-title-size); font-weight: 700; letter-spacing: -.01em; line-height: 1.35; text-transform: uppercase; }
.brand-type { color: #d9d4c9; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.header-contact { position: absolute; top: 103px; left: min(38%, 420px); display: grid; font-style: italic; line-height: 1.35; text-shadow: 0 2px 4px #000; }
.header-contact a { width: max-content; color: #fff; text-decoration: none; }
.header-contact a:hover { color: var(--gold-light); }
.header-contact .header-email { margin-top: .25rem; color: var(--gold-light); font-size: .88rem; }
.motto { position: absolute; bottom: 38px; left: 3%; width: min(470px, 70%); margin: 0; font-size: clamp(1.05rem, 2.2vw, 1.35rem); font-style: italic; line-height: 1.4; text-align: right; text-shadow: 0 2px 4px #000; }

.site-nav { --nav-progress: 0; position: relative; z-index: 20; color: #d7d0c3; background: linear-gradient(#29140d, #140c08); border-block: 1px solid #5d321d; }
.nav-inner { display: flex; min-height: 58px; align-items: center; justify-content: center; padding: 0 1.2rem; }
.nav-identity { display: none; flex: 0 0 auto; margin-right: .8rem; color: #eee4d4; font-family: var(--font-serif); font-size: var(--brand-title-size); font-weight: 700; letter-spacing: -.01em; line-height: 1.35; opacity: var(--nav-progress); white-space: nowrap; }
.site-nav ul { display: flex; align-items: center; justify-content: center; gap: 0; padding: 0; margin: 0; list-style: none; }
.site-nav li + li { border-left: 1px solid rgba(210, 177, 111, .24); }
.site-nav a { display: block; padding: .65rem 1.2rem; color: #d7d0c3; font-family: var(--font-sans); font-size: .76rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; text-decoration: underline; text-decoration-color: var(--gold); }
.nav-toggle { display: none; width: 44px; height: 40px; padding: 8px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.3); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

main { max-width: 980px; min-height: 50vh; margin: 0 auto; padding-bottom: 4rem; background: linear-gradient(rgba(26,15,10,.95), rgba(21,13,9,.98)), url("/assets/images/content-bgr.jpg") top center / 100% auto no-repeat; box-shadow: var(--shadow); }
.service-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 1.4rem; background: rgba(8, 5, 3, .4); }
.service-card { position: relative; min-height: 0; overflow: hidden; color: #fff; background: transparent; text-decoration: none; aspect-ratio: 23 / 11; }
.service-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(16,6,4,.96), rgba(42,11,11,.1) 76%); transition: background .2s ease; }
.service-card:hover::after { background: linear-gradient(0deg, rgba(16,6,4,.92), rgba(154,75,25,.08) 76%); }
.service-card strong, .service-eyebrow { position: absolute; z-index: 1; left: 1rem; right: 1rem; }
.service-card strong { top: 2rem; color: rgba(255, 248, 234, .78); font-size: 1rem; line-height: 1.25; }
.service-eyebrow { top: .65rem; color: #f0cf82; font-family: var(--font-sans); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

.page-shell { width: min(100% - 2rem, 920px); margin: 2.2rem auto 0; padding: clamp(1.5rem, 4vw, 3.4rem); color: #b7aa94; background: rgba(12, 9, 7, .82); border: 1px solid rgba(205, 171, 99, .2); border-radius: var(--radius); box-shadow: 0 18px 45px rgba(0,0,0,.35), inset 0 0 45px rgba(0,0,0,.2); }
.page-shell--wide { width: min(100% - 2rem, 1050px); }
.page-shell > :first-child { margin-top: 0; }
.page-shell > :last-child { margin-bottom: 0; }
.page-shell a { color: #a8b95d; }
.page-shell a:hover { color: #d2df8b; }
h1, h2, h3 { color: #f4eee4; line-height: 1.22; }
h1 { max-width: 820px; margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 3.45rem); font-weight: 500; letter-spacing: -.025em; }
h2 { margin-top: 2.5rem; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; }
h3 { margin-top: 1.8rem; font-size: 1.2rem; }
.eyebrow { margin: 0 0 .4rem; color: #6d7e2e; font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lead { max-width: 780px; color: #d0c4b0; font-size: clamp(1.08rem, 2.2vw, 1.35rem); line-height: 1.55; }
.principle { position: relative; padding: 1.2rem 1.45rem; margin: 1.8rem 0; overflow: hidden; color: #ddd0ba; background: linear-gradient(135deg, rgba(66, 38, 25, .72), rgba(25, 16, 12, .92)); box-shadow: inset 0 1px rgba(255, 238, 198, .06), 0 10px 24px rgba(0, 0, 0, .16); }
.principle::before { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; content: ""; background: linear-gradient(180deg, #78511e, #f0d791 45%, #a9782e 72%, #5d3b17); }
.principle strong { color: #d9b867; background: linear-gradient(90deg, #a8772e, #f4dfa5 52%, #b88435); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.check-list { padding-left: 0; list-style: none; }
.check-list li { position: relative; padding: .45rem 0 .45rem 1.55rem; border-bottom: 1px solid rgba(224, 202, 158, .12); }
.check-list li::before { position: absolute; left: 0; color: #6d7f28; content: "◆"; font-size: .64rem; }
.practice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 2rem 0; }
.practice { padding: 1.3rem; color: inherit; background: rgba(255, 255, 255, .035); border: 1px solid rgba(205, 171, 99, .28); text-decoration: none; }
.practice:hover { color: inherit; background: rgba(255, 255, 255, .075); transform: translateY(-1px); }
.practice strong { display: block; color: #f2e9da; font-size: 1.2rem; }
.practice span { color: #aa9c88; font-size: .92rem; }
.cta { display: flex; gap: 1rem; align-items: center; justify-content: space-between; padding: 1.4rem; margin-top: 2.5rem; color: #ddd0ba; background: linear-gradient(135deg, rgba(66, 38, 25, .72), rgba(25, 16, 12, .92)); box-shadow: inset 0 1px rgba(255, 238, 198, .06), 0 10px 24px rgba(0, 0, 0, .16); }
.cta p { margin: 0; }
.button { display: inline-block; flex: 0 0 auto; padding: .7rem 1.1rem; color: #25130d; background: linear-gradient(135deg, #f6e5b2 0%, #d6ad5b 48%, #a97229 100%); border: 1px solid #d5b367; box-shadow: inset 0 1px rgba(255, 250, 224, .65), 0 5px 14px rgba(0, 0, 0, .22); text-decoration: none; }
.button:hover { color: #160b08; background: linear-gradient(135deg, #fff0c4 0%, #e4bd69 48%, #ba8332 100%); }
.page-shell .button { color: #25130d; }
.page-shell .button:hover { color: #160b08; }
.official-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; padding: 0; list-style: none; }
.official-links a { display: block; min-height: 100%; padding: 1rem; background: rgba(255, 255, 255, .035); border: 1px solid rgba(205, 171, 99, .28); text-decoration: none; }
.official-links a::after { content: " ↗"; }
.contact-list { display: grid; gap: .7rem; padding: 0; margin: 1.8rem 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid rgba(224, 202, 158, .14); }
.contact-list strong { color: #f2e9da; }
.note { padding: 1rem; color: #c7baa5; background: rgba(205, 171, 99, .08); border: 1px solid rgba(205, 171, 99, .3); font-size: .92rem; }

.site-footer { max-width: 980px; margin: 0 auto 3rem; color: #b9ab98; background: #120b08; border-top: 1px solid #5a321e; box-shadow: var(--shadow); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; padding: 1.8rem 2rem; }
.footer-inner p { margin: .2rem 0 0; }
.footer-contact { display: grid; }
.footer-contact a { color: #d7c6ab; }
.copyright { color: #807466; font-size: .8rem; }

@media (min-width: 1000px) {
  .site-header {
    position: relative;
    width: 980px;
    height: 448px;
    margin: 0 auto;
  }
  .header-art {
    min-height: 448px;
    background: #4c1e0c url("/assets/images/header.jpg") 0 0 / 980px 448px no-repeat;
    background-position: 0 0;
    background-size: 980px 448px;
  }
  .header-inner {
    width: 980px;
    min-height: 448px;
  }
  .brand {
    top: 62px;
    left: 47px;
    width: 252px;
    height: 153px;
  }
  .header-contact {
    top: 110px;
    left: 310px;
  }
  .motto {
    bottom: 72px;
    left: 45px;
    width: 400px;
  }
  .site-nav {
    width: 980px;
    height: 49px;
    margin: -49px auto 0;
    background: transparent;
    border: 0;
  }
  .nav-inner {
    min-height: 49px;
    justify-content: flex-start;
    padding: 0 13px;
  }
  .site-nav a {
    padding: .55rem 1.1rem;
    text-shadow: 0 1px 2px #000;
  }
  .service-card:nth-child(1) { background-image: url("/assets/images/banner001.png"); }
  .service-card:nth-child(2) { background-image: url("/assets/images/banner002.png"); }
  .service-card:nth-child(3) { background-image: url("/assets/images/banner003.png"); }
  .service-card:nth-child(4) { background-image: url("/assets/images/banner004.png"); }
  .service-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media (max-width: 999px) {
  :root {
    --brand-title-size: clamp(1.4rem, 4vw, 1.85rem);
  }
  .site-nav {
    position: sticky;
    top: 0;
    transition: background .25s ease, box-shadow .25s ease;
  }
  .site-nav.is-stuck {
    background: rgba(15, 10, 8, .96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .38);
    backdrop-filter: blur(10px);
  }
  .nav-identity {
    display: block;
  }
  .header-art {
    background: var(--black-wood);
    background-position: center;
    background-repeat: no-repeat, repeat;
    background-size: auto, 360px auto;
  }
  .header-art {
    min-height: 230px;
  }
  .header-art::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .04) 70%);
  }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .8rem 2rem;
    align-content: center;
    width: min(100% - 2rem, 760px);
    min-height: 230px;
  }
  .brand {
    position: static;
    width: auto;
    height: auto;
    align-items: flex-start;
    text-align: left;
  }
  .header-contact {
    position: static;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .motto {
    position: static;
    width: min(470px, 100%);
    font-size: 1rem;
    text-align: left;
  }
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card {
    min-height: 112px;
    aspect-ratio: auto;
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  }
  .service-card:nth-child(1) { background: linear-gradient(135deg, #bd2c78 0%, #8f1558 52%, #63103f 100%); }
  .service-card:nth-child(2) { background: linear-gradient(135deg, #bd613a 0%, #9c3d1b 55%, #70220d 100%); }
  .service-card:nth-child(3) { background: linear-gradient(135deg, #3d83ad 0%, #286d97 52%, #164c70 100%); }
  .service-card:nth-child(4) { background: linear-gradient(135deg, #8da43b 0%, #718827 52%, #4e6416 100%); }
  .service-card::after, .service-card:hover::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .02));
  }
}

@media (max-width: 820px) {
  .nav-inner { justify-content: space-between; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav ul { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: .5rem; background: #170d09; box-shadow: 0 12px 24px rgba(0,0,0,.45); }
  .site-nav ul.is-open { display: block; }
  .site-nav li + li { border: 0; }
  .site-nav a { padding: .85rem 1rem; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-art, .header-inner { min-height: 270px; }
  .header-inner { grid-template-columns: 1fr; gap: .75rem; }
  .header-contact { grid-column: 1; grid-row: auto; }
  .header-contact a:nth-child(1), .header-contact a:nth-child(2) { display: none; }
  .service-strip { grid-template-columns: 1fr; padding: .8rem; }
  .service-card { min-height: 108px; }
  .page-shell { width: calc(100% - 1rem); margin-top: 1rem; padding: 1.3rem; }
  .practice-grid, .official-links { grid-template-columns: 1fr; }
  .cta { align-items: flex-start; flex-direction: column; }
  .contact-list li { grid-template-columns: 1fr; gap: .1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1rem; padding: 1.4rem; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
