/* ── MAX PETE ── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:          #1A1917;
  --bg-lt:       #211F1C;
  --bg-hover:    #292622;
  --bg-card:     #232120;
  --text:        #F0EBE3;
  --text-mid:    rgba(240,235,227,0.58);
  --text-lt:     rgba(240,235,227,0.30);
  --border:      rgba(240,235,227,0.07);
  --border-dk:   rgba(240,235,227,0.13);
  --accent:      #E2D9CC;
  --accent-bg:   rgba(226,217,204,0.07);
  --accent-dark: #CBC1B3;
  --green-bg:    rgba(226,217,204,0.05);
  --green-text:  #C4BAB0;
  --blue-bg:     rgba(160,175,200,0.07);
  --blue-text:   #A8B8CC;
  --yellow-bg:   rgba(210,175,100,0.10);
  --yellow-text: #C9A96A;
  --max-w:       760px;
  --serif:       'Lora', Georgia, 'Times New Roman', serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font:        var(--sans);
  --radius:      6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,25,23,0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; gap: 24px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 15px; font-weight: 500; color: var(--text);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; letter-spacing: -0.01em;
}
.nav-logo .logo-emoji { font-family: var(--sans); font-size: 18px; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 13px; font-weight: 400; padding: 5px 10px; border-radius: var(--radius);
  transition: background 0.15s, color 0.15s; letter-spacing: 0.01em;
}
.nav-links a:hover { background: var(--bg-hover); color: var(--text); }
.nav-cta {
  background: var(--accent) !important; color: #0f1a14 !important;
  padding: 6px 14px !important; border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.85; background: var(--accent) !important; }

/* ── LAYOUT ── */
.page-wrap {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
}
.page-section { padding: 52px 0; border-top: 1px solid var(--border); }
.page-section:first-of-type { border-top: none; }

/* ── PAGE HEADER ── */
.page-header { padding: 56px 0 48px; }
.page-icon { font-size: 48px; line-height: 1; margin-bottom: 20px; display: block; }
.page-title {
  font-family: var(--serif);
  font-size: 44px; font-weight: 500; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 14px;
}
.page-title em { font-style: italic; color: var(--accent); }
.page-tagline {
  font-size: 14px; color: var(--text-lt); font-weight: 400;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.page-desc { font-size: 17px; line-height: 1.8; color: var(--text-mid); max-width: 580px; margin-bottom: 28px; }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-lt); text-decoration: none; font-size: 13px; font-weight: 500;
  margin-bottom: 24px; transition: color 0.15s;
}
.back-link:hover { color: var(--text); }
.back-link::before { content: '←'; }

/* ── SECTION HEADERS ── */
.section-heading {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 22px; font-weight: 500; color: var(--text);
  margin-bottom: 22px; letter-spacing: -0.01em;
}
.section-heading .sh-emoji { font-family: var(--sans); font-size: 20px; }
.section-sub {
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 28px; margin-top: -14px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 9px 18px; border-radius: var(--radius);
  cursor: pointer; transition: opacity 0.15s, background 0.15s;
  border: none;
}
.btn-primary { background: var(--accent); color: #1A1917; font-weight: 600; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-accent { background: var(--accent); color: #1A1917; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-dk);
}
.btn-ghost:hover { background: var(--bg-hover); }
.btn-link {
  background: none; color: var(--accent); padding: 0;
  font-size: 14px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}
.btn-link:hover { gap: 8px; }
.btn-link::after { content: '→'; }

/* ── CALLOUT BLOCKS ── */
.callout {
  display: flex; gap: 14px; padding: 16px 20px;
  border-radius: var(--radius); margin: 20px 0; font-size: 15px; line-height: 1.75;
}
.callout-icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.callout-body { flex: 1; }
.callout-body p { margin-bottom: 8px; }
.callout-body p:last-child { margin-bottom: 0; }
.callout-body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.callout-body ul li { padding-left: 16px; position: relative; }
.callout-body ul li::before { content: '→'; position: absolute; left: 0; opacity: 0.5; font-size: 13px; }

.callout-orange { background: var(--accent-bg); border-left: 2px solid var(--accent); }
.callout-orange .callout-body { color: var(--text-mid); }
.callout-green  { background: var(--green-bg); border-left: 2px solid var(--green-text); }
.callout-green  .callout-body { color: var(--green-text); }
.callout-blue   { background: var(--blue-bg); border-left: 2px solid var(--blue-text); }
.callout-blue   .callout-body { color: var(--blue-text); }
.callout-yellow { background: var(--yellow-bg); border-left: 2px solid var(--yellow-text); }
.callout-yellow .callout-body { color: var(--yellow-text); }
.callout-gray   { background: var(--bg-card); border-left: 2px solid var(--border-dk); }
.callout-gray   .callout-body { color: var(--text-mid); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* ── TOGGLES ── */
details { margin: 8px 0; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
details[open] summary { border-bottom: 1px solid var(--border); }
summary {
  padding: 14px 18px; font-size: 15px; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; gap: 10px; list-style: none;
  user-select: none; background: var(--bg-lt); transition: background 0.15s;
  color: var(--text);
}
summary::-webkit-details-marker { display: none; }
summary:hover { background: var(--bg-hover); }
summary::before { content: '▶'; font-size: 10px; color: var(--text-lt); transition: transform 0.2s; flex-shrink: 0; }
details[open] summary::before { transform: rotate(90deg); }
.details-body { padding: 20px 20px 20px 28px; background: var(--bg-lt); font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.details-body p { margin-bottom: 12px; }
.details-body p:last-child { margin-bottom: 0; }
.details-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 10px 0; }
.details-body ul li { font-size: 14px; color: var(--text-mid); padding-left: 18px; position: relative; line-height: 1.55; }
.details-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--text-lt); }
.details-body h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-lt); margin: 20px 0 8px; }
.details-body h4:first-child { margin-top: 0; }

/* ── PROPERTY LIST ── */
.prop-list { display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
.prop-row {
  display: flex; align-items: flex-start; gap: 0;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.prop-row:first-child { border-top: 1px solid var(--border); }
.prop-label { width: 160px; flex-shrink: 0; color: var(--text-lt); font-size: 13px; font-weight: 500; padding-top: 1px; }
.prop-value { color: var(--text); flex: 1; }
.prop-value a { color: var(--accent); text-decoration: none; }
.prop-value a:hover { text-decoration: underline; }

/* ── TAGS ── */
.tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  padding: 2px 8px; border-radius: 4px; letter-spacing: 0.01em;
}
.tag-default { background: var(--bg-card); color: var(--text-mid); border: 1px solid var(--border); }
.tag-orange  { background: var(--accent-bg); color: var(--accent); }
.tag-green   { background: var(--green-bg);  color: var(--green-text); }
.tag-blue    { background: var(--blue-bg);   color: var(--blue-text); }
.tag-yellow  { background: var(--yellow-bg); color: var(--yellow-text); }

/* ── STAT CHIPS ── */
.stat-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.stat-chip {
  background: var(--accent-bg); color: var(--accent);
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 4px;
}

/* ── SERVICE CARDS ── */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.service-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.service-card:hover { background: var(--bg-lt); border-color: var(--border-dk); }
.service-card-icon { font-size: 22px; margin-bottom: 4px; }
.service-card-title {
  font-family: var(--serif);
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
}
.service-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.service-card-cta { font-size: 13px; color: var(--accent); font-weight: 500; margin-top: 4px; }

/* ── PROJECT LIST ── */
.project-list { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.project-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  text-decoration: none; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.project-row:first-child { border-top: 1px solid var(--border); }
.project-row:hover { color: var(--accent); }
.project-row-emoji { font-size: 18px; flex-shrink: 0; }
.project-row-info { flex: 1; min-width: 0; }
.project-row-name { font-size: 15px; font-weight: 500; }
.project-row-desc { font-size: 13px; color: var(--text-mid); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.project-row-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.project-row-stat { font-size: 12px; font-weight: 600; color: var(--accent); }
.project-row-arrow { color: var(--text-lt); font-size: 14px; }

/* ── TALK LIST ── */
.talk-list { display: flex; flex-direction: column; gap: 0; }
.talk-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text-mid);
  transition: color 0.15s;
}
.talk-item:first-child { border-top: 1px solid var(--border); }
.talk-item:hover { color: var(--text); }
.talk-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 3px; flex-shrink: 0; margin-top: 2px;
}
.badge-talk { background: var(--accent-bg); color: var(--accent); }
.badge-pod  { background: var(--yellow-bg); color: var(--yellow-text); }
.talk-title { font-size: 14px; line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testi-block { padding: 24px 28px; border-radius: var(--radius); margin-bottom: 12px; }
.testi-block.gray { background: var(--bg-card); border: 1px solid var(--border); }
.testi-block.dark { background: var(--accent-bg); border: 1px solid rgba(117,176,154,0.2); }
.testi-quote {
  font-family: var(--serif);
  font-size: 15px; line-height: 1.8; font-style: italic;
  margin-bottom: 16px; color: var(--text-mid);
}
.testi-block.dark .testi-quote { color: var(--text); }
.testi-attr { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-block.dark .testi-attr { color: var(--accent); }
.testi-attr span { font-weight: 400; color: var(--text-lt); margin-left: 4px; }
.testi-block.dark .testi-attr span { color: var(--text-mid); }

/* ── PRICING TABLE ── */
.pricing-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 20px 0; }
.pricing-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); gap: 20px; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row:first-child { background: var(--bg-card); }
.pricing-name { font-size: 15px; font-weight: 500; }
.pricing-desc { font-size: 13px; color: var(--text-lt); margin-top: 2px; }
.pricing-amt { font-size: 17px; font-weight: 700; color: var(--accent); white-space: nowrap; font-feature-settings: 'tnum'; }

/* ── FAQ ── */
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 15px; color: var(--text-mid); line-height: 1.75; }

/* ── WHO LIST ── */
.who-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.who-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.who-item:first-child { border-top: 1px solid var(--border); }
.who-num { font-size: 13px; font-weight: 600; color: var(--text-lt); min-width: 22px; padding-top: 1px; }
.who-head { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.who-body { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ── HIGHLIGHTS CARD ── */
.highlights-card { background: var(--bg-lt); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; }
.highlights-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 14px; display: block; }
.highlights-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.highlights-card ul li { font-size: 15px; color: var(--text-mid); padding-left: 20px; position: relative; line-height: 1.55; }
.highlights-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 13px; }

/* ── SUBPROJECT CARD ── */
.subproject-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 12px; }
.subproject-title { font-family: var(--serif); font-size: 17px; font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.subproject-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin: 16px 0 8px; }
.subproject-label:first-child { margin-top: 0; }
.subproject-card p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 10px; }
.subproject-card p:last-child { margin-bottom: 0; }
.subproject-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.subproject-card ul li { font-size: 14px; color: var(--text-mid); padding-left: 18px; position: relative; line-height: 1.55; }
.subproject-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--text-lt); }

/* ── PAGE PHOTO ── */
.page-photo {
  width: 72px; height: 72px;
  border-radius: 50%; object-fit: cover;
  margin-bottom: 24px; display: block;
  border: 2px solid var(--border-dk);
}

/* ── TALK EXPAND ── */
.talk-expand {
  border: none; border-radius: 0;
  overflow: visible; margin: 0;
}
.talk-expand summary {
  padding: 12px 0; font-size: 13px; font-weight: 500;
  background: none; color: var(--accent); border: none;
  border-top: 1px solid var(--border);
  gap: 6px; letter-spacing: 0;
}
.talk-expand summary:hover { background: none; color: var(--accent-dark); }
.talk-expand[open] summary { border-bottom: none; }
.talk-expand summary::before { display: none; }
.talk-expand[open] > .talk-item:first-of-type { border-top: none; }

/* ── TOOL CARDS ── */
.tool-live  { font-size: 11px; font-weight: 600; color: var(--accent); }
.tool-soon  { font-size: 11px; font-weight: 500; color: var(--text-lt); }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); padding: 28px 0; margin-top: 72px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo {
  font-family: var(--serif);
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; letter-spacing: -0.01em;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--text-lt); text-decoration: none; font-size: 13px; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--text-lt); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .page-wrap { padding: 0 20px; }
  .page-title { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .project-row-meta { display: none; }
  .project-row-desc { white-space: normal; }
}
@media (max-width: 480px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .page-header { padding: 40px 0 32px; }
}
