:root {
  --primary: #1B365D;
  --primary-dk: #0F2341;
  --primary-lt: #2A4E81;
  --secondary: #C5A059;
  --secondary-dk: #9C7E40;
  --secondary-lt: #D9BC7F;
  --sand: #F5F2ED;
  --sand-dk: #EDE7DB;
  --divider: #E8E2D6;
  --ink: #141414;
  --ink-60: rgba(20, 20, 20, 0.6);
  --ink-40: rgba(20, 20, 20, 0.4);
  --paper: #FAF8F4;
  --white: #FFFFFF;

  --ff-display: "Noto Serif", "Cormorant Garamond", Georgia, serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --nav-h: 72px;
  --pom-h: 36px;
  --top-h: calc(var(--nav-h) + var(--pom-h));

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body.pom-off { --top-h: var(--nav-h); }
body.pom-off .pom-bar { display: none; }

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ----- Type scale ----- */
.display, h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-60);
}
.eyebrow--gold { color: var(--secondary-dk); }
.eyebrow--light { color: rgba(255,255,255,0.72); }

.allcaps {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.serif-xl { font-size: clamp(60px, 8vw, 128px); }
.serif-lg { font-size: clamp(40px, 5vw, 72px); }
.serif-md { font-size: clamp(28px, 3vw, 44px); }
.serif-sm { font-size: clamp(22px, 2vw, 28px); }

.body-lg { font-size: 17px; line-height: 1.6; }
.body { font-size: 15px; line-height: 1.65; }
.body-sm { font-size: 13px; line-height: 1.55; }
.meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-60); font-weight: 500;}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 960px; }

.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.section--hero { padding: 0; }

.divider-line {
  height: 1px;
  background: var(--divider);
  width: 100%;
}
.divider-gold {
  height: 1px;
  background: var(--secondary);
  width: 56px;
}

/* ----- Peace of Mind Bar ----- */
.pom-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--pom-h);
  background: var(--primary);
  color: var(--secondary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 90;
  overflow: hidden;
}
.pom-bar__inner {
  display: flex;
  gap: 28px;
  align-items: center;
}
.pom-bar__dot {
  width: 3px; height: 3px;
  background: var(--secondary);
  border-radius: 50%;
}
.pom-bar__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 0 0 rgba(111, 207, 151, 0.6);
  animation: pulse 2.2s infinite var(--ease);
  display: inline-block;
  margin-right: 6px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 207, 151, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(111, 207, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 207, 151, 0); }
}

/* ----- Nav ----- */
.nav {
  position: fixed;
  top: var(--pom-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  z-index: 80;
  display: flex;
  align-items: center;
  transition: top 0.3s var(--ease);
}
body.pom-off .nav { top: 0; }
.nav--on-dark {
  background: rgba(27, 54, 93, 0.12);
  border-bottom-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.nav--on-dark.nav--scrolled {
  background: rgba(245, 242, 237, 0.96);
  border-bottom-color: var(--divider);
  color: var(--ink);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 32px;
}
.nav__wordmark {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 0.32em;
  font-weight: 500;
  justify-self: center;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav__links--right { justify-self: end; }
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: opacity 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--secondary);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--secondary-dk); }
.nav--on-dark:not(.nav--scrolled) .nav__links a.active { color: var(--secondary-lt); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
}
.btn--gold {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.btn--gold:hover {
  background: var(--secondary-dk);
  color: var(--white);
  border-color: var(--secondary-dk);
}
.btn--outline {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn--light {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn--light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn--ghost {
  padding: 8px 0;
  border: none;
  color: var(--primary);
  position: relative;
}
.btn--ghost .btn__line {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.btn--ghost:hover .btn__line { transform: scaleX(0); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Floating CTA */
.float-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 70;
  background: var(--primary);
  color: var(--white);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px -18px rgba(27,54,93,0.45);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.35s var(--ease);
  border: none;
}
.float-cta:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}
.float-cta__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(197,160,89,0.6);
  animation: pulse-gold 2s infinite;
}
.float-cta:hover .float-cta__dot { background: var(--primary); }
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(197,160,89,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(197,160,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(197,160,89,0); }
}

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }
body.no-reveal .reveal { opacity: 1; transform: none; transition: none; }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--top-h);
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slow-zoom 18s var(--ease) forwards;
}
@keyframes slow-zoom {
  to { transform: scale(1.12); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,35,65,0.35) 0%, rgba(15,35,65,0.0) 30%, rgba(15,35,65,0.55) 100%);
  z-index: 1;
}
.hero__body {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--secondary-lt);
}
.hero__title {
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.96;
  font-weight: 400;
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  max-width: 1200px;
  text-wrap: pretty;
}
.hero__title em {
  font-style: italic;
  color: var(--secondary-lt);
  font-weight: 400;
}
.hero__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__sub {
  max-width: 420px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__chrome {
  position: absolute;
  inset: var(--top-h) 48px 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__chrome span { display: flex; align-items: center; gap: 10px; }
.hero__chrome span::before {
  content: "";
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.4);
}

/* Image placeholder */
.imgph {
  background:
    repeating-linear-gradient(135deg,
      var(--sand-dk) 0, var(--sand-dk) 12px,
      var(--divider) 12px, var(--divider) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink-60);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden;
}
.imgph--dark {
  background:
    repeating-linear-gradient(135deg,
      var(--primary) 0, var(--primary) 12px,
      var(--primary-dk) 12px, var(--primary-dk) 24px);
  color: rgba(255,255,255,0.6);
}
.imgph__label {
  background: var(--sand);
  padding: 6px 12px;
  border: 1px solid var(--divider);
}
.imgph--dark .imgph__label {
  background: var(--primary-dk);
  border-color: rgba(255,255,255,0.15);
}

/* ----- Intro strip ----- */
.intro {
  padding: 140px 0 120px;
  background: var(--sand);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.intro__left .meta { margin-bottom: 20px; }
.intro__right p { font-family: var(--ff-display); font-size: clamp(24px, 2.4vw, 34px); line-height: 1.3; font-weight: 400; color: var(--primary); text-wrap: pretty; }
.intro__right p + p { margin-top: 20px; font-size: 16px; font-family: var(--ff-body); color: var(--ink-60); line-height: 1.7; }

/* ----- Services marquee grid ----- */
.services {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.services__head h2 { font-size: clamp(36px, 4.5vw, 64px); }
.services__head p { color: var(--ink-60); max-width: 420px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}
.svc-card {
  background: var(--paper);
  padding: 48px 36px 36px;
  cursor: pointer;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.svc-card--lg { grid-column: span 3; }
.svc-card--md { grid-column: span 2; }
.svc-card--sm { grid-column: span 2; }

.svc-card:hover { background: var(--sand); }
.svc-card__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.svc-card__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.svc-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,35,65,0.1) 0%, rgba(15,35,65,0.75) 100%);
}
.svc-card:hover .svc-card__img { opacity: 1; }
.svc-card:hover { color: var(--white); }
.svc-card:hover .svc-card__num { color: var(--secondary-lt); }
.svc-card:hover .svc-card__meta { color: rgba(255,255,255,0.7); }
.svc-card > * { position: relative; z-index: 1; }

.svc-card__num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--secondary-dk);
  letter-spacing: 0.15em;
  transition: color 0.4s var(--ease);
}
.svc-card__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.05;
  margin-top: auto;
  font-weight: 400;
  transition: color 0.4s var(--ease);
}
.svc-card__meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  border-top: 1px solid var(--divider);
  padding-top: 14px;
  transition: color 0.4s var(--ease);
}
.svc-card:hover .svc-card__meta { border-color: rgba(255,255,255,0.25); }

/* Touch devices do not have reliable hover states, so keep card imagery visible. */
@media (hover: none) {
  .svc-card__img { opacity: 1; }
  .svc-card { color: var(--white); }
  .svc-card__num { color: var(--secondary-lt); }
  .svc-card__meta { color: rgba(255,255,255,0.76); border-color: rgba(255,255,255,0.25); }
}

/* ----- Trust section ----- */
.trust {
  padding: 140px 0;
  background: var(--sand);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: start;
}
.trust__header {
  grid-column: 1 / 5;
  position: sticky;
  top: calc(var(--top-h) + 40px);
}
.trust__header h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  margin: 16px 0 24px;
}
.trust__items {
  grid-column: 6 / 13;
  display: grid;
  gap: 0;
}
.trust__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
}
.trust__item:first-child { border-top: 1px solid var(--divider); }
.trust__item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--primary);
}
.trust__item p {
  color: var(--ink-60);
  max-width: 520px;
}
.trust__num {
  font-family: var(--ff-display);
  color: var(--secondary-dk);
  font-size: 14px;
  letter-spacing: 0.2em;
  padding-top: 6px;
}

/* ----- About block ----- */
.about {
  padding: 140px 0;
  background: var(--primary);
  color: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__portrait {
  aspect-ratio: 4/5;
  background: var(--primary-dk);
  position: relative;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__portrait::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.about__copy .eyebrow { color: var(--secondary-lt); margin-bottom: 20px; display: block; }
.about__copy h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 28px;
}
.about__copy p {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about__sig {
  margin-top: 32px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  color: var(--secondary-lt);
}
.about__stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.about__stat .num {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--secondary-lt);
  font-weight: 400;
}
.about__stat .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ----- Testimonial ----- */
.testimonial {
  background: var(--sand);
  padding: 140px 0;
  text-align: center;
}
.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  max-width: 900px;
  margin: 32px auto 0;
  color: var(--primary);
  text-wrap: balance;
}
.testimonial__attr {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-dk);
}

/* ----- Closing CTA ----- */
.cta {
  position: relative;
  background: var(--primary-dk);
  color: var(--white);
  padding: 160px 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  opacity: 0.18;
  z-index: 0;
}
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.cta h2 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  max-width: 960px;
}
.cta h2 em {
  font-style: italic;
  color: var(--secondary-lt);
}

/* ----- Footer ----- */
.footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  font-size: 13px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__wm {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.32em;
  margin-bottom: 24px;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-lt);
  margin-bottom: 20px;
  font-family: var(--ff-body);
  font-weight: 600;
}
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: var(--secondary-lt); }
.footer__bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ----- Page headers (inner pages) ----- */
.pagehead {
  padding: calc(var(--top-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--divider);
  background: var(--sand);
}
.pagehead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.pagehead h1 {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.pagehead h1 em { font-style: italic; color: var(--secondary-dk); }
.pagehead__lede {
  max-width: 460px;
  color: var(--ink-60);
  font-size: 17px;
  line-height: 1.7;
}
.pagehead__meta {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}
.pagehead__meta div .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
}
.pagehead__meta div .val {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--primary);
}

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 40px;
}
.crumbs a:hover { color: var(--primary); }
.crumbs__sep { color: var(--secondary); }

/* ----- Proposals/Wedding page bits ----- */
.mason {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.mason__card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--divider);
  transition: transform 0.6s var(--ease);
}
.mason__card:hover { transform: translateY(-6px); }
.mason__img {
  aspect-ratio: var(--ar, 4/5);
  overflow: hidden;
}
.mason__img img, .mason__img > .imgph {
  width: 100%; height: 100%;
  transition: transform 1s var(--ease);
}
.mason__card:hover .mason__img img { transform: scale(1.06); }
.mason__body {
  padding: 24px 4px 0;
}
.mason__body .eyebrow { color: var(--secondary-dk); }
.mason__body h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  margin: 8px 0;
  color: var(--primary);
}
.mason__body p {
  color: var(--ink-60);
  font-size: 14px;
  max-width: 320px;
}
.mason__price {
  font-family: var(--ff-display);
  color: var(--primary);
  font-size: 16px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
}
.mason__price .from {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--paper);
}
.feature-split__media {
  aspect-ratio: 5/6;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.feature-split__media img, .feature-split__media .imgph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-split__body {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-split__body h2 {
  font-size: clamp(36px, 3.6vw, 52px);
  margin: 12px 0 24px;
}
.feature-split__body p {
  color: var(--ink-60);
  margin-bottom: 16px;
}
.feature-split__list {
  margin-top: 32px;
  list-style: none;
  border-top: 1px solid var(--divider);
}
.feature-split__list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
  align-items: center;
}
.feature-split__list .num { font-family: var(--ff-display); color: var(--secondary-dk); font-size: 13px; }
.feature-split__list .name { font-size: 15px; color: var(--primary); }
.feature-split__list .val { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-60); }

/* Package table */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--divider);
  background: var(--paper);
}
.pkg {
  padding: 48px 36px;
  border-right: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg:last-child { border-right: none; }
.pkg--featured { background: var(--primary); color: var(--white); }
.pkg--featured .pkg__name { color: var(--secondary-lt); }
.pkg--featured .pkg__price { color: var(--white); }
.pkg--featured ul li { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.pkg--featured .pkg__tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
}
.pkg__name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary-dk); margin-bottom: 16px; font-weight: 600; }
.pkg__price { font-family: var(--ff-display); font-size: 48px; color: var(--primary); line-height: 1; }
.pkg__price .from { font-family: var(--ff-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-60); display: block; margin-bottom: 6px; }
.pkg__desc { margin-top: 16px; color: var(--ink-60); font-size: 14px; min-height: 50px; }
.pkg--featured .pkg__desc { color: rgba(255,255,255,0.7); }
.pkg ul { list-style: none; margin: 24px 0; flex: 1; }
.pkg ul li {
  padding: 12px 0;
  border-top: 1px solid var(--divider);
  font-size: 14px;
  display: flex;
  gap: 12px;
}
.pkg ul li::before {
  content: "—";
  color: var(--secondary-dk);
}

/* Process timeline */
.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.process__step {
  padding: 36px 14px;
  border-right: 1px solid var(--divider);
  position: relative;
}
.process__step:nth-child(5n) { border-right: none; }
.process__step:last-child { border-right: none; }
.process__step .num {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--secondary);
  line-height: 1;
}
.process__step h4 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  margin: 14px 0 8px;
  color: var(--primary);
  white-space: nowrap;
}
.process__step p { color: var(--ink-60); font-size: 13px; }

/* Proposal cards */
.proposal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}
.proposal-card {
  padding: 36px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--top-h) + 24px);
}
.proposal-card__num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--secondary-dk);
  letter-spacing: 0.15em;
  margin-top: 14px;
}
.proposal-card__title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 3.2vw, 52px);
  line-height: 1.06;
  font-weight: 400;
  color: var(--primary);
  margin-top: 6px;
}
.proposal-card__meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  border-top: 1px solid var(--divider);
  padding-top: 14px;
}
.proposal-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.proposal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proposal-card p {
  margin-top: 12px;
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.65;
}
.proposal-card p strong {
  color: var(--ink);
}
.proposal-card ul {
  margin-top: 10px;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--ink-60);
  font-size: 15px;
}
.proposal-card .btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* ----- Guide page ----- */
.guide-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--divider);
}
.guide-list { padding: 48px; border-right: 1px solid var(--divider); }
.guide-list__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--divider);
  cursor: pointer;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: padding 0.3s var(--ease), color 0.3s var(--ease);
}
.guide-list__item:last-child { border-bottom: none; }
.guide-list__item:hover { padding-left: 12px; color: var(--secondary-dk); }
.guide-list__item.active { color: var(--secondary-dk); }
.guide-list__item .num { font-family: var(--ff-display); font-size: 13px; color: var(--secondary-dk); }
.guide-list__item h4 { font-family: var(--ff-display); font-size: 22px; font-weight: 400; }
.guide-list__item .region {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.guide-detail {
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.guide-detail__img {
  aspect-ratio: 4/3;
  background: var(--divider);
  margin-bottom: 24px;
  overflow: hidden;
}
.guide-detail__img img { width: 100%; height: 100%; object-fit: cover; }
.guide-detail h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--primary);
}
.guide-detail p { color: var(--ink-60); line-height: 1.7; }
.guide-detail__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}
.guide-detail__meta div .lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 4px; }
.guide-detail__meta div .val { font-family: var(--ff-display); font-size: 16px; color: var(--primary); }

/* ----- Blog page ----- */
.blog-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 80px 0;
  align-items: end;
}
.blog-hero__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-hero__img img { width: 100%; height: 100%; object-fit: cover; }

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}
.blog-card {
  background: var(--paper);
  padding: 36px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { background: var(--sand); }
.blog-card__img {
  aspect-ratio: 4/3;
  margin-bottom: 28px;
  overflow: hidden;
}
.blog-card__img img, .blog-card__img .imgph { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary-dk); font-weight: 600; }
.blog-card h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 400; line-height: 1.15; margin: 14px 0 10px; color: var(--primary); }
.blog-card p { color: var(--ink-60); font-size: 14px; margin-bottom: 20px; }
.blog-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--divider); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-60); }

/* ----- Contact / Form ----- */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  padding: 80px 0 120px;
  align-items: start;
}
.form-side h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 16px 0 24px;
  font-weight: 400;
}
.form-side p { color: var(--ink-60); max-width: 420px; line-height: 1.7; margin-bottom: 40px; }
.form-side__block {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
}
.form-side__block:last-of-type { border-bottom: 1px solid var(--divider); }
.form-side__block .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary-dk); font-weight: 600; margin-bottom: 6px; }
.form-side__block .val { font-family: var(--ff-display); font-size: 20px; color: var(--primary); }

/* Multi-step */
.stepper {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
}
.stepper__bar {
  flex: 1;
  height: 2px;
  background: var(--divider);
  position: relative;
  overflow: hidden;
}
.stepper__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.stepper__bar.is-done::after { transform: scaleX(1); }
.stepper__bar.is-current::after { transform: scaleX(0.5); }

.form-panel {
  background: var(--paper);
  border: 1px solid var(--divider);
  padding: 48px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}
.form-panel__head { margin-bottom: 32px; }
.form-panel__head .step { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary-dk); font-weight: 600; }
.form-panel__head h3 { font-family: var(--ff-display); font-size: 32px; font-weight: 400; margin-top: 8px; color: var(--primary); }
.form-panel__head p { color: var(--ink-60); margin-top: 8px; font-size: 14px; }

.field { margin-bottom: 28px; position: relative; }
.field__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--divider);
  background: transparent;
  padding: 14px 0;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--primary); }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.opt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  margin-bottom: 28px;
}
.opt {
  background: var(--paper);
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: left;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
  border: none;
}
.opt:hover { background: var(--sand); }
.opt.is-selected { background: var(--primary); color: var(--white); }
.opt.is-selected .opt__meta { color: rgba(255,255,255,0.6); }
.opt__num { font-family: var(--ff-display); font-size: 13px; color: var(--secondary-dk); }
.opt.is-selected .opt__num { color: var(--secondary-lt); }
.opt__name { font-family: var(--ff-display); font-size: 20px; margin-top: auto; }
.opt__meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-60); }

.form-panel__foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}

.form-confirm {
  text-align: center;
  padding: 80px 0;
}
.form-confirm__mark {
  width: 64px; height: 64px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--secondary-dk);
  font-family: var(--ff-display);
  font-size: 28px;
}
.form-confirm h3 { font-family: var(--ff-display); font-size: 44px; font-weight: 400; color: var(--primary); margin-bottom: 20px; }
.form-confirm p { color: var(--ink-60); max-width: 420px; margin: 0 auto; }

/* ----- Tweaks ----- */
.tweak-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tweak-swatch {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s;
}
.tweak-swatch:hover { transform: scale(1.1); }
.tweak-swatch.active { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ----- Utility ----- */
.hidden { display: none !important; }
.flex-gap { display: flex; gap: 16px; align-items: center; }
.tabular { font-variant-numeric: tabular-nums; }

/* Smooth page transitions */
.page {
  animation: page-in 0.6s var(--ease);
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Scrollbar */
::selection { background: var(--primary); color: var(--white); }

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .intro__grid, .about__grid, .form-wrap, .pagehead__grid, .trust__grid, .blog-hero, .feature-split, .cta__inner, .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .feature-split__body { padding: 48px 28px; }
  .services__head { grid-template-columns: 1fr; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card--lg, .svc-card--md, .svc-card--sm { grid-column: span 1; }
  .packages { grid-template-columns: 1fr; }
  .pkg { border-right: none; border-bottom: 1px solid var(--divider); }
  .process { grid-template-columns: 1fr 1fr; }
  .process__step { border-bottom: 1px solid var(--divider); }
  .process__step:nth-child(2n) { border-right: none; }
  .proposal-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: 1fr; }
  .guide-map { grid-template-columns: 1fr; }
  .trust__header { position: static; }
  .hero__chrome { display: none; }
}


/* ===================================================== */
/* Responsive — small phones / narrow tablets (<= 640px) */
/* Added in mobile audit pass — see CURSOR_CONTEXT.md    */
/* ===================================================== */
@media (max-width: 640px) {
  html {
    overflow-x: clip;
  }
  @supports not (overflow: clip) {
    html { overflow-x: hidden; }
  }

  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  main .page {
    max-width: 100%;
    min-width: 0;
  }

  /* Peace-of-mind bar: hide secondary items on phones */
  .pom-bar {
    font-size: 10px;
    letter-spacing: 0.12em;
    height: auto;
    min-height: var(--pom-h);
    padding: 6px 0;
  }
  .pom-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
    gap: 10px 14px;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .pom-bar__inner > *:nth-child(n+4) { display: none; }

  /* Nav */
  .nav__inner { padding: 0 16px; gap: 8px; }
  .nav__wordmark { font-size: 14px; letter-spacing: 0.22em; }
  .nav__links { gap: 12px; }
  .nav__links a { font-size: 10px; letter-spacing: 0.1em; padding: 6px 0; }

  /* Buttons */
  .btn { padding: 14px 20px; font-size: 11px; letter-spacing: 0.16em; }

  /* Hero (homepage) */
  .hero__title { font-size: clamp(34px, 11vw, 56px); line-height: 1.02; }
  .hero__body { padding: 0 20px 48px; }
  .hero__row { margin-top: 28px; gap: 20px; flex-direction: column; align-items: flex-start; }
  .hero__sub { font-size: 14px; max-width: none; }
  .hero__cta { width: 100%; gap: 10px; flex-wrap: wrap; }
  .hero__cta .btn { flex: 1 1 auto; min-width: 0; }

  /* Intro (homepage) */
  .intro { padding: 56px 0; }
  .intro__grid { gap: 28px; }
  .intro__right p { font-size: 20px; line-height: 1.35; }
  .intro__right p + p { font-size: 14px; }

  /* Services / svc-grid */
  .services { padding: 56px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 360px; padding: 32px 24px 24px; }
  .services__head { margin-bottom: 32px; gap: 14px; }
  .services__head h2 { font-size: clamp(28px, 8vw, 40px); }

  /* Trust (homepage) */
  .trust { padding: 56px 0; }
  .trust__grid { gap: 28px; }
  .trust__items { grid-column: 1 / -1; }
  .trust__item { grid-template-columns: 44px 1fr; gap: 14px; padding: 24px 0; }
  .trust__item h3 { font-size: 18px; }
  .trust__num { padding-top: 4px; }

  /* About (homepage) */
  .about { padding: 56px 0; }
  .about__grid { gap: 32px; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 16px 12px; padding-top: 24px; }
  .about__stat .num { font-size: 28px; }
  .about__stat .lbl { font-size: 10px; letter-spacing: 0.15em; }

  /* Closing CTA */
  .cta { padding: 56px 0; }
  .cta h2 { font-size: clamp(34px, 9vw, 48px); }

  /* Feature-split (homepage micro band + shared) */
  .feature-split__body { padding: 36px 20px; }
  .feature-split__body h2 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 16px; }
  .feature-split__list { margin-top: 24px; }
  .feature-split__list li {
    grid-template-columns: 28px 1fr;
    grid-template-areas:
      "num name"
      ".   val";
    row-gap: 4px;
    column-gap: 12px;
    padding: 14px 0;
    align-items: start;
  }
  .feature-split__list .num { grid-area: num; padding-top: 2px; }
  .feature-split__list .name { grid-area: name; font-size: 17px; line-height: 1.3; }
  .feature-split__list .val { grid-area: val; }

  /* Homepage "Beyond the Proposal" band: override inline padding */
  .section--micro { padding: 56px 0 !important; }

  /* Process steps */
  .process { grid-template-columns: 1fr; }
  .process__step { padding: 28px 24px; }
  .process__step:nth-child(2n) { border-right: none; }

  /* Package cards */
  .packages { grid-template-columns: 1fr; }
  .pkg { padding: 32px 24px; border-right: none; border-bottom: 1px solid var(--divider); }
  .pkg:last-child { border-bottom: none; }
  .pkg__price { font-size: 36px; }

  /* Pagehead (nested pages) */
  .pagehead { padding-top: calc(var(--top-h) + 48px); padding-bottom: 40px; }
  .pagehead h1,
  .pagehead__title { font-size: clamp(34px, 9vw, 56px); }
  .pagehead h1 { overflow-wrap: break-word; }
  .pagehead__lede { font-size: 16px; max-width: 100%; }

  /* Inquiry modal (full-screen on phones) */
  .modal-scrim { padding: 0; }
  .modal { max-height: 100vh; max-width: 100%; height: 100vh; width: 100%; }
  .modal__inner { grid-template-columns: 1fr; height: 100%; }
  .modal__side { padding: 24px 20px 16px; border-right: none; border-bottom: 1px solid var(--divider); }
  .modal__side h2 { font-size: 22px; }
  .modal__form { padding: 0; }
  .modal__form .form-panel { min-height: 0; padding: 20px 18px; }
  .modal__close { top: 8px; right: 8px; }

  /* Inquiry options */
  .opt-grid { grid-template-columns: 1fr; gap: 10px; }
  .opt { padding: 14px 16px; }

  /* Footer */
  .footer { padding-top: 48px; padding-bottom: 24px; }
  .footer__wm { font-size: 26px; letter-spacing: 0.18em; }
  .footer__top { gap: 32px; }
  .footer__bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  /* Inquiry form rows */
  .field__row { grid-template-columns: 1fr; }

  /* Floating CTA */
  .float-cta { right: 16px; bottom: 16px; padding: 14px 18px; font-size: 10px; letter-spacing: 0.16em; }

  /* Article pages */
  .article-header,
  .article-content { padding: 0 20px; }
  .article-wrap { padding-top: calc(var(--top-h) + 36px); padding-bottom: 56px; }
  .article-content p { font-size: 16px; line-height: 1.75; }
  .article-content table { font-size: 13px; display: block; overflow-x: auto; }
  .article-content th,
  .article-content td { padding: 8px 10px; }

  /* Crete-guide map: detail above list on mobile */
  .guide-detail { order: -1; }
}
