/* ==========================================================================
   Print It | Notary Public — printitsfv.com
   Visual match to the live GHL site. Every value below was measured from
   the live DOM via getComputedStyle (2026-08-07), not eyeballed.
   ========================================================================== */

:root {
  /* Palette — exact values from the live site */
  --slate:        #263032;   /* rgb(38,48,50)   dark bands, body text */
  --cream:        #F4F1EA;   /* rgb(244,241,234) section bg, light text */
  --sand:         #F3EEE5;   /* rgb(243,238,229) footer bg */
  --gold:         #C9B38C;   /* rgb(201,179,140) alternating card + button border */
  --blush:        #EDBBBE;   /* rgb(237,187,190) alternating card + buttons */
  --white:        #FFFFFF;
  --grey-blue:    #607179;

  /* Type — live site uses Ubuntu throughout, Arial on buttons */
  --font-head: 'Ubuntu', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Ubuntu', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-btn:  Arial, Helvetica, sans-serif;

  /* Layout — live container is 1170px inside a 1425px viewport */
  --max-w:   1170px;
  --gutter:  clamp(1rem, 4vw, 1.5rem);
  --radius-pill: 50px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* The header is sticky at ~77px, so anchor targets would otherwise land underneath
   it. Applies to every in-page link: nav, footer and the hero CTAs. */
:target, [id] { scroll-margin-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;              /* live: 20.8px on 16px */
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; }
h1 { font-size: 50px; font-weight: 500; line-height: 1.0; }   /* live: 50px/50px/500 */
h2 { font-size: 35px; font-weight: 700; line-height: 1.3; }   /* live: 35px/45.5px/700 */
h3 { font-size: 20px; font-weight: 500; line-height: 1.3; }   /* live: 20px/26px/500 */
h4 { font-size: 22px; font-weight: 500; }
p  { margin: 0 0 1rem; }

@media (max-width: 700px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
}

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--slate); color: var(--cream); padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Buttons — live: pill, blush bg, slate text, Arial 16/400 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-btn); font-size: 16px; font-weight: 400; line-height: 1.2;
  padding: 15px 20px; border-radius: var(--radius-pill);
  background: var(--blush); color: var(--slate);
  border: 0; text-decoration: none; cursor: pointer;
  transition: filter .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { filter: brightness(.94); transform: translateY(-1px); }

/* Secondary variant carries the gold border seen on the lower CTAs */
.btn--bordered { border: 2px solid var(--gold); padding: 10px 20px; }

/* ---------- Header — live: cream bar, slate uppercase links ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(38, 48, 50, .10);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 100px;
}
.logo img { height: 72px; width: auto; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .5rem; color: var(--slate);
}
.nav-toggle svg { width: 26px; height: 26px; }

.main-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  color: var(--slate); text-decoration: none;
  font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem 0; transition: color .2s var(--ease);
}
.main-nav a:hover { color: var(--grey-blue); }

/* Language switch — live site places it bottom-left of the hero as a pill */
.lang-switch { display: flex; align-items: center; gap: .35rem; font-size: .8rem; }
.lang-switch a {
  color: var(--slate); text-decoration: none; font-weight: 500;
  padding: .25rem .5rem; border-radius: 4px; opacity: .55;
  transition: opacity .2s var(--ease);
}
.lang-switch a:hover { opacity: 1; }
.lang-switch a[aria-current="true"] { opacity: 1; font-weight: 700; }
.lang-switch span { color: rgba(38, 48, 50, .35); }

/* ---------- Hero — live: full-bleed photo, dark overlay, centred cream text ---------- */
.hero {
  position: relative;
  min-height: 568px;                    /* live measurement */
  display: flex; align-items: center;
  background: var(--slate) center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding-block: 3rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(38, 48, 50, .55);
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: var(--cream); margin-bottom: 1.25rem; }
.hero__lede {
  max-width: 34rem; margin: 0 auto 2rem;
  font-size: 16px; line-height: 1.3; color: var(--cream);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
/* Hours under the hero CTAs — walk-in visitors ask this first */
.hero__hours {
  margin: 1.5rem auto 0; max-width: 34rem;
  font-size: 15px; line-height: 1.45; color: var(--cream);
}

/* ---------- Full-bleed photo bands ---------- */
.photo-band {
  position: relative;
  min-height: 340px;
  display: flex; align-items: center;
  background: var(--slate) center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding-block: 3rem;
}
.photo-band::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(38, 48, 50, .58);
}
.photo-band > .container { position: relative; z-index: 1; }
.photo-band h2 { color: var(--white); }
.photo-band p { color: var(--white); max-width: 46rem; margin: 0 auto 1.75rem; }
.photo-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- Services — live: cream bg, 4-col, alternating blush/gold pills ---------- */
.services { background: var(--cream); padding-block: 3.5rem; }
.services__title {
  text-align: center; color: var(--slate);
  max-width: 40rem; margin: 0 auto 2.5rem;
}
.service-grid {
  display: grid; gap: 1.35rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  border-radius: var(--radius-pill);
  padding: 1.75rem 1.5rem;
  text-align: left;                    /* live: text-align start */
  min-height: 247px;                   /* live measurement */
  transition: transform .25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); }
/* Alternating fills, matching the live checkerboard */
.service-card--blush { background: var(--blush); }
.service-card--gold  { background: var(--gold); }

.service-card img {
  width: 40px; height: 32px;           /* live measurement */
  object-fit: contain; margin-bottom: .9rem;
}
.service-card h3 {
  color: var(--slate); margin-bottom: .5rem;
  font-size: 20px; font-weight: 500;
}
.service-card p {
  color: var(--slate); font-size: 16px; line-height: 1.3; margin: 0;
}

/* ---------- Live Scan (new section, styled to match) ---------- */
.livescan { background: var(--sand); padding-block: 3.5rem; }
.livescan__head { text-align: center; max-width: 52rem; margin: 0 auto 2.5rem; }
.livescan__head h2 { color: var(--slate); }
.livescan__head p { color: var(--slate); }

.livescan__methods {
  display: grid; gap: 1.35rem; margin-bottom: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.method-card {
  border-radius: var(--radius-pill); padding: 1.75rem 1.75rem;
  background: var(--blush); color: var(--slate);
}
.method-card:nth-child(even) { background: var(--gold); }
.method-card h3 { color: var(--slate); }
.method-card p { margin: 0; font-size: 16px; line-height: 1.3; }
/* Cards can carry a second paragraph (the FD-258 card explains who submits
   the card). Space only the follow-on ones, so single-paragraph cards are
   unchanged. */
.method-card p + p { margin-top: .85rem; }

.industry-list {
  display: grid; gap: .6rem; list-style: none; padding: 0; margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.industry-list li {
  display: flex; align-items: center; gap: .55rem;
  background: var(--cream); border-radius: var(--radius-pill);
  padding: .7rem 1.15rem; font-size: 15px; color: var(--slate);
}
.industry-list li::before {
  content: ''; flex: 0 0 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.livescan__sub { text-align: center; margin: 2.5rem auto 0; max-width: 46rem; }

/* ---------- Mobile services (new section, styled to match) ---------- */
.mobile-band { background: var(--cream); padding-block: 3.5rem; }
.mobile-band__head { text-align: center; max-width: 50rem; margin: 0 auto 2.5rem; }
.mobile-band__head h2 { color: var(--slate); }
.mobile-band__head p { color: var(--slate); }
.mobile-band__grid {
  display: grid; gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.mobile-band__item {
  border-radius: var(--radius-pill); padding: 1.6rem 1.5rem;
  background: var(--gold); color: var(--slate);
}
.mobile-band__item:nth-child(even) { background: var(--blush); }
.mobile-band__item h3 { color: var(--slate); font-size: 20px; }
.mobile-band__item p { font-size: 16px; line-height: 1.3; margin: 0; }

/* ---------- Reviews — live: cream bg, centred heading ---------- */
.reviews { background: var(--cream); padding-block: 2.5rem; }
.reviews h2 { text-align: center; color: var(--slate); margin-bottom: 1.75rem; }
.reviews__embed { max-width: var(--max-w); margin-inline: auto; }
.reviews__embed iframe { width: 100%; border: 0; display: block; min-height: 434px; }

/* ---------- Contact — live: calendar LEFT, Get In Touch RIGHT ---------- */
.contact { background: var(--cream); padding-block: 2.5rem; }
.contact__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; } }

.contact__info { text-align: center; }
.contact__info h1, .contact__info h2 { color: var(--slate); margin-bottom: 1.5rem; }

.contact__details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; align-items: center; }
.contact__item { display: flex; gap: .7rem; align-items: center; }
.contact__item svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--slate); }
.contact__item a, .contact__item span { color: var(--slate); text-decoration: none; font-size: 16px; }
.contact__item a:hover { text-decoration: underline; }
/* Hours run to three lines, so the icon aligns to the first line, not the block centre */
.contact__item--hours { align-items: flex-start; }
.contact__item--hours svg { margin-top: 3px; }
.contact__item--hours span { line-height: 1.5; text-align: left; }

/* No overflow:hidden here. These frames are resized to their content by the
   postMessage listener in main.js; if that message never arrives, the frame
   must still be able to scroll rather than clip its own content away. */
.embed-frame { background: transparent; }
.embed-frame iframe { width: 100%; border: 0; display: block; }
.map-frame iframe { min-height: 300px; border-radius: 8px; }
.calendar-frame iframe { min-height: 676px; }
.form-frame iframe { min-height: 720px; }

/* ==========================================================================
   Wedding page — matches the live layout: one continuous cream section,
   Inter type, centred 48px black H1, alternating photo/text rows, packages
   as a ruled list (not cards), Packages left / form right.
   ========================================================================== */
.wedding-page {
  background: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #000;
  padding-block: 2.5rem 3rem;
}
.wedding-page h1, .wedding-page h2, .wedding-page h3 {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #000;
}
.wedding-page__title {
  font-size: 48px; font-weight: 600; line-height: 1.2;
  text-align: center; max-width: 900px; margin: 0 auto 1.25rem;
}
@media (max-width: 700px) { .wedding-page__title { font-size: 32px; } }

/* Above-the-fold CTA. The form is ~4 screens down on a phone, so this is the
   first and often only contact point a visitor sees. */
.wedding-hero-cta { text-align: center; margin: 0 auto 2.5rem; max-width: 780px; }
.wedding-hero-cta__line {
  font-size: 18px; line-height: 1.5; margin-bottom: 1.25rem; color: #000;
}
.wedding-hero-cta__actions {
  display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center;
}
/* .btn--bordered is built for dark photo bands; on this cream page it needs
   dark ink and a dark rule to stay legible. */
.wedding-hero-cta .btn--bordered {
  color: #000; border-color: #000; background: transparent;
}
.wedding-hero-cta .btn--bordered:hover { background: rgba(0, 0, 0, .06); }

/* Alternating photo / text rows */
.bio-row {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1fr; margin-bottom: 2.5rem;
}
@media (min-width: 880px) { .bio-row { grid-template-columns: 1fr 1fr; } }
.bio-row img { width: 100%; border-radius: 4px; }
.bio-row p { font-size: 18px; line-height: 1.5; text-align: center; margin-bottom: 1.25rem; }
/* Second row reverses so the photo sits on the right, as on the live page */
.bio-row--reverse .bio-row__media { order: 2; }
@media (max-width: 879px) { .bio-row--reverse .bio-row__media { order: 0; } }

.bio-closing { font-size: 18px; line-height: 1.5; text-align: center; margin: 0 auto 3rem; max-width: 780px; }

/* Packages — ruled list, matching the live page */
.wedding-cols { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .wedding-cols { grid-template-columns: 1fr 1fr; } }

.packages-title { font-size: 40px; font-weight: 600; text-align: center; margin-bottom: 1.5rem; }
.package-list { border-top: 2px solid #000; }
.package-item { border-bottom: 2px solid #000; padding: 1.25rem 0; text-align: center; }
.package-item h3 {
  font-size: 18px; font-weight: 700; text-decoration: underline;
  margin-bottom: .85rem;
}
.package-item ul { list-style: none; padding: 0; margin: 0 0 .6rem; }
.package-item li { font-size: 16px; line-height: 1.7; }
.package-item li::before { content: '-'; margin-right: .15rem; }
.package-item__price { font-size: 16px; margin: 0; }

.benefit-list { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.benefit-list li {
  display: flex; align-items: center; gap: .55rem; justify-content: center;
  font-size: 16px; line-height: 1.9; color: #000;
}
/* Replaces the ✅ emoji used on the live page (kill-list rule 9: no emoji) */
.benefit-check {
  flex: 0 0 17px; width: 17px; height: 17px; color: #2E7D32;
}

/* Right column: Get In Touch + form */
.wedding-contact { text-align: center; }
.wedding-contact h2 { font-size: 40px; font-weight: 600; margin-bottom: 1.25rem; }
.wedding-contact__details {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem;
}
.wedding-contact__details a, .wedding-contact__details span {
  display: inline-flex; align-items: center; gap: .45rem;
  color: #000; text-decoration: none; font-size: 16px;
}
.wedding-contact__details svg { width: 18px; height: 18px; }
.wedding-contact .embed-frame { background: var(--white); border-radius: 4px; }

/* ---------- Footer — live: sand bg, dark text ---------- */
.site-footer { background: var(--sand); color: var(--slate); padding-block: 2.5rem 0; }
.site-footer h2 { font-size: 17px; color: var(--slate); font-weight: 700; margin-bottom: 1rem; }
.footer__grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.footer__brand img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer__brand strong { display: block; margin-bottom: .5rem; font-size: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.5; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: var(--slate); text-decoration: none; font-size: 14px; }
.site-footer a:hover { text-decoration: underline; }
.footer__address p { font-size: 14px; margin-bottom: .7rem; }
.footer__address strong { display: block; font-weight: 700; }
.footer__bottom {
  margin-top: 2.25rem; padding-block: 1.25rem;
  border-top: 1px solid rgba(38, 48, 50, .15);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 13px; color: rgba(38, 48, 50, .7);
}

/* ---------- Placeholder marker (localhost only) ---------- */
[data-placeholder] { position: relative; outline: 2px dashed var(--gold); outline-offset: 6px; }
[data-placeholder]::after {
  content: 'PLACEHOLDER — needs real copy';
  position: absolute; top: -.6rem; right: 0;
  background: var(--gold); color: var(--slate);
  font-family: var(--font-btn); font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 3px;
}
body.hide-placeholders [data-placeholder] { outline: none; }
body.hide-placeholders [data-placeholder]::after { display: none; }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .site-header .container { min-height: 76px; flex-wrap: wrap; }
  .logo img { height: 54px; }
  .nav-toggle { display: block; order: 3; }
  .lang-switch { order: 2; margin-left: auto; }
  .main-nav { order: 4; flex-basis: 100%; display: none; padding-bottom: 1rem; }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: .2rem; }
  .main-nav a { display: block; padding: .65rem 0; border-bottom: 1px solid rgba(38,48,50,.1); }
  .hero { min-height: 480px; }
}
