/* ---------- Variables ---------- */
:root {
  --ink: #121212;
  --paper: #f5f1e6;
  --white: #ffffff;
  --accent: #cba135;
  --accent-2: #8f6d1f;
  --gold-foil: linear-gradient(135deg, #f4e2a6 0%, #cba135 45%, #8f6d1f 100%);
  --text-light: #4a4a45;
  --hard: 3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1, h2, h3, .brand, .display {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 1.05;
}
.hero-title mark {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

mark {
  background: var(--gold-foil);
  color: var(--ink);
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: var(--hard) solid var(--ink);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-accent {
  background: var(--gold-foil);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}
.btn-accent:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--accent-2);
}
.btn-ink:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--accent-2); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}
.btn-outline:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: 7px 7px 0 var(--accent);
}
.btn-outline-light:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: var(--hard) solid var(--ink);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
}
.brand img { width: 44px; height: 44px; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 3px solid transparent;
  padding-bottom: 4px;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--accent); }
.main-nav .btn { margin-left: 6px; padding: 10px 22px; box-shadow: 5px 5px 0 var(--ink); }
.main-nav .btn:hover { box-shadow: 7px 7px 0 var(--ink); }

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

/* ---------- Eyebrow / stamp label ---------- */
.stamp {
  display: inline-block;
  background: var(--ink);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 90px;
  border-bottom: var(--hard) solid var(--ink);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-inner.center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  margin-bottom: 26px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-inner.center p { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-inner.center .hero-actions { justify-content: center; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 24px 56px;
  border-bottom: var(--hard) solid var(--ink);
}
.page-banner h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 14px; }
.page-banner p { color: var(--accent); max-width: 640px; font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-flip { background: var(--ink); color: var(--paper); }
.section-flip .stamp { background: var(--gold-foil); color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img {
  border: var(--hard) solid var(--ink);
  box-shadow: 14px 14px 0 var(--accent-2);
}
.split.reverse .split-media { order: 2; }
.split.tilt-l img { transform: rotate(-2deg); }
.split.tilt-r img { transform: rotate(2deg); }
.split-copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 20px; }
.split-copy p { color: var(--text-light); margin-bottom: 28px; font-size: 1.05rem; }
.section-flip .split-copy p { color: #d8d3c4; }

.section-heading {
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.section-heading p { color: var(--text-light); font-size: 1.05rem; }
.section-flip .section-heading p { color: #d8d3c4; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: var(--hard) solid var(--ink);
  padding: 10px 20px;
  margin-top: 6px;
  box-shadow: 6px 6px 0 var(--accent-2);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.google-badge:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--accent-2); }
.google-badge img { width: 20px; height: 20px; }
.google-badge .google-stars { color: var(--accent); letter-spacing: 1px; font-size: 0.95rem; }
.google-badge .google-rating { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-grid figure {
  border: var(--hard) solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.gallery-grid img { aspect-ratio: 1 / 1; object-fit: contain; background: var(--ink); }
.gallery-grid figure:nth-child(2n) { transform: rotate(-1.5deg); }
.gallery-grid figure:nth-child(3n) { transform: rotate(1.5deg); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--paper);
  color: var(--ink);
  border: var(--hard) solid var(--ink);
  padding: 32px 26px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testimonial-card p.quote { font-size: 1.02rem; margin-bottom: 18px; }
.testimonial-card .name { font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.04em; }
.testimonial-note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.85rem;
  color: #d8d3c4;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  padding: 80px 24px;
  border-bottom: var(--hard) solid var(--ink);
}
.cta-banner h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 16px; }
.cta-banner p { font-weight: 600; margin-bottom: 32px; }

/* ---------- Pricing cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: var(--hard) solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  padding: 34px 24px 28px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { box-shadow: 9px 9px 0 var(--accent-2); }
.pricing-card .ribbon {
  position: absolute;
  top: 18px; right: -34px;
  background: var(--gold-foil);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 40px;
  transform: rotate(45deg);
}
.pricing-card h3 { font-size: 2.2rem; margin-bottom: 10px; }
.pricing-card .price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-style: italic; font-size: 2.6rem; color: var(--ink); background: var(--gold-foil); display: inline-block; padding: 2px 12px; margin-bottom: 22px; }
.pricing-card .price.tbd { font-size: 1.3rem; text-transform: uppercase; }
.pricing-card ul { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.pricing-card ul li {
  padding: 9px 0 9px 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.92rem;
  border-bottom: 1px solid #e6e0d0;
}
.pricing-card ul li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ---------- FAQ (details/summary accordion) ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: var(--hard) solid var(--ink);
  margin-bottom: 18px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after {
  content: "+";
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--ink);
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.faq-item[open] summary:after { content: "-"; background: var(--accent-2); }
.faq-item .faq-answer { padding: 0 26px 24px; color: var(--text-light); border-top: var(--hard) solid var(--ink); padding-top: 20px; }
.faq-item .faq-answer ul { padding-left: 20px; margin-top: 8px; }

/* ---------- About page ---------- */
.about-story p { margin-bottom: 20px; color: var(--text-light); font-size: 1.05rem; }
.about-story blockquote {
  border-left: var(--hard) solid var(--accent-2);
  padding-left: 22px;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  margin: 30px 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 14px; }
.contact-info p { color: var(--text-light); margin-bottom: 10px; }
.contact-info p a { color: var(--ink); font-weight: 800; border-bottom: 3px solid var(--accent); }
.contact-info .info-block { margin-bottom: 34px; }

form.contact-form { background: var(--white); border: var(--hard) solid var(--ink); box-shadow: 12px 12px 0 var(--ink); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 700; }
.form-status-success { color: #2f7a3d; }
.form-status-error { color: var(--accent-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-grid h4 { color: var(--accent); margin-bottom: 18px; font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span { font-family: 'Montserrat', sans-serif; font-weight: 800; font-style: italic; font-size: 1.3rem; color: var(--paper); }
.footer-bottom {
  border-top: 2px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #9a9488;
}
.footer-bottom a { text-decoration: underline; color: #9a9488; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid, .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 60px; }
  .main-nav { position: fixed; inset: 76px 0 0 0; background: var(--paper); border-top: var(--hard) solid var(--ink); flex-direction: column; padding: 30px 24px; transform: translateY(-110%); transition: transform 0.25s ease; }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; width: 100%; }
  .main-nav .btn { margin-left: 0; }
  .nav-toggle { display: flex; }
  .pricing-grid, .gallery-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .pricing-card .ribbon { top: 14px; right: -40px; }
}
