/* ============================================
   Paste Renovations - Editorial/Refined
   ============================================ */

:root {
  --bg: #f5f0e8;
  --bg-alt: #ece5d5;
  --bg-dark: #1e1a17;
  --paper: #faf6ed;
  --text: #1e1a17;
  --text-muted: #5a534b;
  --text-light: #8a8275;
  --accent: #b85c38;
  --accent-dark: #8a4528;
  --accent-soft: #d4906f;
  --sage: #4a5d3a;
  --line: #d4cab7;
  --line-soft: #e3dccd;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184, 92, 56, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(74, 93, 58, 0.03) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--accent); color: var(--paper); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 100;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 0.5rem; }

.nav a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--accent); }

.nav-cta {
  margin-left: 1rem;
  padding: 0.65rem 1.4rem !important;
  background: var(--text);
  color: var(--paper) !important;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--text);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--paper); transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: var(--paper);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-eyebrow { margin-bottom: 2rem; }

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 30rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.hero-figure-caption {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--paper);
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  max-width: 220px;
  line-height: 1.4;
  box-shadow: 0 18px 40px -20px rgba(30, 26, 23, 0.15);
}

.hero-figure-caption strong {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Floating marker */
.hero-marker {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.1;
  padding: 0.5rem;
  transform: rotate(-8deg);
}

/* ============================================
   MARQUEE / TRUST STRIP
   ============================================ */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  background: var(--paper);
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.trust-track span { display: inline-flex; align-items: center; gap: 4rem; }
.trust-track .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head { margin-bottom: 4rem; max-width: 50rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.right { margin-left: auto; text-align: right; }
.section-head .eyebrow { margin-bottom: 1.5rem; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.right .eyebrow { justify-content: flex-end; }

.section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section-lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* ============================================
   ABOUT INTRO (HOME)
   ============================================ */
.about-intro {
  background: var(--paper);
  position: relative;
}

.about-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.about-figure img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.35;
  color: var(--text);
  padding: 2rem 0;
  margin: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-quote::before { content: '"'; color: var(--accent); margin-right: 0.25rem; }
.about-quote::after { content: '"'; color: var(--accent); margin-left: 0.25rem; }

.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section { position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--paper);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.service-card:hover { background: var(--bg-alt); }

.service-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 400;
}

.service-card h3 em { color: var(--accent); font-style: italic; }

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.service-card-link {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================
   PROCESS - NUMBERED LIST
   ============================================ */
.process-section {
  background: var(--bg-dark);
  color: var(--paper);
}

.process-section .eyebrow { color: var(--accent-soft); }
.process-section .eyebrow::before { background: var(--accent-soft); }
.process-section .section-title { color: var(--paper); }
.process-section .section-title em { color: var(--accent-soft); }
.process-section .section-lede { color: rgba(245, 240, 232, 0.7); }

.process-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.process-item {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.15);
  position: relative;
  transition: padding-left 0.3s ease;
}

.process-item:hover { padding-left: 1rem; }

.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-soft);
  font-weight: 400;
}

.process-item h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--paper);
}

.process-item p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1rem;
}

/* ============================================
   FEATURE / PROMISE BLOCK
   ============================================ */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.promise-item {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}

.promise-item-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.promise-item-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.promise-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.promise-item p { color: var(--text-muted); }

/* ============================================
   GALLERY / STRIP
   ============================================ */
.gallery-strip {
  padding: 0;
  background: var(--paper);
  overflow: hidden;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-row .gallery-tile {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-tile:hover img { transform: scale(1.05); }

.gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30, 26, 23, 0.4) 100%);
}

.gallery-tile-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--accent);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-band-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--paper);
}

.cta-band-title em { font-style: italic; }

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cta-band .btn-primary { background: var(--paper); color: var(--text); }
.cta-band .btn-primary:hover { background: var(--text); color: var(--paper); }
.cta-band .btn-outline { border-color: var(--paper); color: var(--paper); }
.cta-band .btn-outline:hover { background: var(--paper); color: var(--accent); }

.cta-band-meta {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  font-size: 1rem;
}

.cta-band-meta a { color: var(--paper); border-bottom: 1px solid currentColor; }

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-hero-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.page-hero-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 28rem;
  padding-bottom: 0.5rem;
}

.breadcrumb {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { border-bottom: 1px solid var(--line); }
.breadcrumb a:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================
   ABOUT PAGE - VALUES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.value-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.value-card-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.value-card h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.value-card p { color: var(--text-muted); }

/* ============================================
   ABOUT PAGE - DIFFERENTIATORS LIST
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
}

.diff-item { padding-left: 0; }
.diff-item .eyebrow { margin-bottom: 1rem; }
.diff-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.diff-item p { color: var(--text-muted); }

/* ============================================
   SERVICES PAGE - GROUPED
   ============================================ */
.service-group {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-group:last-child { border-bottom: none; }

.service-group-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
}

.service-group-head .eyebrow { margin-bottom: 1.25rem; }
.service-group-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.service-group-head h2 em { font-style: italic; color: var(--accent); }
.service-group-head p { color: var(--text-muted); }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  padding-right: 1rem;
  transition: padding-left 0.3s ease;
}

.service-list-item:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.service-list-item:hover { background: var(--paper); }

.service-list-item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.service-list-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 6rem;
}

.contact-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-block:first-child { padding-top: 0; }

.contact-block-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.contact-block-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--text);
  font-weight: 400;
}

.contact-block-value a { color: inherit; }
.contact-block-value a:hover { color: var(--accent); }

.contact-block-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Form */
.contact-form {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-form h2 {
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact-form h2 em { font-style: italic; color: var(--accent); }

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field { margin-bottom: 1rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-field label .req { color: var(--accent); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
}

.form-field textarea { resize: vertical; min-height: 140px; }

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  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 fill='%23b85c38' d='M1.41 0L6 4.59 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-fine {
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: var(--serif);
  font-style: italic;
}

.form-error {
  background: rgba(184, 92, 56, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--paper); }

.faq-list {
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.faq-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-item p {
  color: var(--text-muted);
  padding-left: 2.5rem;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-inner { max-width: 38rem; }

.thank-you-mark {
  width: 90px;
  height: 90px;
  background: var(--accent);
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
}

.thank-you h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.thank-you h1 em { color: var(--accent); font-style: italic; }
.thank-you p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; }

/* ============================================
   404 PAGE
   ============================================ */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.notfound-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1rem;
}

.notfound h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.notfound p { color: var(--text-muted); margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.15);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}

.footer-brand-italic {
  font-style: italic;
  color: var(--accent-soft);
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent-soft); }

.footer-col p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
}

.footer-bottom .serif-italic { color: rgba(245, 240, 232, 0.7); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .page-hero-grid,
  .cta-band-inner,
  .service-group-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .page-hero-lede { padding-bottom: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr; gap: 2rem; }
  .diff-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .contact-info { position: static; }

  .process-item {
    grid-template-columns: 70px 1fr;
    gap: 1.5rem;
  }
  .process-item > p { grid-column: 2 / -1; }
  .process-num { font-size: 2.2rem; }
}

@media (max-width: 700px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--paper); padding: 1rem var(--gutter) 2rem; border-bottom: 1px solid var(--line); gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav a::after { display: none; }
  .nav-cta { margin: 1rem 0 0 0; text-align: center; }
  .menu-toggle { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .service-list-item:nth-child(even) { padding-left: 0; border-left: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-figure-caption { right: 1rem; bottom: 1rem; }
}
