:root {
  --bg: #f4f1ea;
  --panel: #ffffff;
  --ink: #151515;
  --muted: #66635d;
  --brand: #111111;
  --accent: #ff6a13;
  --accent-soft: #ffe0c7;
  --line: #ded8cd;
  --shadow: 0 24px 70px rgba(0,0,0,.10);
  --shadow-sm: 0 10px 28px rgba(0,0,0,.04);
  --radius: 24px;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(244,241,234,.82);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.nav-links { display: flex; gap: 22px; align-items: center; font-weight: 600; color: var(--muted); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { color: var(--ink) !important; border: 1px solid var(--ink); border-radius: 999px; padding: 10px 16px; }
.nav-cta:hover { background: var(--ink); color: white !important; }

/* Hero */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 82px 20px 48px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; color: var(--muted); margin: 0 0 14px; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); line-height: .9; letter-spacing: -.07em; margin: 0 0 24px; max-width: 800px; }
h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.05em; margin: 0 0 16px; }
h3 { margin: 0 0 12px; font-size: 1.25rem; }
.lead { font-size: 1.22rem; line-height: 1.6; color: var(--muted); max-width: 660px; margin: 0 0 28px; }
.lead-small { color: var(--muted); line-height: 1.6; max-width: 360px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.centered { justify-content: center; }
.btn { border-radius: 999px; padding: 15px 22px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; transition: transform .15s ease, background .15s ease; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: white; border: 0; }
.btn-primary.accent { background: var(--accent); color: var(--ink); }
.btn-secondary { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-secondary.light { border-color: rgba(255,255,255,.5); color: white; }
.btn-secondary.light:hover { background: rgba(255,255,255,.1); }
.microcopy { color: var(--muted); font-size: .95rem; margin-top: 14px; }
.hero-card {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  padding: 32px;
  min-height: 430px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: var(--accent);
  top: -70px;
  right: -80px;
}
.status-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); margin-bottom: 26px; position: relative; z-index: 1; box-shadow: 0 0 0 4px rgba(255,106,19,.18); }
.hero-card h2 { font-size: 2.2rem; position: relative; z-index: 1; }
.hero-card ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; color: #ddd; position: relative; z-index: 1; }
.hero-card li:before { content: "✓"; color: var(--accent); font-weight: 900; margin-right: 10px; }

/* Trust strip */
.trust-strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-strip div { background: rgba(255,255,255,.68); border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); margin-top: 5px; }

/* Sections */
.section, .split-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px;
}
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.08rem; line-height: 1.6; }

/* Cards */
.cards, .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card, .price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card p, .price-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }

/* Steps */
.split-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: start;
}
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { display: flex; gap: 18px; background: var(--panel); border: 1px solid var(--line); padding: 20px; border-radius: 22px; }
.steps span { flex: 0 0 42px; height: 42px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-weight: 900; }
.steps p { color: var(--muted); margin: 6px 0 0; line-height: 1.5; }

/* Gallery — real photos */
.gallery-section { padding-top: 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.gallery-item { margin: 0; }
.gallery-item figcaption { margin-top: 12px; font-size: .95rem; color: var(--muted); font-weight: 600; }
.photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(160deg, #ece6d8, #d9d2c1);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover .photo-frame img { transform: scale(1.04); }
/* Fallback shown only if the image fails to load */
.photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.photo-frame.img-failed img { display: none; }
.photo-frame.img-failed .photo-fallback { display: grid; }

/* Pricing */
.price { font-size: 2rem; font-weight: 900; letter-spacing: -.04em; color: var(--ink) !important; margin-bottom: 12px !important; }
.featured { background: var(--ink); color: white; transform: translateY(-10px); }
.featured h3 { color: white; }
.featured p { color: #d7d7d7; }
.featured .price { color: var(--accent) !important; }
.badge { display: inline-flex; background: var(--accent); color: var(--ink); border-radius: 999px; padding: 7px 10px; font-size: .75rem; font-weight: 900; margin-bottom: 18px; }

/* Testimonials */
.testimonials { padding-top: 24px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 0 0 18px;
  color: var(--ink);
}
.testimonial footer { color: var(--muted); font-size: .92rem; }
.testimonial footer em { opacity: .7; }

/* CTA panel */
.cta-panel {
  max-width: 1080px;
  margin: 40px auto;
  padding: 58px 28px;
  background: var(--ink);
  color: white;
  text-align: center;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}
.cta-panel:before, .cta-panel:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .12;
}
.cta-panel:before { top: -100px; left: -80px; }
.cta-panel:after { bottom: -120px; right: -60px; }
.cta-panel h2, .cta-panel p, .cta-panel .hero-actions { position: relative; z-index: 1; }
.cta-panel p { color: #d7d7d7; font-size: 1.12rem; margin: 0 auto 26px; max-width: 620px; line-height: 1.6; }

/* Contact form */
.contact-section { padding-top: 24px; }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-grid > div p { color: var(--muted); line-height: 1.6; }
.contact-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; color: var(--muted); }
.contact-list a { color: var(--ink); font-weight: 700; }
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit;
  font-weight: 400;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fafaf7;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--ink);
  background: white;
}
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; margin-top: 4px; }
.form-note { color: var(--muted); font-size: .85rem; margin: 4px 0 0; }
/* Honeypot (hidden from real users) */
.hp { position: absolute; left: -5000px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 840px; }
details { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 20px; transition: box-shadow .15s ease; }
details[open] { box-shadow: var(--shadow-sm); }
summary { cursor: pointer; font-weight: 800; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-weight: 400; font-size: 1.4rem; transition: transform .15s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); line-height: 1.6; margin: 12px 0 0; }

/* Footer */
.footer { padding: 42px 20px 120px; text-align: center; color: var(--muted); }
.footer p { margin: 6px 0; }
.footer a { font-weight: 800; color: var(--ink); }
.footer-fine { font-size: .85rem; opacity: .75; margin-top: 14px !important; }

/* Chat */
.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: var(--ink);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 900;
  transition: transform .15s ease;
}
.chat-toggle:hover { transform: translateY(-2px); }
.chatbot {
  position: fixed;
  right: 22px;
  bottom: 86px;
  width: min(360px, calc(100vw - 36px));
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 70;
  display: none;
}
.chatbot.open { display: block; }
.chat-header { background: var(--ink); color: white; padding: 16px; display: flex; justify-content: space-between; align-items: center; }
.chat-header span { display: block; color: #ccc; font-size: .85rem; margin-top: 3px; }
.chat-header button { background: transparent; color: white; border: 0; font-size: 1.8rem; cursor: pointer; line-height: 1; }
.chat-body { height: 320px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.bot-message, .user-message { padding: 11px 13px; border-radius: 16px; line-height: 1.45; font-size: .94rem; max-width: 88%; }
.bot-message { background: #f1f1ee; align-self: flex-start; border-bottom-left-radius: 4px; }
.user-message { background: var(--ink); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 6px; align-self: flex-start; margin-top: 2px; }
.quick-replies button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  transition: background .15s ease, border-color .15s ease;
  font-family: inherit;
}
.quick-replies button:hover { background: var(--accent-soft); border-color: var(--ink); }
.chat-form { display: flex; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; border: 0; padding: 14px; font: inherit; outline: none; background: white; }
.chat-form button { border: 0; background: var(--accent); font-weight: 900; padding: 0 16px; cursor: pointer; font: inherit; font-weight: 900; }

/* Thanks page */
.thanks-page {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}
.thanks-card {
  max-width: 520px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 36px;
  box-shadow: var(--shadow);
}
.thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero, .split-section { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-card { min-height: 330px; }
  .trust-strip, .cards, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
  .featured { transform: none; }
  h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .testimonial p { font-size: 1.25rem; }
}

/* Honeypot — visually and physically hidden from real users (bots fill it) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* hCaptcha widget shown inside the chat before sending */
.captcha-holder {
  display: flex;
  justify-content: center;
  margin: 6px 0 10px;
}
