/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:        #f8f5f0;
  --bg-alt:    #f0ebe3;
  --dark:      #1c1917;
  --text:      #1c1917;
  --body:      #57534e;
  --faint:     #a8a29e;
  --gold:      #b45309;
  --gold-hover:#92400e;
  --border:    #e7e0d8;
  --radius-card: 4px;
  --radius-btn:  3px;
  --max-w:     1200px;
  --pad-x:     48px;
}

.live-link:hover { opacity: 0.7; }

body.dark {
  --bg:     #1c1917;
  --bg-alt: #242120;
  --text:   #f8f5f0;
  --body:   #c5bdb5;
  --faint:  #6b6560;
  --border: #2e2b28;
  --dark:   #111110;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-playfair { font-family: 'Playfair Display', serif; }

h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  font-feature-settings: 'liga' 1, 'kern' 1;
  text-rendering: optimizeLegibility;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--text);
  font-feature-settings: 'liga' 1, 'kern' 1;
  text-rendering: optimizeLegibility;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-feature-settings: 'liga' 1, 'kern' 1;
  text-rendering: optimizeLegibility;
}
.italic-gold {
  font-style: italic;
  color: var(--gold);
}
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.body-lg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--body);
}
.body-md {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
}
.body-sm {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
}
.caption {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.65;
  color: var(--faint);
}
.italic-caption {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: var(--faint);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.rule { height: 1px; background: var(--border); border: none; }
.rule-dark { height: 1px; background: rgba(255,255,255,0.1); border: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.01em;
  transition: background 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-hover); }
.btn-primary-lg {
  font-size: 15px;
  padding: 15px 32px;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--text);
  letter-spacing: 0.01em;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-outline-full { display: block; width: 100%; text-align: center; padding: 14px; }
.btn-primary-full { display: block; width: 100%; text-align: center; padding: 14px; }
.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
}
.btn-ghost:hover { gap: 12px; }
.btn-gold-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: text-decoration 0.15s;
}
.btn-gold-text:hover { text-decoration: underline; }

/* ============================================================
   PAGE MANAGEMENT
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-logo {
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-word {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}
.nav-logo-ext {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
}
.nav-logo-ext .dot { color: var(--gold); font-size: 1.15em; }
.nav-links {
  display: flex;
  gap: 36px;
  margin: 0 auto;
}
.nav-links li {}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
  padding-bottom: 2px;
}
.nav-link:hover { color: var(--text); }
.nav-link.active {
  color: var(--text);
  border-bottom: 2px solid var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: none;
  transition: background 0.18s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-hover); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 15px;
  letter-spacing: 0.06em;
}
.mobile-cta {
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--body);
  margin-top: 12px;
}
.footer-col-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--body);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--text); }
.footer-email {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  display: block;
  transition: color 0.15s;
}
.footer-email:hover { color: var(--gold); }
.footer-start {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  background: none;
  border: none;
}
.footer-start:hover { text-decoration: underline; }
.footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x) 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy, .footer-domain {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--faint);
}

/* ============================================================
   PAGE WRAPPER (offset for fixed nav)
   ============================================================ */
.page-content { padding-top: 68px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 16px 48px;
  text-align: center;
}
.stats-bar p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ============================================================
   SVG BROWSER MOCKUPS
   ============================================================ */
.mockup-svg { display: block; }

/* ============================================================
   PAGE 1 — HOME
   ============================================================ */

/* Hero */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 60px 0;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-rule {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
  max-width: 440px;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.hero-right {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-stack {
  position: relative;
  width: 360px;
  height: 460px;
  transition: transform 0.3s ease;
}
.mockup-stack:hover {
  transform: scale(1.02);
}
.mockup-card {
  position: absolute;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.mockup-card:nth-child(1) {
  transform: rotate(-5deg) translateX(-48px) translateY(18px);
  z-index: 1;
}
.mockup-card:nth-child(2) {
  transform: rotate(-1deg) translateX(10px);
  z-index: 2;
}
.mockup-card:nth-child(3) {
  transform: rotate(4deg) translateX(52px) translateY(-22px);
  z-index: 3;
}
.mockup-stack:hover .mockup-card:nth-child(1) {
  transform: rotate(-7deg) translateX(-96px) translateY(24px);
}
.mockup-stack:hover .mockup-card:nth-child(2) {
  transform: rotate(0deg) translateX(0);
}
.mockup-stack:hover .mockup-card:nth-child(3) {
  transform: rotate(6deg) translateX(96px) translateY(-30px);
}

/* Values Section */
.values-section {
  background: var(--bg);
  padding: 96px 0;
}
.values-header {
  margin-bottom: 64px;
}
.values-grid {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 72px;
}
.values-left {
  position: relative;
}
.values-numeral {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 110px;
  color: var(--text);
  opacity: 0.06;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.values-left-content {
  position: relative;
  z-index: 1;
  padding-top: 32px;
}
.values-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.value-item:first-child { border-top: none; }
.value-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.value-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}
.value-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
}

/* Portfolio Preview */
.portfolio-section {
  background: var(--bg-alt);
  padding: 96px 0;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.portfolio-header-left {}
.portfolio-featured {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.portfolio-featured:hover {
  border-left-color: var(--gold);
  box-shadow: 0 6px 24px rgba(28,25,23,0.07);
}
.portfolio-featured-grid {
  display: grid;
  grid-template-columns: 38fr 62fr;
}
.portfolio-mockup-area {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-right: 1px solid var(--border);
}
.portfolio-featured-content {
  padding: 44px 48px;
}
.portfolio-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.portfolio-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 12px;
}
.portfolio-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 20px;
}
.portfolio-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.portfolio-link:hover { text-decoration: underline; }
.portfolio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.portfolio-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 6px 24px rgba(28,25,23,0.07);
}
.portfolio-card-mockup {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.portfolio-card-content {
  padding: 28px 32px;
}
.portfolio-card-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 10px;
}
.portfolio-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 14px;
}

/* Pricing Preview */
.pricing-section {
  background: var(--bg);
  padding: 96px 0;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin-top: 48px;
}
.price-card-light {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
}
.price-card-dark {
  background: var(--dark);
  border-radius: var(--radius-card);
  padding: 40px;
  position: relative;
}
.price-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  position: absolute;
  top: 20px;
  right: 20px;
}
.price-big {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  display: inline;
}
.price-big-gold {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
}
.price-per {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--faint);
  display: inline;
  margin-left: 4px;
}
.price-per-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(248,245,240,0.5);
  display: block;
  margin-top: 4px;
}
.price-meta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--faint);
  margin-top: 8px;
}
.price-meta-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(248,245,240,0.45);
  margin-top: 8px;
}
.price-desc-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248,245,240,0.78);
}
.price-italic-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: rgba(248,245,240,0.4);
  margin-top: 12px;
}
.price-italic {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: var(--faint);
  margin-top: 12px;
}
.pricing-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: var(--faint);
  margin-top: 20px;
}
.gold-link {
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  font-style: normal;
}
.gold-link:hover { text-decoration: underline; }

/* Home Closing CTA */
.home-cta {
  background: var(--dark);
  padding: 112px 0;
  text-align: center;
}
.home-cta-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: #f8f5f0;
  margin-bottom: 16px;
}
.home-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(248,245,240,0.5);
  margin-bottom: 40px;
}

/* ============================================================
   PAGE 2 — WORK
   ============================================================ */
.work-hero {
  background: var(--bg);
  padding: 96px 0 64px;
}
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--body);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.filter-btn:hover {
  border-color: var(--text);
  color: var(--text);
}
.filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.work-cards {
  padding: 40px 0;
}
.work-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s, box-shadow 0.2s;
  display: grid;
  grid-template-columns: 310px 1fr;
  margin-bottom: 3px;
}
.work-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 6px 24px rgba(28,25,23,0.07);
}
.work-card-mockup {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-right: 1px solid var(--border);
}
.work-card-content {
  padding: 44px 48px;
}
.work-card-url {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 20px;
  display: block;
}
.work-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 24px;
}
.goal-callout {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 28px;
}
.goal-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.goal-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  color: var(--body);
}
.work-visit {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
}
.work-visit:hover { text-decoration: underline; }
.work-coming-soon {
  background: var(--bg-alt);
  padding: 56px 0;
  text-align: center;
}
.work-coming-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-style: italic;
  color: var(--faint);
  max-width: 520px;
  margin: 0 auto;
}
.work-cta {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.work-cta-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #f8f5f0;
  margin-bottom: 32px;
}

/* ============================================================
   PAGE 3 — SERVICES
   ============================================================ */
.services-hero {
  background: var(--bg);
  padding: 96px 0 64px;
}
.pricing-full-section {
  background: var(--bg);
  padding: 64px 0 80px;
}
.pricing-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.price-card-full-light {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
}
.price-card-full-dark {
  background: var(--dark);
  border-radius: var(--radius-card);
  padding: 48px;
  position: relative;
  color: #f8f5f0;
}
.price-big-lg {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
  display: inline;
}
.price-big-lg-gold {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  display: inline;
}
.price-per-lg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--faint);
  display: inline;
  margin-left: 4px;
}
.price-per-lg-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: rgba(248,245,240,0.5);
  display: inline;
  margin-left: 4px;
}
.price-plan-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 20px;
}
.price-plan-name-light {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #f8f5f0;
  margin-bottom: 20px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
}
.feature-item-dark {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(248,245,240,0.82);
  line-height: 1.55;
}
.feature-arrow {
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.55;
}
.price-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: var(--faint);
  line-height: 1.65;
}
.price-note-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: rgba(248,245,240,0.45);
  line-height: 1.65;
}

/* Add-ons */
.addons-section {
  background: var(--bg-alt);
  padding: 80px 0;
}
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.addon-item {
  background: var(--bg);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.addon-left {}
.addon-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.addon-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--body);
}
.addon-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  background: var(--bg);
  padding: 100px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.faq-right {}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.15s;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--body);
  transition: background 0.15s, transform 0.3s ease;
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 8px; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* Services Bottom CTA */
.services-cta {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.services-cta-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #f8f5f0;
  margin-bottom: 12px;
}
.services-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(248,245,240,0.5);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================================
   PAGE 4 — CONTACT
   ============================================================ */
.contact-hero {
  background: var(--bg);
  padding: 96px 0 64px;
}
.contact-section {
  padding: 0 0 120px;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
}
.contact-left-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-email-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.contact-email-link {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  display: inline-block;
  transition: color 0.15s;
}
.contact-email-link:hover { color: var(--gold); }
.contact-email-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--faint);
  margin-top: 6px;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
input, textarea, select {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
}
input.error, textarea.error, select.error {
  border-color: #c0392b;
}
textarea { min-height: 120px; resize: vertical; }
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a29e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-error {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #c0392b;
  display: none;
}
.form-error.show { display: block; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--gold-hover); }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success.show { display: block; }
.success-circle {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
}
.success-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { height: 320px; }
  .values-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-full-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .work-card { grid-template-columns: 1fr; }
  .work-card-mockup { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 0; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .portfolio-featured-grid { grid-template-columns: 1fr; }
  .portfolio-mockup-area { border-right: none; border-bottom: 1px solid var(--border); }
  .portfolio-row { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  #page-about .container > div { grid-template-columns: 1fr !important; gap: 48px !important; }
}

.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--body);
  transition: border-color 0.15s, color 0.15s;
  margin-right: 12px;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--text);
  color: var(--text);
}

body.dark #nav {
  background: var(--bg);
  border-bottom-color: var(--border);
}
body.dark .mobile-menu {
  background: var(--bg);
  border-bottom-color: var(--border);
}
body.dark input,
body.dark textarea,
body.dark select {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--text);
}
body.dark .form-card {
  border-color: var(--border);
}
body.dark .price-card-light,
body.dark .price-card-full-light {
  border-color: var(--border);
  background: var(--bg-alt);
}
body.dark .price-big,
body.dark .price-plan-name {
  color: var(--text);
}
body.dark .portfolio-featured,
body.dark .portfolio-card,
body.dark .work-card {
  background: var(--bg-alt);
  border-color: var(--border);
}
body.dark footer {
  background: var(--bg);
  border-top-color: var(--border);
}
body.dark .footer-bar {
  border-top-color: var(--border);
}
body.dark .addon-item {
  background: var(--bg-alt);
}
body.dark .stats-bar {
  background: var(--bg);
  border-top-color: var(--border);
}

/* Page content offset for fixed nav */
.page-content { padding-top: 68px; }

/* Footer links as anchors */
.footer-link { display: block; }
a.footer-link, a.footer-start { display: block; }
a.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.01em;
  transition: background 0.18s ease;
  text-decoration: none;
}
a.nav-cta:hover { background: var(--gold-hover); }
a.mobile-cta {
  display: block;
  background: var(--gold);
  color: var(--bg) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: var(--radius-btn);
  text-align: center;
  margin: 8px 0 0;
  text-decoration: none;
}
