:root {
  --navy: #0b2740;
  --navy-2: #071c2f;
  --burgundy: #8b1723;
  --cream: #f5efe5;
  --cream-2: #fbf8f1;
  --gold: #9b793f;
  --ink: #102943;
  --line: #cdbb9d;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; }
.page-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-header {
  min-height: 132px;
  background: rgba(250,247,240,.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  border-bottom: 1px solid rgba(10,39,64,.12);
}
.brand { display: flex; align-items: center; gap: 18px; text-decoration: none; }
.brand-mark {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  border: 3px solid var(--navy);
  color: var(--gold); font-size: 42px;
  box-shadow: inset 0 0 0 6px var(--cream-2), inset 0 0 0 8px var(--burgundy);
}
.brand-name { font-weight: 700; color: var(--navy); font-size: clamp(32px,4vw,58px); letter-spacing: .04em; line-height: .9; }
.brand-sub { color: var(--burgundy); font-weight: 700; letter-spacing: .16em; font-size: 19px; text-align: center; margin-top: 8px; }
.header-tagline { text-align: center; font-family: Arial, Helvetica, sans-serif; letter-spacing: .35em; font-size: 12px; line-height: 2.1; color: var(--navy); }
.header-tagline span { letter-spacing: .38em; }
.hero {
  position: relative; flex: 1; overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 76% 33%, rgba(255,255,255,.85), transparent 35%),
    linear-gradient(110deg, #f3ede1 0%, #fbf9f3 47%, #f2ede3 100%);
  padding: 55px 18px 62px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(12,39,64,.08) .7px, transparent .7px);
  background-size: 5px 5px; opacity: .28;
}
.flag-wash {
  position: absolute; left: -8vw; bottom: -18%; width: 48vw; height: 115%; opacity: .15;
  background:
    linear-gradient(120deg, transparent 0 20%, rgba(17,50,78,.92) 20% 42%, transparent 42%),
    repeating-linear-gradient(165deg, rgba(145,21,33,.8) 0 28px, rgba(247,242,231,.7) 28px 58px);
  transform: rotate(-6deg); filter: saturate(.7);
}
.mountain-wash {
  position: absolute; right: -8vw; bottom: -9%; width: 58vw; height: 52%; opacity: .16;
  background:
    linear-gradient(145deg, transparent 0 38%, #17354b 39% 41%, transparent 42%),
    linear-gradient(35deg, transparent 0 44%, #17354b 45% 49%, transparent 50%),
    linear-gradient(155deg, transparent 0 55%, #17354b 56% 60%, transparent 61%);
}
.hero-content { position: relative; z-index: 2; width: min(1040px, 92vw); text-align: center; }
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 16px; font-family: Arial, sans-serif; letter-spacing: .34em; font-size: 12px; font-weight: 700; }
.eyebrow span { width: 80px; height: 1px; background: var(--gold); display: inline-block; }
h1 { margin: 24px 0 10px; font-size: clamp(54px, 7vw, 102px); line-height: .9; letter-spacing: -.035em; color: var(--navy); text-shadow: 0 1px 0 white; }
.stars { color: var(--gold); font-size: 31px; letter-spacing: .35em; margin: 25px 0 18px; }
.intro { font-size: clamp(19px,2.2vw,30px); margin: 0 auto 18px; max-width: 920px; }
.services { font-family: Arial, Helvetica, sans-serif; font-weight: 700; letter-spacing: .28em; font-size: clamp(10px,1.2vw,14px); }
.actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 34px 0; }
.btn { min-width: 260px; padding: 18px 28px; border-radius: 4px; text-decoration: none; font-size: 22px; font-weight: 700; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,39,64,.12); }
.btn-primary { background: linear-gradient(#9c1a28,#7f111d); color: white; border: 1px solid #74121b; }
.btn-primary span { margin-left: 8px; }
.btn-secondary { border: 2px solid var(--navy); background: rgba(255,255,255,.45); color: var(--navy); }
.contact-card {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  background: rgba(252,249,241,.88); border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 8px 22px rgba(10,39,64,.06); text-align: left;
  max-width: 960px; margin: 0 auto; overflow: hidden;
}
.contact-item { min-height: 100px; padding: 22px 26px; display: flex; align-items: center; gap: 16px; border-right: 1px solid #dfd1bc; }
.contact-item:last-child { border-right: 0; }
.icon { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: white; font-family: Arial; font-size: 22px; }
.contact-item strong, .contact-item span, .contact-item a { display: block; }
.contact-item strong { font-size: 17px; margin-bottom: 3px; }
.contact-item a, .contact-item span { font-size: 16px; text-decoration: none; }
.closing { margin-top: 32px; }
.closing-rule { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold); }
.closing-rule span { width: 130px; height: 1px; background: var(--gold); }
.closing p { font-style: italic; font-size: 23px; line-height: 1.2; margin: 14px 0; }
.closing small { font-family: Arial, sans-serif; letter-spacing: .34em; font-weight: 700; font-size: 10px; }
.site-footer {
  position: relative; background: var(--navy-2); color: #f8f2e9;
  min-height: 125px; display: grid; grid-template-columns: 1.2fr 1.6fr .8fr 1fr;
  align-items: center; gap: 22px; padding: 22px 5vw 35px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; border-right: 1px solid rgba(255,255,255,.35); }
.footer-star { color: var(--gold); font-size: 34px; }
.footer-brand b { display: block; font-size: 28px; letter-spacing: .06em; }
.footer-brand span { display: block; color: #ead9bf; letter-spacing: .16em; font-size: 13px; }
.footer-line { font-family: Arial, sans-serif; letter-spacing: .27em; font-size: 10px; }
.socials { display: flex; gap: 12px; justify-content: center; }
.socials span { width: 30px; height: 30px; background: white; color: var(--navy-2); border-radius: 50%; display: grid; place-items: center; font-family: Arial; font-weight: 700; font-size: 13px; }
.footer-motto { border-left: 1px solid rgba(255,255,255,.35); padding-left: 28px; font-family: Arial, sans-serif; letter-spacing: .25em; font-size: 9px; line-height: 1.8; color: #e8d8bd; }
.copyright { position: absolute; left: 5vw; bottom: 10px; font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .08em; opacity: .8; }
@media (max-width: 850px) {
  .site-header { flex-direction: column; gap: 20px; text-align: center; }
  .header-tagline { display: none; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-item { border-right: 0; border-bottom: 1px solid #dfd1bc; }
  .contact-item:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-motto { border: 0; justify-content: center; padding: 0; }
  .copyright { position: static; grid-column: 1; }
}
@media (max-width: 520px) {
  .brand-mark { width: 62px; height: 62px; font-size: 30px; }
  .brand-name { font-size: 34px; }
  .brand-sub { font-size: 14px; }
  .eyebrow span { display: none; }
  .eyebrow { letter-spacing: .22em; }
  h1 { font-size: 48px; }
  .btn { width: 100%; min-width: 0; }
  .closing-rule span { width: 70px; }
}
