/* Sackets Harbor Ballroom — static rebuild of the Divi site
   Palette (from live theme): burgundy #800020, gold #d1a627, orange #ff6d4a, amber #E09900
   Fonts: Abril Fatface (headings), Cabin (buttons), Open Sans (body); Oswald/Roboto on landing pages */

:root {
  --burgundy: #800020;
  --burgundy-70: rgba(128, 0, 32, .7);
  --gold: #d1a627;
  --orange: #ff6d4a;
  --amber: #E09900;
  --grey-bg: #f9f9fb;
  --grey-line: #e1e1e1;
  --text: #666;
  --heading: #333;
  --white: #fff;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-display: 'Abril Fatface', Georgia, serif;
  --font-btn: 'Cabin', Helvetica, Arial, sans-serif;
  --container: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
  color: var(--text);
  background: var(--burgundy);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--burgundy); }
h1, h2, h3, h4, h5, h6 { color: var(--heading); font-weight: 500; line-height: 1.2em; margin: 0 0 .5em; }
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
iframe { max-width: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.page { background: var(--white); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--burgundy); color: #fff; padding: 8px 12px; z-index: 1000; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Display type ---------- */
.display, .display-h2 h2, .display-h3 h3 { font-family: var(--font-display); font-weight: 400; }
.display--xl { font-size: 60px; line-height: 1.2em; }
.display--lg { font-size: 50px; line-height: 1.2em; }
.display--md { font-size: 24px; line-height: 1.6em; }
.display--sm { font-size: 20px; line-height: 1.8em; }
.smallcaps { font-variant: small-caps; font-weight: 700; }
.text-center { text-align: center; }
.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white p { color: #fff; }
@media (max-width: 767px) {
  .display--xl, .display--lg { font-size: 32px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-btn);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  line-height: 1.7em;
  color: #fff !important;
  padding: .45em 1.6em;
  border-radius: 4px;
  border: 0;
  background-color: var(--burgundy);
  background-image: linear-gradient(180deg, #800020 0%, rgba(128, 0, 32, .43) 100%);
  box-shadow: 0 12px 30px -10px rgba(128, 0, 32, .55);
  transition: transform .2s ease, box-shadow .2s ease, letter-spacing .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(128, 0, 32, .7); color: #fff; }
.btn--lg { font-size: 24px; }
.btn--xl { font-size: 28px; }
.btn--solid { background-image: none; border-radius: 8px; }
.btn--plain {
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange) !important;
  background: none;
  box-shadow: none;
  padding: 0;
}
.btn--plain:hover { transform: none; box-shadow: none; color: var(--burgundy) !important; }
.btn--plain::after { content: " \2192"; }
@media (max-width: 767px) { .btn--lg, .btn--xl { font-size: 18px; } }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--burgundy); color: #fff; font-size: 12px; font-weight: 600; line-height: 1em; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; gap: 12px; flex-wrap: wrap; }
.topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--gold); }
.topbar__info a::before { display: inline-block; margin-right: 6px; opacity: .85; }
.topbar__info a.phone::before { content: "\260E"; }
.topbar__info a.mail::before { content: "\2709"; }

@media (max-width: 480px) { .topbar__info .mail { display: none; } }

.social { list-style: none; margin: 0; padding: 0; display: flex; gap: 14px; align-items: center; }
.social a { display: inline-flex; width: 18px; height: 18px; color: inherit; }
.social svg { width: 100%; height: 100%; fill: currentColor; }
.social a:hover { color: var(--gold); }

.header { background: #fff; box-shadow: 0 1px 0 rgba(0, 0, 0, .1); position: sticky; top: 0; z-index: 900; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.header__logo img { width: 240px; max-width: 50vw; height: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; }
.nav a { font-size: 14px; font-weight: 600; color: var(--text); padding: 12px 0; display: block; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--burgundy); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--burgundy); cursor: pointer; padding: 4px 8px; }
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 3px solid var(--burgundy); box-shadow: 0 2px 5px rgba(0, 0, 0, .1); }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: 10px 20px; }
  .nav a { padding: 10px 0; border-bottom: 1px solid #eee; }
}

/* ---------- Sections ---------- */
.section { padding: 54px 0; position: relative; }
.section--tight { padding: 24px 0; }
.section--grey { background: var(--grey-bg); }
.section--light { background: #f9f9f9; }
.section--burgundy { background: var(--burgundy); }
.section--bg { background-size: cover; background-position: center; background-attachment: fixed; }
@media (max-width: 980px) { .section--bg { background-attachment: scroll; } }
.section--bg::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .12); }
.section--bg > .container { position: relative; }
.section--halfgrey { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, #f9f9fb 10%); }

.grid { display: grid; gap: 30px; align-items: center; }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--top { align-items: start; }
.grid--gap-sm { gap: 12px; }
@media (max-width: 767px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

/* ---------- Home hero ---------- */
.hero {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(99deg, #fff 31%, rgba(41, 196, 169, 0) 100%), url(../images/hero-home.jpg);
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hero__title { font-family: var(--font-display); font-size: 56px; letter-spacing: 2px; line-height: 1.15em; color: var(--heading); max-width: 560px; }
.hero__sub { color: var(--amber); font-weight: 700; font-variant: small-caps; font-size: 24px; line-height: 1.3em; margin: 0; }
.hero__actions { margin-top: 22px; }
.hero__inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 30px; align-items: center; }
.hero__promo { display: block; justify-self: end; position: relative; width: 250px; height: 350px; border-radius: 8px; overflow: hidden; background: #0b1a22; box-shadow: 0 14px 34px rgba(0, 0, 0, .35); transition: transform .2s ease, box-shadow .2s ease; }
.hero__promo:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0, 0, 0, .4); }
.hero__promo img { width: 100%; height: 310px; object-fit: contain; display: block; }
.hero__promo-cta { display: block; height: 40px; line-height: 20px; background: var(--burgundy); color: #fff; font-family: var(--font-btn); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 14px; text-align: center; padding: 10px 12px; }
@media (max-width: 767px) {
  .hero { background-image: linear-gradient(180deg, #fff 55%, rgba(255, 255, 255, .5) 100%), url(../images/hero-home.jpg); min-height: 0; padding: 36px 0; }
  .hero__title { font-size: 34px; }
  .hero__sub { font-size: 18px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__promo { justify-self: center; }
}

/* ---------- Subpage hero (Divi fullwidth header) ---------- */
.page-hero {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at right, rgba(255, 255, 255, 0) 0%, #fff 60%); }
.page-hero--flat::before { background: rgba(255, 255, 255, .55); }
.page-hero > .container { position: relative; }
.page-hero__content { max-width: 650px; }
.page-hero__title { font-family: var(--font-display); font-size: 70px; line-height: 1.2em; color: var(--heading); }
.page-hero__sub { font-size: 16px; line-height: 2em; margin-bottom: 1.5em; }
.page-hero--wedding { background-image: url(../images/hero-wedding.jpg); }
.page-hero--meeting { background-image: url(../images/hero-meeting.jpg); }
.page-hero--packages { background-image: url(../images/hero-packages.jpg); }
/* the packages banner has its photo on the left and a white field on the right (no gradient on the live page) */
.page-hero--packages::before { background: none; }
.page-hero--packages .page-hero__content { margin-left: auto; }
@media (max-width: 767px) { .page-hero--packages::before { background: rgba(255, 255, 255, .65); } }
@media (max-width: 980px) { .page-hero__title { font-size: 48px; } }
@media (max-width: 767px) { .page-hero { padding: 50px 0; min-height: 0; } .page-hero__title { font-size: 36px; } }

/* ---------- Home: The Ballroom ---------- */
.ballroom-intro__img img { border-radius: 8px; box-shadow: 6px 6px 18px rgba(0, 0, 0, .25); }
.testimonial { background: #f5f5f5; padding: 26px 30px 26px 56px; border-radius: 6px; position: relative; margin-top: 24px; }
.testimonial::before { content: "\201C"; font-family: var(--font-display); font-size: 64px; color: var(--burgundy); position: absolute; left: 16px; top: 4px; line-height: 1; }
.testimonial p { font-style: italic; font-size: 16px; margin: 0 0 .4em; color: #444; }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--burgundy); }

/* ---------- Home: What We Do ---------- */
.whatwedo__intro { background: rgba(0, 0, 0, .42); border-radius: 8px; box-shadow: 6px 6px 18px rgba(0, 0, 0, .3); padding: 34px 30px; margin-bottom: 40px; }
.whatwedo__intro h2, .whatwedo__intro h3 { color: #fff; }
.whatwedo__intro h3 { font-size: 16px; line-height: 2em; font-variant: small-caps; margin: 0; }
.feature { padding: 0 6px; }
.feature__icon { width: 48px; height: 48px; margin-bottom: 12px; }
.feature h3 { font-family: var(--font-display); font-size: 20px; }
.feature p { line-height: 2em; }
.feature a { color: var(--orange); font-weight: 600; }
.feature a:hover { color: var(--burgundy); }

/* ---------- Home: packages ---------- */
.packages__intro { background: rgba(255, 255, 255, .76); border-radius: 10px; max-width: 600px; margin: 0 auto 36px; padding: 26px 24px; text-align: center; }
.packages__intro h2 { font-family: var(--font-display); font-size: 60px; }
.packages__intro h3 { font-size: 16px; line-height: 2em; font-variant: small-caps; margin: 0; }
.packages__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.card { background: #fff; border: 1px solid var(--grey-line); border-radius: 4px; padding: 40px 40px 44px; margin-bottom: 20px; }
.card h4 { font-family: var(--font-display); font-size: 24px; line-height: 1.6em; }
.card ul { padding-left: 1.1em; }
.card li { line-height: 2.2em; }
.card .btn { margin-top: 14px; }
.card--flat { text-align: center; }
@media (max-width: 767px) { .packages__intro h2 { font-size: 32px; } .packages__grid { grid-template-columns: 1fr; } .card { padding: 28px 22px; } }

/* ---------- CTA box ---------- */
.cta { background-color: var(--burgundy); background-image: linear-gradient(180deg, #800020 0%, rgba(128, 0, 32, .7) 100%); border-radius: 10px; box-shadow: 6px 6px 18px rgba(0, 0, 0, .3); padding: 34px 30px 40px; text-align: center; margin: 30px 0; }
.cta h2 { color: #fff; font-size: 30px; text-shadow: 0 .1em .1em rgba(0, 0, 0, .4); font-variant: small-caps; font-weight: 700; }
.cta .btn { margin-top: 8px; }
@media (max-width: 767px) { .cta h2 { font-size: 22px; } }

/* ---------- Gallery ---------- */
.gallery__title { color: #fff; font-family: var(--font-display); font-size: 60px; text-align: center; margin-bottom: 20px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; background: rgba(255, 255, 255, .82); border-radius: 10px; padding: 14px; }
.gallery a { display: block; overflow: hidden; border-radius: 4px; background: #fff; }
.gallery img { width: 100%; height: 240px; object-fit: cover; transition: transform .3s ease; }
.gallery a:hover img { transform: scale(1.04); }
@media (max-width: 767px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery img { height: 150px; } .gallery__title { font-size: 34px; } }

/* ---------- Dark panel over parallax ---------- */
.panel-dark { background: rgba(0, 0, 0, .49); border-radius: 10px; max-width: 600px; margin: 0 auto; padding: 30px 28px 36px; text-align: center; color: #fff; }
.panel-dark h2 { color: #fff; font-family: var(--font-display); font-size: 60px; }
.panel-dark h3 { color: #fff; font-size: 16px; line-height: 2em; font-variant: small-caps; }
@media (max-width: 767px) { .panel-dark h2 { font-size: 32px; } }

/* ---------- Reviews ---------- */
.reviews__head { text-align: center; }
.reviews__head img { margin: 0 auto 10px; }
.reviews__head h2 { font-family: var(--font-display); font-size: 60px; }
.embed--reviews iframe { width: 100%; min-height: 560px; border: 0; }
@media (max-width: 767px) { .reviews__head h2 { font-size: 32px; } }

/* ---------- Long article ---------- */
.article h1, .article__title { font-family: var(--font-display); font-size: 34px; }
.article__title { margin-top: 0; }
.article h2 { font-size: 22px; margin-top: 1.4em; }
.article h3 { font-size: 18px; margin-top: 1.2em; }
.article p { line-height: 2em; }

/* ---------- Two-column feature blocks (wedding / events pages) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split__title { font-family: var(--font-display); font-size: 50px; line-height: 1.2em; }
.split__lead { font-family: var(--font-display); font-size: 20px; line-height: 1.8em; font-weight: 400; }
.split img { border-radius: 6px; }
.split .feature__icon { margin-bottom: 10px; }
@media (max-width: 767px) { .split { grid-template-columns: 1fr; gap: 24px; } .split__title { font-size: 32px; } .split--reverse .split__media { order: -1; } }

.panel-light { background: rgba(255, 255, 255, .56); border-radius: 8px; padding: 30px; }
.panel-light h2 { font-family: var(--font-display); font-size: 40px; }
.panel-light h3 { font-size: 18px; margin: .6em 0 .2em; }

/* ---------- Packages page ---------- */
.package { padding: 40px 0 50px; }
.package__title { font-family: var(--font-display); font-size: 60px; line-height: 1.2em; }
.package__price { font-family: var(--font-display); font-size: 30px; color: var(--burgundy); margin: 0 0 .5em; }
.package__meta { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; color: var(--orange); margin-bottom: .2em; }
.package h5 { font-weight: 700; color: var(--orange); font-size: 16px; line-height: 1.4em; margin-top: 1em; }
.package li { line-height: 1.9em; }
.package .btn { margin-top: 18px; }
.package__note { font-size: 13px; font-style: italic; }
@media (max-width: 767px) { .package__title { font-size: 34px; } }

/* ---------- Office party ---------- */
.menu-imgs img, .tall-imgs img { margin: 0 auto; border-radius: 6px; box-shadow: 0 4px 14px rgba(0, 0, 0, .15); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin: 24px 0; }

/* ---------- Landing family (elopement / tour / comedy / big game / eclipse) ---------- */
.landing { font-family: 'Roboto', Helvetica, Arial, sans-serif; color: #555; }
.landing-hero { background-image: linear-gradient(90deg, #F0EDEE 65%, #F9F6F5 65%); }
.landing-hero__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 420px; }
.landing-hero__media { background-size: cover; background-position: center; background-image: linear-gradient(30deg, rgba(222, 213, 216, .1) 0%, rgba(222, 213, 216, .7) 100%), url(../images/wedding-planner-30.jpg); min-height: 300px; }
.landing-hero__text { padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; }
.landing-hero__kicker { font-family: 'Roboto', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 22px; color: #898ea2; letter-spacing: 8px; line-height: 1.4em; }
.landing-hero__title { font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; font-size: 56px; letter-spacing: .05em; line-height: 1.2em; color: #333; }
.landing-hero__sub { font-family: 'Roboto', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 16px; color: #d39b86; letter-spacing: 5px; line-height: 1.5em; }
.landing h2 { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-weight: 500; line-height: 1.4em; font-size: 34px; color: #333; }
.landing h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 26px; color: #333; }
.landing .accent, .landing .accent h4, .landing .accent h6 { color: #d9907d; }
.landing .accent h6 { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 18px; line-height: 2.2em; margin: 0; }
.landing-section { padding: 60px 0; background-image: url(../images/divider.png); background-repeat: repeat; }
.landing-panel { background: #f9f6f5; padding: 40px 8% 40px 30px; }
.landing-cta { background-image: linear-gradient(90deg, #F0EDEE 65%, #F9F6F5 65%); }
.landing-cta__inner { background-image: url(../images/wedding-planner-29.jpg); background-size: cover; background-position: center bottom; padding: 80px 20px; text-align: center; }
.landing-cta__inner h5 { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 18px; letter-spacing: 3px; color: #333; }
.landing-cta__inner h2 { font-size: 60px; letter-spacing: 2px; }
.landing .portrait img { border-radius: 4px; box-shadow: 0 10px 30px rgba(0, 0, 0, .15); }
.landing .flyer img { margin: 0 auto; max-width: 720px; width: 100%; box-shadow: 0 10px 30px rgba(0, 0, 0, .18); }
.landing .btn { background-image: none; background-color: #d9907d; box-shadow: 0 10px 25px -8px rgba(217, 144, 125, .8); }
.landing .btn:hover { background-color: #c77a66; }
.landing .btn--burgundy { background-color: var(--burgundy); box-shadow: 0 10px 25px -8px rgba(128, 0, 32, .7); }
.landing .btn--burgundy:hover { background-color: #5e0018; }
@media (max-width: 767px) {
  .landing-hero__grid { grid-template-columns: 1fr; }
  .landing-hero__text { padding: 40px 20px; }
  .landing-hero__title { font-size: 34px; }
  .landing-hero__kicker { font-size: 16px; letter-spacing: 4px; }
  .landing-cta__inner h2 { font-size: 30px; }
  .landing h2 { font-size: 26px; }
}

/* ---------- Event / ticket pages ---------- */
.event-card { background: #fff; border-radius: 6px; padding: 30px; box-shadow: 0 24px 72px -12px rgba(0, 0, 0, .12); }
.event-card h5 { font-family: 'Playfair Display', Georgia, serif; color: #111; font-size: 18px; margin: 1em 0 .2em; }
.event-card p { color: rgba(0, 0, 0, .64); font-size: 16px; }
.event-title { font-family: 'Playfair Display', Georgia, serif; font-size: 44px; color: #fff; line-height: 1.15em; text-align: center; }
.event-poster img { margin: 0 auto; border-radius: 6px; }
@media (max-width: 767px) { .event-title { font-size: 26px; } }

/* ---------- Embeds ---------- */
.embed { width: 100%; }
.embed iframe { width: 100%; border: 0; display: block; }
.embed--form iframe { min-height: 1150px; }
.embed--form-tall iframe { min-height: 1500px; }
.embed--tour iframe { aspect-ratio: 16 / 10; min-height: 420px; }
.embed--video iframe { aspect-ratio: 16 / 9; width: 100%; }

/* ---------- Public events index ---------- */
.events-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.events-list a { display: block; background: #fff; border: 1px solid var(--grey-line); border-radius: 6px; overflow: hidden; color: var(--heading); }
.events-list img { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.events-list h3 { font-size: 17px; padding: 14px 16px 0; }
.events-list p { padding: 0 16px 16px; font-size: 13px; }
@media (max-width: 767px) { .events-list { grid-template-columns: 1fr; } }

/* ---------- Review posts ---------- */
.post__meta { font-size: 13px; color: #999; margin-bottom: 1.5em; }
.post__meta a { color: var(--burgundy); }
.post blockquote { border-left: 4px solid var(--burgundy); margin: 1.5em 0; padding: .5em 1.2em; font-size: 17px; line-height: 1.8em; color: #444; background: #faf7f2; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 20px; }
.review-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.review-card { background: #faf7f2; border-top: 4px solid var(--burgundy); border-radius: 4px; padding: 20px 22px; }
.review-card h3 { font-size: 16px; }
.review-card p { margin-bottom: .5em; }
@media (max-width: 767px) { .review-cards { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.shb-contact { padding: 1rem 0 3rem; font-size: 1.05rem; line-height: 1.6; }
.shb-contact__intro { text-align: center; margin-bottom: 2rem; }
.shb-contact__intro h1 { color: var(--burgundy); margin: 0 0 .5rem; font-family: var(--font-display); font-size: 34px; }
.shb-contact__intro p { max-width: 640px; margin: 0 auto; }
.shb-contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .shb-contact__grid { grid-template-columns: 1fr; } }
.shb-contact__card { background: #faf7f2; border-top: 4px solid var(--burgundy); padding: 1.5rem 1.5rem 1rem; border-radius: 4px; }
.shb-contact__card h2 { color: var(--burgundy); font-size: 1.35rem; margin: 0 0 1rem; }
.shb-contact__card h3 { color: var(--burgundy); font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; margin: 1.25rem 0 .25rem; }
.shb-contact__card p { margin: 0 0 .5rem; }
.shb-contact__card a { color: var(--burgundy); text-decoration: underline; }
.shb-contact__card a:hover { color: var(--gold); }
.shb-contact__map { margin-top: 1.25rem; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); }
.shb-contact__map iframe { display: block; width: 100%; height: 260px; border: 0; }
.shb-contact__form { background: #fff; padding: 1rem; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); }
.shb-contact__form h2 { color: var(--burgundy); font-size: 1.35rem; margin: .25rem 0; text-align: center; }
.shb-contact__form > p { text-align: center; margin: 0 0 1rem; color: #555; }
.shb-contact__form-wrap { width: 100%; min-height: 1107px; }
.shb-contact__form-wrap iframe { width: 100%; height: 100%; min-height: 1107px; border: none; border-radius: 4px; }
.shb-contact__sms { font-size: .85rem; color: #555; margin: 1rem .25rem 0; line-height: 1.5; }
.shb-contact__sms a { color: var(--burgundy); }

/* ---------- Legal pages ---------- */
.legal { max-width: 860px; margin: 0 auto; padding: 40px 20px 60px; font-size: 15px; line-height: 1.8; }
.legal h1 { font-family: var(--font-display); font-size: 36px; color: var(--burgundy); }
.legal h2 { font-size: 20px; color: var(--burgundy); margin-top: 1.6em; }
.legal a { color: var(--burgundy); text-decoration: underline; }

/* ---------- Simple page title ---------- */
.page-title { font-family: var(--font-display); font-size: 40px; color: var(--heading); text-align: center; margin-bottom: 30px; }
@media (max-width: 767px) { .page-title { font-size: 28px; } }

/* ---------- Footer ---------- */
.footer { background: #222; color: #fff; }
.footer__nav { background: #1b1b1b; border-bottom: 1px solid #333; }
.footer__nav ul { list-style: none; margin: 0; padding: 14px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; }
.footer__nav li + li::before { content: "|"; color: #666; margin: 0 14px; }
.footer__nav a { color: #fff; font-weight: 600; font-size: 14px; }
.footer__nav a:hover { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 40px 20px 30px; }
.footer__col h4 { color: var(--gold); font-family: var(--font-display); font-size: 18px; margin-bottom: 12px; }
.footer__col p { color: #ccc; line-height: 1.9em; }
.footer__col a { color: var(--gold); word-break: break-all; }
.footer__col iframe { width: 100%; height: 200px; border: 0; }
.footer__bottom { background: #1b1b1b; padding: 16px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__info { margin: 0; font-size: 13px; color: #aaa; }
.footer__info a { color: #ddd; }
.footer__info a:hover { color: var(--gold); }
.footer .social { color: #ccc; }
@media (max-width: 767px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom .container { flex-direction: column; text-align: center; } }

/* ---------- Contextual silo link block (reciprocal internal linking) ---------- */
.silo__title { font-family: var(--font-display); font-size: 22px; color: var(--burgundy); text-align: center; margin: 0 0 16px; }
.silo__title + .silo__list { margin-bottom: 34px; }
.silo__list { list-style: none; margin: 0 0 10px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.silo__list li { margin: 0; }
.silo__list h4 { margin: 0; font-size: 15px; font-weight: 700; }
.silo__list a { display: block; background: #fff; border: 1px solid var(--grey-line); border-left: 4px solid var(--burgundy); border-radius: 4px; padding: 14px 16px; color: var(--heading); transition: border-color .2s ease, transform .2s ease; }
.silo__list a:hover { border-left-color: var(--gold); transform: translateX(3px); color: var(--burgundy); }
@media (max-width: 767px) { .silo__list { grid-template-columns: 1fr; } }

/* ---------- Location hub facts ---------- */
.loc-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0 36px; }
.loc-facts > div { background: #faf7f2; border-top: 4px solid var(--burgundy); border-radius: 4px; padding: 18px 20px; }
.loc-facts h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--burgundy); margin: 0 0 .4em; }
.loc-facts p { margin: 0; line-height: 1.7; }
@media (max-width: 767px) { .loc-facts { grid-template-columns: 1fr; } }

/* ---------- Footer silo nav ---------- */
.footer__nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 26px 20px 20px; }
.footer__nav-grid h4 { color: var(--gold); font-family: var(--font-display); font-size: 16px; margin: 0 0 10px; }
.footer__nav-grid ul { list-style: none; margin: 0; padding: 0; display: block; }
.footer__nav-grid li { margin: 0 0 7px; }
/* the legacy single-row footer used "|" separators; suppress them inside the silo grid */
.footer__nav-grid li + li::before { content: none; margin: 0; }
.footer__nav-grid a { color: #ddd; font-weight: 500; font-size: 14px; }
.footer__nav-grid a:hover { color: var(--gold); }
@media (max-width: 767px) { .footer__nav-grid { grid-template-columns: 1fr; text-align: center; } }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 80px 20px; }
.notfound h1 { font-family: var(--font-display); font-size: 60px; color: var(--burgundy); }
