:root {
  --navy:      #163a5f;
  --navy-deep: #0f2942;
  --gold:      #c98a1a;
  --gold-text: #7a5c0f;
  --gold-soft: #f4e6c9;
  --ink:       #1f2733;
  --text:      #3d4753;
  --muted:     #5c6875;
  --line:      #e2e6ea;
  --bg:        #ffffff;
  --bg-alt:    #f4f7f9;
  --bg-warm:   #fbf7ef;
  --focus:     #1a6be0;
  --sans: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; } }
body { margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:hover { color: var(--navy-deep); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 3px; }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .7rem 1.1rem; z-index: 200; border-radius: 0 0 6px 0; font-weight: 600; }
.skip:focus { left: 0; color: #fff; }

/* demo banner */
.demo-banner { background: var(--navy-deep); color: #eaf1f8; font-size: .82rem; text-align: center; padding: .5rem 1rem; }
.demo-banner a { color: #ffd98a; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* header */
header.site { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,255,255,.96); backdrop-filter: saturate(1.3) blur(6px); z-index: 100; }
.bar { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand img { height: 52px; width: auto; }
.brand .name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; line-height: 1.05; color: var(--navy); }
.brand .name small { display: block; font-family: var(--sans); font-weight: 500; font-size: .72rem; color: var(--muted); letter-spacing: .02em; }
nav.primary { margin-left: auto; }
nav.primary ul { list-style: none; display: flex; flex-wrap: wrap; gap: .2rem; margin: 0; padding: 0; align-items: center; }
nav.primary a { display: block; padding: .5rem .7rem; border-radius: 6px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
nav.primary a:hover { background: var(--bg-alt); color: var(--navy); }
nav.primary a[aria-current="page"]:not(.btn) { color: var(--navy); box-shadow: inset 0 -3px 0 var(--gold); border-radius: 0; }
.btn { display: inline-block; font-weight: 700; text-decoration: none; border-radius: 8px; padding: .6rem 1.1rem; font-size: .95rem; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #b07914; color: var(--navy-deep); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--bg-alt); }

/* hero */
.hero { position: relative; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: clamp(340px, 52vh, 560px); object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,41,66,.86) 0%, rgba(15,41,66,.62) 55%, rgba(15,41,66,.30) 100%); }
.hero-inner { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-inner .wrap { width: 100%; }
.hero-card { max-width: 620px; color: #fff; }
.hero .eyebrow { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: #ffd98a; margin: 0 0 .6rem; }
.hero h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08; margin: 0 0 .6rem; color: #fff; text-wrap: balance; }
.hero .verse { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: #eaf1f8; margin: 0 0 1.4rem; }
.hero .cta-row { display: flex; gap: .7rem; flex-wrap: wrap; }

/* interior page banner */
.page-head { background: var(--navy-deep); color: #fff; padding: clamp(2.2rem, 5vw, 3.4rem) 0; }
.page-head .eyebrow { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: #ffd98a; margin: 0 0 .5rem; }
.page-head h1 { font-family: var(--serif); font-size: clamp(1.9rem, 4.5vw, 2.8rem); line-height: 1.1; margin: 0; color: #fff; text-wrap: balance; }
.page-head p { color: #d7e2ee; margin: .7rem 0 0; max-width: 640px; }
.breadcrumb { padding: .8rem 0; font-size: .88rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; color: var(--muted); margin-left: .35rem; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { text-decoration: none; }

main { display: block; }
section { padding: clamp(2.4rem, 6vw, 4rem) 0; }
section:nth-of-type(even) { background: var(--bg-alt); }
.sec-head { max-width: 720px; margin: 0 0 1.8rem; }
.sec-head .kicker { font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; color: var(--gold-text); margin: 0 0 .5rem; }
h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1.15; color: var(--navy); margin: 0 0 .5rem; text-wrap: balance; }
h3 { font-size: 1.2rem; color: var(--ink); margin: 0 0 .4rem; }
p { margin: .7rem 0; }
.lead { font-size: 1.15rem; color: var(--ink); }
.prose { max-width: 760px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.2rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem; }
section:nth-of-type(even) .card { background: #fff; }
.card .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-soft); color: var(--navy); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: .8rem; }
.card p { color: var(--text); margin: .3rem 0 0; font-size: .98rem; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1rem; }
.gallery figure { margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gallery img { width: 100%; height: 240px; object-fit: cover; }
.gallery figcaption { padding: .7rem .9rem; font-size: .9rem; color: var(--muted); }

.dates { display: grid; gap: .6rem; max-width: 760px; }
.date-item { display: flex; gap: 1rem; align-items: baseline; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 8px; padding: .9rem 1.1rem; }
.date-item time { font-weight: 700; color: var(--navy); min-width: 118px; font-variant-numeric: tabular-nums; }
.date-item .d-title { color: var(--ink); font-weight: 600; }

blockquote.testi { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(1.3rem,3vw,1.7rem); line-height: 1.4; color: var(--navy); border: none; }
blockquote.testi footer { font-family: var(--sans); font-size: .95rem; color: var(--muted); margin-top: .8rem; font-style: normal; }

/* contact + form */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.4rem; align-items: start; }
.contact-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.contact-list li { display: flex; gap: .7rem; margin: .6rem 0; }
.contact-list .lab { min-width: 84px; color: var(--muted); font-weight: 600; }
.contact-list a { font-weight: 600; }
form.inquiry { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem; }
.field { margin: 0 0 1rem; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.field .req { color: #b3261e; }
.field input, .field textarea { width: 100%; font: inherit; padding: .6rem .7rem; border: 1px solid #c3cbd3; border-radius: 8px; background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus { border-color: var(--navy); }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: .25rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

footer.site { background: var(--navy-deep); color: #d7e2ee; padding: 2.6rem 0 1.4rem; }
footer.site a { color: #ffd98a; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
footer.site h2 { color: #fff; font-size: 1.15rem; font-family: var(--sans); margin: 0 0 .6rem; }
footer.site .fbrand { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
footer.site .fbrand img { height: 54px; background: #fff; border-radius: 8px; padding: 4px; }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li { margin: .3rem 0; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1.1rem; font-size: .82rem; color: #a9bacb; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  nav.primary { width: 100%; margin-left: 0; }
  nav.primary ul { justify-content: flex-start; }
}

/* hero carousel */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hero { min-height: clamp(360px, 54vh, 560px); }
.hero-viewport { position: absolute; inset: 0; overflow: hidden; }
.hero-track { display: flex; height: 100%; margin: 0; padding: 0; list-style: none; transition: transform .5s ease; }
.hero-slide { min-width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { pointer-events: none; }
.hero-ctrls { position: absolute; right: 1.1rem; bottom: 1rem; display: flex; align-items: center; gap: .4rem; z-index: 5; }
.hero-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,.8); background: rgba(15,41,66,.82); color: #fff; font-size: 1.25rem; line-height: 1; cursor: pointer; display: grid; place-items: center; padding: 0; }
.hero-btn:hover { background: rgba(15,41,66,.95); }
.hero-dots { display: flex; gap: .4rem; margin-left: .35rem; }
.hero-dots .dot { width: 13px; height: 13px; border-radius: 50%; border: 2px solid #fff; background: transparent; padding: 0; cursor: pointer; }
.hero-dots .dot[aria-current="true"] { background: #fff; }
@media (prefers-reduced-motion: reduce) { .hero-track { transition: none; } }
@media (max-width: 560px) { .hero-ctrls { right: 50%; transform: translateX(50%); } }
