:root {
  --gold: #B8892B;
  --coral: #E8927C;
  --blush: #F4D4CE;
  --sage: #8A9A7E;
  --sage-text: #5F7052;
  --burgundy: #7A2E3B;
  --cream: #FBF3EC;
  --ink: #3A2E2A;
  --white: #FFFFFF;
  --shadow: 0 12px 32px rgba(58, 46, 42, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--burgundy); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(58, 46, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { height: 48px; width: 48px; object-fit: contain; }
.brand-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--ink); }
.brand-name-accent { color: var(--burgundy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

.primary-nav { display: flex; gap: 28px; }
.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover, .primary-nav a.is-active { border-bottom-color: var(--coral); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(58, 46, 42, 0.08);
    padding: 8px 24px 16px;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 0; border-bottom: 1px solid rgba(58, 46, 42, 0.06); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--coral);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { background: var(--burgundy); color: var(--white); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #9c7526; border-color: #9c7526; color: var(--white); }

/* Sections */
.section { padding: 72px 0; }
.section--tint { background: var(--blush); }
.section-divider { display: block; width: 100%; height: 48px; margin: 0 auto; }

/* Cards / grids */
.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card--popular { border: 2px solid var(--gold); }
.price-card__badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.price-card__subtitle { color: var(--sage-text); font-weight: 600; margin-bottom: 12px; }
.price-list { list-style: none; margin: 0 0 12px; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(58, 46, 42, 0.15);
}
.price-card__note { font-size: 0.85rem; color: var(--sage-text); font-style: italic; }
.price-card__desc { font-size: 0.9rem; color: var(--ink); opacity: 0.8; margin: 4px 0 12px; }
.price-line { padding: 12px 0; border-bottom: 1px dashed rgba(58, 46, 42, 0.15); position: relative; }
.price-line--popular { padding-top: 24px; }
.price-line__row { display: flex; justify-content: space-between; font-weight: 700; }
.price-card__addons { margin-top: 16px; }
.price-card__addons h4 { margin: 0 0 6px; font-size: 1rem; }
.price-card__addons ul { margin: 0; padding-left: 20px; }

/* Gallery / lightbox */
.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.gallery-grid a { display: block; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.2s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }

/* Photo carousel — each photo physically moves and resizes into the next
   slot (right shrinks into center, center shrinks into left, left fades
   out; a new photo fades in at the right), driven by JS-set inline
   transform/opacity so the motion is a true slot-to-slot conveyor, not a
   fixed-slot content swap. */
.photo-carousel {
  position: relative;
  height: 320px;
  margin: 20px auto 32px;
  overflow: visible;
}
.photo-carousel__slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-carousel__slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .photo-carousel { height: 210px; }
  .photo-carousel__slide { width: 160px; height: 210px; }
}
@media (max-width: 640px) {
  .photo-carousel__slide--side { width: 70px; height: 100px; }
  .photo-carousel__slide--center { width: 160px; height: 210px; }
}

/* Photo category cards (homepage) */
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--white);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 46, 42, 0) 35%, rgba(58, 46, 42, 0.88) 100%);
}
.category-card__body {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.category-card__body h3 { color: var(--white); margin-bottom: 6px; text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 1px 10px rgba(0,0,0,0.7); }
.category-card__body p { color: var(--white); margin-bottom: 12px; font-size: 0.95rem; text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 1px 8px rgba(0,0,0,0.7); }
.category-card__body .btn--outline { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.08); }
.category-card__body .btn--outline:hover { background: var(--white); color: var(--ink); }
.category-card:hover .category-card__body { text-decoration: none; }

/* Instagram profile preview card */
.insta-preview {
  display: block;
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.insta-preview:hover { transform: translateY(-2px); }
.insta-preview__header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; text-align: left; }
.insta-preview__avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: contain; background: var(--cream); border: 2px solid var(--gold); padding: 3px; flex-shrink: 0; }
.insta-preview__handle { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.insta-preview__stats { display: flex; gap: 12px; font-size: 0.82rem; color: var(--sage-text); margin-top: 2px; flex-wrap: wrap; }
.insta-preview__stats strong { color: var(--ink); }
.insta-preview__bio { font-size: 0.88rem; margin-bottom: 16px; text-align: left; color: var(--ink); }
.insta-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; }
.insta-preview__grid img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

.social-preview-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 900px; margin: 0 auto; align-items: start; }
.social-preview-grid .insta-preview { max-width: none; margin: 0; }
.insta-preview--google { position: relative; border: 2px solid var(--gold); background: linear-gradient(160deg, #FFFBF2, var(--white)); overflow: visible; }
.insta-preview--google::before {
  content: "★ 5.0 Stars So Far!";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* Google review call-to-action section */
.reviewcta { background: var(--blush); text-align: center; }
.reviewcta__inner { max-width: 640px; }
.reviewcta__stars { display: block; font-size: 30px; letter-spacing: 6px; margin-bottom: 18px; color: #fbbc04; }
.reviewcta h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
.reviewcta h2 em { font-style: italic; color: var(--burgundy); }
.reviewcta__sub { margin: 16px auto 30px; color: var(--sage-text); font-size: 1.05rem; max-width: 480px; }
.reviewcta__btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: 0 8px 22px rgba(184, 137, 43, 0.4);
}
.reviewcta__btn:hover {
  background: #9c7526;
  border-color: #9c7526;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(184, 137, 43, 0.5);
}
@media (max-width: 760px) {
  .social-preview-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* Before & after (About page) */
.before-after { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; max-width: 720px; margin: 0 auto; }
.before-after__item { text-align: center; }
.before-after__item img { width: 100%; height: 320px; object-fit: cover; object-position: top; border-radius: var(--radius); box-shadow: var(--shadow); }
.before-after__label { display: inline-block; margin-top: 12px; font-family: var(--font-heading); font-weight: 700; color: var(--burgundy); }
@media (max-width: 640px) {
  .before-after { grid-template-columns: 1fr; }
  .before-after__item img { height: 260px; }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 46, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-image { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Forms */
.form-field { margin-bottom: 20px; }
.form-field label, fieldset.form-field legend { display: block; font-weight: 700; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 46, 42, 0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}
.checkbox-field { display: flex; align-items: center; gap: 8px; font-weight: 400; margin-bottom: 8px; }
.checkbox-field input { width: auto; }
.hp-field { position: absolute; left: -9999px; }

.estimate-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.estimate-disclaimer { font-size: 0.85rem; color: var(--sage-text); }
.estimate-total { font-family: var(--font-heading); font-size: 1.6rem; color: var(--burgundy); margin-top: 16px; }

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.faq-item summary { cursor: pointer; font-weight: 700; padding: 16px 0; }
.faq-item p { padding-bottom: 16px; }

/* Testimonial */
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.testimonial q { font-family: var(--font-heading); font-size: 1.2rem; }
.testimonial cite { display: block; margin-top: 12px; color: var(--sage-text); font-style: normal; font-weight: 700; }

/* Footer */
.site-footer { background: var(--ink); color: var(--cream); padding: 48px 0 20px; }
.footer-inner { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-logo { height: 40px; width: 40px; object-fit: contain; margin-bottom: 8px; }
.site-footer a { color: var(--cream); }
.footer-social { display: flex; gap: 14px; align-items: flex-start; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(251, 243, 236, 0.1); }
.footer-social svg { width: 20px; height: 20px; fill: var(--cream); }
.footer-copy { text-align: center; font-size: 0.85rem; opacity: 0.7; margin-top: 32px; }

/* Reveal animation */
.reveal { transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.reveal-pending { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
}

/* Hero */
.hero { padding: 56px 0 72px; }
.hero-inner { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center; }
.hero img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-kicker { font-family: var(--font-heading); font-style: italic; color: var(--burgundy); font-size: 1.2rem; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* Stats strip */
.stats-strip { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; text-align: center; }
.stats-strip strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--burgundy); }

/* Pricing tabs */
.tabs { margin-top: 32px; }
.tabs__list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.tabs__button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.tabs__button:hover { background: rgba(122, 46, 59, 0.08); }
.tabs__button.is-active { background: var(--burgundy); color: var(--white); }
.tabs__panel[hidden] { display: none; }
.products-addons { margin-top: 40px; }

/* Get a Quote layout */
.quote-layout { display: grid; gap: 40px; grid-template-columns: 1.6fr 1fr; align-items: start; margin-top: 32px; }
.quote-layout__contact { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: sticky; top: 100px; }
.quote-layout__contact h3 { margin-bottom: 12px; }
.quote-layout__contact p { margin-bottom: 10px; }
@media (max-width: 860px) {
  .quote-layout { grid-template-columns: 1fr; }
  .quote-layout__contact { position: static; }
}

/* Quote form result messages */
.form-success, .form-error {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.form-success h3 { color: var(--burgundy); }
.form-error { border: 2px solid var(--burgundy); color: var(--burgundy); }

/* Offset anchor targets so the sticky header doesn't cover them */
[id]:not(#top) { scroll-margin-top: 88px; }
#top { scroll-margin-top: 0; }
