:root {
  --ink: #1d2a24;
  --ink-soft: #2d3d35;
  --muted: #5d6862;
  --green: #315444;
  --green-dark: #223d31;
  --green-light: #3d6854;
  --sage: #dfe8df;
  --sage-dark: #c9d9ca;
  --cream: #f6f2e9;
  --cream-dark: #ede8dc;
  --paper: #fffdf8;
  --orange: #c75d2e;
  --orange-light: #e87a4a;
  --orange-dark: #a84a22;
  --line: #d9ddd7;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(29, 42, 36, 0.06);
  --shadow: 0 18px 50px rgba(29, 42, 36, 0.1);
  --shadow-lg: 0 32px 80px rgba(29, 42, 36, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Skip link */
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(49, 84, 68, 0.1);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(49, 84, 68, 0.2);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(49, 84, 68, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 99px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 4px 14px rgba(49, 84, 68, 0.18);
  transition: all 0.25s var(--ease-out);
}

.nav-cta:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(49, 84, 68, 0.25);
  transform: translateY(-1px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(199, 93, 46, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(49, 84, 68, 0.05), transparent 40%),
    linear-gradient(175deg, var(--cream) 0%, #f8f5ed 50%, #f0efe8 100%);
  z-index: 0;
}

/* Decorative craft-inspired element */
.hero::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(49, 84, 68, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.45fr 0.7fr;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow,
.card-label,
.project-number {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-trust {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ========================================
   BUTTONS
   ======================================== */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow:
    0 4px 14px rgba(199, 93, 46, 0.3),
    0 1px 3px rgba(199, 93, 46, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow:
    0 8px 24px rgba(199, 93, 46, 0.35),
    0 2px 6px rgba(199, 93, 46, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(199, 93, 46, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-secondary {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ========================================
   CONTACT CARD
   ======================================== */
.contact-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(49, 84, 68, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 0 0 3px 3px;
}

.contact-card h2 {
  font-size: 1.95rem;
  letter-spacing: -0.02em;
}

.contact-card dl {
  margin: 28px 0 22px;
}

.contact-card dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.contact-card a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--orange);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
}

.availability span {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4a9960;
}

.availability span::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(74, 153, 96, 0.15);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================
   PROOF STRIP
   ======================================== */
.proof-strip {
  position: relative;
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
}

.proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid p {
  display: flex;
  margin: 0;
  padding: 28px 32px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
}

.proof-grid p:hover {
  background: rgba(255, 255, 255, 0.05);
}

.proof-grid p:first-child {
  padding-left: 0;
}

.proof-grid p:last-child {
  border: 0;
}

.proof-grid strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.proof-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: clamp(80px, 10vw, 130px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}

.section-heading > p {
  max-width: 450px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

/* ========================================
   PROJECTS
   ======================================== */
.project-list {
  display: grid;
  gap: 32px;
}

.project-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.35fr 0.8fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-reverse {
  grid-template-columns: 0.8fr 1.35fr;
}

.project-reverse .project-image {
  order: 2;
}

.project-image {
  position: relative;
  min-height: 420px;
  background: var(--sage);
  overflow: hidden;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49, 84, 68, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-content {
  display: flex;
  padding: clamp(32px, 5vw, 55px);
  flex-direction: column;
  justify-content: center;
}

.project-content > p:not(.project-number) {
  color: var(--muted);
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tags li {
  padding: 7px 13px;
  border-radius: 99px;
  color: var(--green);
  background: var(--sage);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.tags li:hover {
  background: var(--sage-dark);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border: 1px solid rgba(49, 84, 68, 0.06);
}

.section-cta strong,
.section-cta span {
  display: block;
}

.section-cta strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.section-cta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  position: relative;
  background: var(--cream);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.5) 0%, transparent 30%);
  pointer-events: none;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(49, 84, 68, 0.1);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(49, 84, 68, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  border-color: rgba(49, 84, 68, 0.18);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(49, 84, 68, 0.2);
  transition: transform 0.3s var(--ease-spring);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-card-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--paper) 0%, #f5f8f5 100%);
  border-color: rgba(49, 84, 68, 0.18);
}

.service-card-highlight .service-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

@media (min-width: 681px) {
  .service-card-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
  }

  .service-card-highlight .service-icon {
    margin-bottom: 0;
  }

  .service-card-highlight h3 {
    margin-bottom: 6px;
  }

  .service-card-highlight p {
    max-width: 600px;
  }
}

.service-card h3 {
  position: relative;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.inline-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(49, 84, 68, 0.1);
}

.inline-cta p {
  margin: 0;
}

.inline-cta a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s var(--ease-out), color 0.2s ease;
}

.inline-cta a:hover,
.text-link:hover {
  gap: 12px;
  color: var(--green-dark);
}

.inline-cta span,
.text-link span {
  transition: transform 0.25s var(--ease-out);
}

.inline-cta a:hover span,
.text-link:hover span {
  transform: translateX(3px);
}

/* ========================================
   TAX SECTION (ROT/RUT)
   ======================================== */
.tax-section {
  background: var(--paper);
}

.tax-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tax-card {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.tax-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tax-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tax-card-rot .tax-badge {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
}

.tax-card-rut .tax-badge {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}

.tax-percent {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.tax-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.tax-card > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.tax-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tax-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tax-card li:last-child {
  border-bottom: 0;
}

.tax-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.tax-card-rut li::before {
  color: var(--orange);
}

.tax-note {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.tax-note strong {
  color: var(--ink);
}

@media (max-width: 680px) {
  .tax-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TRUST
   ======================================== */
.trust {
  position: relative;
  color: var(--white);
  background: var(--green-dark);
  overflow: hidden;
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 90%, rgba(199, 93, 46, 0.1), transparent),
    linear-gradient(160deg, var(--green-dark) 0%, #1a3025 100%);
}

.trust .eyebrow {
  color: var(--orange-light);
}

.trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(60px, 10vw, 140px);
}

.trust-intro {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s var(--ease-out);
}

.check-list li:hover {
  padding-left: 8px;
}

.check-list li > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: linear-gradient(135deg, #d4e5d6 0%, #b8d4bb 100%);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.check-list strong {
  display: block;
  font-size: 1.02rem;
}

.check-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(50px, 9vw, 120px);
}

/* När porträttet är dolt, centrera texten */
.about-grid:has(.portrait[hidden]) {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.about-grid:has(.portrait[hidden]) .about-copy {
  text-align: center;
}

.portrait {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: var(--shadow-lg);
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(49, 84, 68, 0.1);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.portrait:hover img {
  transform: scale(1.02);
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
}

/* ========================================
   QUOTE / FORM
   ======================================== */
.quote {
  position: relative;
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
}

.quote .eyebrow {
  color: var(--orange-light);
}

.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(50px, 9vw, 115px);
}

.quote-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  line-height: 1.7;
}

.direct-contact {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out);
}

.direct-contact a:hover {
  transform: translateX(6px);
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.direct-contact strong {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.quote-form {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.quote-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #a0a5a2;
}

input:hover,
textarea:hover {
  border-color: var(--sage-dark);
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(49, 84, 68, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-note a {
  color: var(--green);
  font-weight: 600;
}

.button-full {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  position: relative;
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #14211b;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 60px;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-mark {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-light small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:first-child p {
  max-width: 380px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.footer-grid strong {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.footer-grid a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-info {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.business-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.business-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.business-info span::before {
  content: "✓";
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.business-info span:first-child::before {
  display: none;
}

.tax-info {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.tax-info strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   MOBILE CTA
   ======================================== */
.mobile-call {
  display: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
}

.fade-in.is-visible {
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}

.fade-in-delay-1.is-visible { animation-delay: 0.1s; }
.fade-in-delay-2.is-visible { animation-delay: 0.2s; }
.fade-in-delay-3.is-visible { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-children.is-visible > * {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.stagger-children.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children.is-visible > *:nth-child(2) { animation-delay: 0.12s; }
.stagger-children.is-visible > *:nth-child(3) { animation-delay: 0.19s; }
.stagger-children.is-visible > *:nth-child(4) { animation-delay: 0.26s; }
.stagger-children.is-visible > *:nth-child(5) { animation-delay: 0.33s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid,
  .trust-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .contact-card {
    max-width: 620px;
  }

  .project-card,
  .project-reverse {
    grid-template-columns: 1fr;
  }

  .project-reverse .project-image {
    order: 0;
  }

  .project-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .about-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.65rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    padding-inline: 18px;
  }

  .proof-grid,
  .service-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid p {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-grid p:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .section-cta,
  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 36px;
  }

  .project-list {
    gap: 24px;
  }

  .project-content {
    padding: 28px 24px 32px;
  }

  .section-cta {
    padding: 26px;
  }

  .section-cta .button {
    width: 100%;
  }

  .inline-cta {
    gap: 12px;
  }

  .about-grid {
    gap: 40px;
  }

  .portrait {
    max-height: 480px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow:
      0 8px 32px rgba(199, 93, 46, 0.4),
      0 2px 8px rgba(23, 37, 31, 0.2);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s var(--ease-out);
  }

  .mobile-call:active {
    transform: scale(0.98);
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .project-card,
  .service-card,
  .project-image img,
  .portrait img,
  .check-list li,
  .inline-cta a,
  .text-link,
  .brand,
  .nav-cta,
  .contact-card a,
  .direct-contact a {
    transition: none;
  }

  .fade-in,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .availability span::after {
    animation: none;
  }
}
