/* =============================================================
   BaytiPro — Master stylesheet
   Design tokens, reset, layout, components, sections, responsive
   ============================================================= */

/* ----- 1. TOKENS ---------------------------------------------- */
:root {
  --navy:        #0F2C4D;
  --navy-deep:   #0A1F38;
  --navy-soft:   #1A3960;
  --gold:        #B89052;
  --gold-light:  #D4B888;
  --gold-deep:   #9A7740;
  --cream:       #F8F4ED;
  --ivory:       #FBF8F2;
  --white:       #FFFFFF;
  --ink:         #1A2B40;
  --muted:       #7A8699;
  --line:        rgba(184,144,82,.25);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 2px rgba(15,44,77,.06);
  --shadow:     0 8px 24px rgba(15,44,77,.08);
  --shadow-lg:  0 20px 48px rgba(15,44,77,.12);

  --container:  1280px;
  --container-narrow: 880px;
  --space-x: clamp(1.25rem, 4vw, 2.5rem);

  --t-fast: 150ms cubic-bezier(.2,.7,.3,1);
  --t:      280ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 520ms cubic-bezier(.2,.7,.3,1);
}

/* ----- 2. RESET ----------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: var(--radius-sm); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.005em;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: .75rem 1rem; z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.screen-reader-text {
  position:absolute!important; clip:rect(1px,1px,1px,1px);
  height:1px; width:1px; overflow:hidden; word-wrap:normal!important;
}

/* ----- 3. LAYOUT ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-x);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--page { padding-block: clamp(3rem, 8vw, 6rem); }
.section--center { text-align: center; }

/* ----- 4. UTILITIES ------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: var(--gold);
}
.link-gold { color: var(--gold); font-weight: 500; }
.link-gold:hover { color: var(--gold-deep); }

.icon { width: 1.4em; height: 1.4em; }
.icon--gold { color: var(--gold); }
.icon--navy { color: var(--navy); }

/* ----- 5. BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(184,144,82,.28);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184,144,82,.38);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--ghost {
  background: transparent; color: var(--navy);
}

/* ----- 6. HEADER ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,244,237,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
  padding-block: 1rem;
}

.site-brand { display: inline-flex; align-items: center; }
.brand-logo { display: inline-flex; align-items: center; gap: .75rem; }
.brand-logo__mark { flex: 0 0 auto; }
.brand-logo__text { display: flex; flex-direction: column; line-height: 1; }
.brand-logo__name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: .04em;
}
.brand-logo__name strong { font-weight: 700; }
.brand-logo__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: .02em;
}

.site-nav .nav__list {
  display: flex; gap: 2.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: .35rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: .01em;
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 1.5px; background: var(--gold);
  transition: right var(--t);
}
.nav__link:hover, .nav__link.current-menu-item,
.current-menu-item > .nav__link,
.current_page_item > .nav__link {
  color: var(--gold);
}
.nav__link:hover::after,
.current-menu-item > .nav__link::after,
.current_page_item > .nav__link::after { right: 0; }

.site-header__cta { flex: 0 0 auto; }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle__bar {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- 7. HERO ------------------------------------------------ */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23B89052' stroke-opacity='.10' stroke-width='1'><polygon points='60,8 70,28 92,28 76,44 84,68 60,56 36,68 44,44 28,28 50,28'/></g></svg>");
  background-position: 0 0;
  background-size: 140px;
  width: 38%;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

/* Right-bleed image background */
.hero__visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  z-index: 2;
  pointer-events: none;
}
.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero__image-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(248,244,237,.55) 12%, transparent 28%),
    linear-gradient(180deg, rgba(248,244,237,.15) 0%, transparent 30%, rgba(248,244,237,.18) 100%);
}
.hero__arch-outline {
  position: absolute;
  top: 3%;
  left: 4%;
  width: 62%;
  height: 92%;
  pointer-events: none;
  opacity: .85;
}
.hero__key {
  position: absolute;
  top: 8%;
  left: 18%;
  width: clamp(60px, 6.5vw, 95px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(15,44,77,.22));
  animation: hero-key-float 7s ease-in-out infinite;
}
@keyframes hero-key-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 540px);
  align-content: center;
  min-height: clamp(520px, 78vh, 760px);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__content { position: relative; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -.005em;
  margin: 0 0 1.25rem;
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-style: normal;
  color: var(--gold);
  line-height: 1.4;
  margin: 0 0 2rem;
  max-width: 520px;
  font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__nav-prev {
  position: absolute;
  left: max(.5rem, calc(50% - var(--container)/2 - 2.5rem));
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent; border: 0;
  color: var(--navy);
  opacity: .35;
  z-index: 4;
  transition: opacity var(--t);
}
.hero__nav-prev:hover { opacity: .8; }

/* ----- 8. TRUST STRIP ----------------------------------------- */
.trust {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.75rem;
}
.trust__list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}
.trust__item {
  display: flex; align-items: center; gap: 1.1rem;
  justify-content: center;
  text-align: left;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.3;
  position: relative;
}
.trust__item + .trust__item::before {
  content: '';
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: var(--gold-light);
  opacity: .6;
}
.trust__icon-wrap {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.trust__icon {
  width: 28px; height: 28px;
  color: var(--gold);
}
.trust__text { display: flex; flex-direction: column; }
.trust__line1, .trust__line2 { display: block; color: var(--navy); }

/* ----- 9. SECTION HEADER -------------------------------------- */
.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.section-head--center { text-align: center; }
.section-head__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}
.section-head .ornament { display: inline-block; color: var(--gold); flex: 0 0 auto; }
.section-head .ornament--reverse svg { transform: scaleX(-1); }

/* ----- 10. SERVICES GRID -------------------------------------- */
.services { background: var(--ivory); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}
.service-card {
  display: flex; gap: 1.25rem; align-items: center;
  padding: 1.6rem 1.85rem;
  background: var(--white);
  border: 1.25px solid var(--gold-light);
  border-radius: var(--radius);
  color: var(--navy);
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: var(--shadow-sm);
  min-height: 110px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
  color: var(--navy);
}
.service-card__icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--navy);
}
.service-card__icon .icon { width: 48px; height: 48px; }
.service-card__body { flex: 1; }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 .15rem;
  color: var(--navy);
  line-height: 1.2;
}
.service-card__more {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .92rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .01em;
  transition: gap var(--t);
}
.service-card:hover .service-card__more { gap: .65rem; color: var(--gold-deep); }

/* --- Image variant of the home service card --- */
.service-card--image {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 0;
	overflow: hidden;
	min-height: 340px;
}
.service-card__media {
	position: relative;
	height: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--navy-deep);
}
.service-card__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(15,44,77,.05) 0%, rgba(15,44,77,.55) 100%);
	pointer-events: none;
}
.service-card__icon--overlay {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 46px; height: 46px;
	display: grid; place-items: center;
	background: rgba(15,44,77,.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(184,144,82,.5);
	border-radius: 50%;
	color: var(--gold-light);
	z-index: 2;
}
.service-card__icon--overlay .icon { width: 24px; height: 24px; color: var(--gold-light); }
.service-card--image .service-card__body {
	padding: 1.35rem 1.5rem 1.5rem;
	display: flex; flex-direction: column; gap: .35rem;
}
.service-card--image .service-card__title {
	font-size: 1.35rem;
	line-height: 1.2;
	margin: 0;
}
.service-card__desc {
	margin: 0;
	color: var(--muted);
	font-size: .93rem;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.service-card--image .service-card__more { margin-top: .35rem; }

/* ----- 11. TESTIMONIALS --------------------------------------- */
.testimonials {
  background: var(--ivory);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  position: relative;
}
.testimonials__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.testimonials__track {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 3rem 0 5rem;
  width: 100%;
}
.testimonials__quote-mark {
  position: absolute;
  top: -1.25rem;
  left: 0.5rem;
  width: 70px; height: 70px;
  color: var(--gold);
}
.testimonial {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}
.testimonial[hidden] { display: none; }
.testimonial__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 400;
  quotes: '“' '”';
}
.testimonial__quote::before { content: open-quote; }
.testimonial__quote::after  { content: close-quote; }
.testimonial__author {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-serif);
}
.testimonial__name {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-style: normal;
}
.testimonial__role {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: .92rem;
  margin-top: 2px;
}
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: transparent; border: 0;
  color: var(--navy);
  opacity: .35;
  z-index: 2;
  transition: opacity var(--t);
}
.testimonials__nav:hover { opacity: .8; }
.testimonials__nav--prev { left: max(.5rem, calc(50% - var(--container)/2 - 2.5rem)); }
.testimonials__nav--next { right: max(.5rem, calc(50% - var(--container)/2 - 2.5rem)); }
.testimonials__dots {
  display: flex; justify-content: flex-end; gap: .55rem;
  margin-top: 1.25rem;
  padding-right: 3rem;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0; padding: 0;
  background: var(--gold-light); opacity: .55;
  transition: opacity var(--t), transform var(--t), background var(--t);
}
.dot.is-active { opacity: 1; transform: scale(1.15); background: var(--gold); }

/* ----- 12. CTA BANNER ----------------------------------------- */
.cta-banner {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding-block: clamp(1.75rem, 3vw, 2.25rem);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
}
.cta-banner__star {
  color: var(--gold);
  flex: 0 0 auto;
  opacity: .9;
  display: grid; place-items: center;
}
.cta-banner__text { color: var(--cream); }
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  color: var(--cream);
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
}
.cta-banner__subtitle {
  margin: .25rem 0 0;
  font-style: italic;
  color: rgba(248,244,237,.7);
  font-size: .92rem;
}
.cta-banner .btn--primary {
  box-shadow: 0 4px 14px rgba(184,144,82,.3);
}

/* ----- 13. FOOTER --------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(248,244,237,.8);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr 1fr;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
  align-items: start;
}
.site-footer__col {}
.site-footer__brand .brand-logo__name,
.site-footer__brand .brand-logo__tagline { color: var(--cream); }
.site-footer__brand .brand-logo__name { color: var(--cream); }
.site-footer__brand .brand-logo__tagline { color: var(--gold-light); }
.site-footer__heading {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: .02em;
}
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: .5rem; }
.site-footer__list a {
  color: rgba(248,244,237,.7);
  font-size: .92rem;
  transition: color var(--t-fast);
}
.site-footer__list a:hover { color: var(--gold-light); }
.site-footer__list--contact li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(248,244,237,.85);
  font-size: .92rem;
}
.site-footer__list--contact svg { color: var(--gold); flex: 0 0 auto; }
.site-footer__list--contact a {
  color: rgba(248,244,237,.85);
  transition: color var(--t-fast);
}
.site-footer__list--contact a:hover { color: var(--gold-light); }
.site-footer__tagline {
  color: rgba(248,244,237,.7);
  font-size: .9rem;
  line-height: 1.6;
  margin: .75rem 0 0;
  max-width: 22ch;
}

.site-footer__col--star {
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between; gap: 1.25rem;
  color: var(--gold);
  opacity: .85;
  min-height: 130px;
}
.site-footer__social {
  display: flex; gap: .9rem; list-style: none; padding: 0; margin: 0;
}
.site-footer__social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(184,144,82,.12);
  color: var(--cream);
  transition: background var(--t), color var(--t);
}
.site-footer__social a:hover { background: var(--gold); color: var(--navy-deep); }

.site-footer__bottom {
  border-top: 1px solid rgba(248,244,237,.1);
  padding-block: 1.25rem;
  text-align: center;
  font-size: .85rem;
  color: rgba(248,244,237,.55);
}

/* ----- 14. PAGE / POST ---------------------------------------- */
.page-header { margin-bottom: 2rem; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin: 0;
}
.entry-meta {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .5rem;
}
.entry-thumb {
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.rich-text p { margin: 0 0 1.25em; line-height: 1.75; }
.rich-text h2, .rich-text h3 { margin-top: 1.5em; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card__media img { width: 100%; height: 220px; object-fit: cover; }
.post-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.post-card__title {
  font-family: var(--font-serif); font-size: 1.4rem;
  margin: 0 0 .5rem;
}
.post-card__title a { color: var(--navy); }
.post-card__title a:hover { color: var(--gold); }
.post-card__excerpt p { margin: 0 0 1rem; color: var(--muted); }

/* ----- 15. RESPONSIVE ----------------------------------------- */
@media (max-width: 1100px) {
  .hero__visual { width: 50%; }
  .hero__inner { grid-template-columns: minmax(0, 460px); }
  .section-head { gap: .75rem; }
  .section-head .ornament svg { width: 80px; }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(248,244,237,.95), rgba(248,244,237,.65) 60%, rgba(248,244,237,.85)),
      var(--cream);
  }
  .hero__bg-pattern { width: 100%; opacity: .5; }
  .hero__visual {
    position: relative;
    width: auto; height: 320px;
    margin-inline: calc(var(--space-x) * -1);
    margin-bottom: 1.5rem;
  }
  .hero__arch-outline { width: 80%; left: 10%; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__nav-prev { display: none; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__col--star {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header__inner { gap: 1rem; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 1rem var(--space-x) 1.5rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav .nav__list { flex-direction: column; gap: 1rem; }
  .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand-logo__tagline { display: none; }
  .brand-logo__name { font-size: 1.4rem; }

  .hero__visual { height: 260px; }

  .trust__list { grid-template-columns: 1fr; gap: 1rem; }
  .trust__item + .trust__item::before { display: none; }
  .trust__item { justify-content: flex-start; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.25rem 1.4rem; }

  .section-head { flex-direction: column; gap: .5rem; }
  .section-head .ornament { display: none; }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    justify-items: center;
  }
  .cta-banner__text { text-align: center; }

  .testimonial { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial__author { text-align: left; }
  .testimonials__track { padding: 0 1rem 0 3rem; }
  .testimonials__quote-mark { width: 48px; height: 48px; top: -1rem; }
  .testimonials__dots { padding-right: 0; justify-content: center; }
  .testimonials__nav { display: none; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer__col--star { flex-direction: column; align-items: flex-start; }
}

/* Print */
@media print {
  .site-header, .cta-banner, .site-footer__bottom, .hero__nav-prev { display: none; }
  body { background: white; color: black; }
}

/* ----- 16. REVEAL ANIMATIONS ---------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(15,44,77,.08);
  background: rgba(248,244,237,.98);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms!important;
    transition-duration: .001ms!important;
  }
  .hero__key { animation: none; }
}
