/* ============ Design Tokens ============ */
:root {
  --ink: #17181d;
  --ink-soft: #3a3c44;
  --paper: #faf8f4;
  --paper-alt: #f2efe8;
  --cream: #fffdf9;
  --gold: #e2690f;
  --gold-light: #f7a83c;
  --gold-dark: #b84f0a;
  --line: rgba(23, 24, 29, 0.1);
  --shadow: 0 20px 60px -20px rgba(23, 24, 29, 0.25);

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

em { font-style: italic; color: var(--gold-dark); }

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(184, 79, 10, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(23, 24, 29, 0.03);
}

.btn-lg { padding: 17px 34px; font-size: 1rem; }

.btn-header { display: none; }
@media (min-width: 1000px) {
  .btn-header { display: inline-flex; }
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.logo-text small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-desktop {
  display: none;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-desktop a:hover::after { width: 100%; }

@media (min-width: 1000px) {
  .nav-desktop { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 32px 24px;
  border-top: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 14px; width: 100%; }

@media (min-width: 1000px) {
  .nav-mobile { display: none !important; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 120px 0 90px;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(226, 105, 15, 0.16), transparent 60%),
    var(--paper);
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 38px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 520px;
}
.hero-trust .dot { color: var(--gold); font-family: var(--font-sans); }

/* ============ Section Shell ============ */
.section { padding: 100px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin: 14px 0 18px;
  line-height: 1.2;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============ Problem ============ */
.problem { background: var(--paper); }

.pain-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-icon {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  width: 34px; height: 34px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 18px;
}
.pain-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pain-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============ Approach ============ */
.approach { background: var(--ink); color: var(--paper); }
.approach .eyebrow { color: var(--gold-light); }
.approach h2 { color: var(--cream); }
.approach .section-sub { color: rgba(250, 248, 244, 0.68); }

.approach-steps {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.approach-step {
  display: flex;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}
.approach-step:last-child { border-bottom: none; }
.approach-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}
.approach-step h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.approach-step p {
  color: rgba(250, 248, 244, 0.68);
  font-size: 0.98rem;
}

/* ============ Services ============ */
.services { background: var(--paper-alt); }

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.service-card::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ============ Projects ============ */
.projects { background: var(--paper); }

.projects-grid { align-items: stretch; }

.project-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.project-thumb {
  background: #fff;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-body { padding: 26px 28px 30px; }
.project-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.project-body p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.project-card-placeholder {
  border-style: dashed;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.project-placeholder-inner {
  text-align: center;
  color: var(--ink-soft);
  padding: 40px;
}
.project-placeholder-inner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.project-placeholder-inner p { font-size: 0.92rem; }

/* ============ Testimonials ============ */
.testimonials { background: var(--paper-alt); }

.placeholder-note {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-dark);
  max-width: 520px;
  margin: 0 auto;
}

.testimonial-grid {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.testimonial-stars span {
  color: var(--ink-soft);
  letter-spacing: normal;
  font-size: 0.85rem;
  margin-left: 4px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.testimonial-quote-pending {
  color: var(--ink-soft);
  font-style: italic;
}
.testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--gold-dark);
}
.testimonial-source {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ============ About / Founder ============ */
.about { background: var(--ink); color: var(--cream); }
.about-inner {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .about-inner { grid-template-columns: 300px 1fr; }
}
.about-photo {
  display: flex;
  justify-content: center;
}
.about-photo img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.about .eyebrow { color: var(--gold-light); }
.about-content h2 {
  color: var(--cream);
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  margin: 14px 0 18px;
}
.about-content .section-sub {
  color: rgba(250, 248, 244, 0.72);
  margin-bottom: 16px;
}

/* ============ Results ============ */
.results { background: var(--paper); }
.results-inner { max-width: 900px; }
.results-grid { margin-top: 10px; }

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
}
.check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.result-item p {
  font-size: 1.02rem;
  padding-top: 4px;
}

/* ============ FAQ ============ */
.faq { background: var(--paper-alt); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 26px;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: -2px;
  font-size: 1.3rem;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 0.97rem;
}

/* ============ Contact / Final CTA ============ */
.contact {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.contact-inner { max-width: 680px; }
.contact .eyebrow { color: var(--gold-light); }
.contact h2 { color: var(--cream); margin: 14px 0 18px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.contact .section-sub { color: rgba(250, 248, 244, 0.7); margin-bottom: 36px; }
.booking-embed {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-iframe {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
}
@media (max-width: 640px) {
  .booking-iframe { height: 900px; }
}

.contact-alt {
  margin-top: 28px;
  font-size: 0.92rem;
  color: rgba(250, 248, 244, 0.6);
}
.contact-alt a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.9rem;
}
.footer-brand .logo-mark {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: var(--cream);
  border-radius: 6px;
  box-sizing: border-box;
}
.footer-copy {
  color: rgba(250, 248, 244, 0.5);
  font-size: 0.82rem;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

/* ============ Reveal Animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
