/* =====================================
   Pine Pixel Studio - Brand System + UI
   ===================================== */

:root {
  /* Core pine palette (requested) */
  --pine-deep: #1f3d2b;
  --pine-forest: #2f5d44;
  --pine-sage: #6f9a8d;
  --pine-mist: #cfe3dc;

  /* Earthy neutrals (requested) */
  --beige-soft: #f5efe6;
  --sand-warm: #e6d8c3;
  --taupe: #8b6f5a;
  --cocoa: #4a3b2f;

  /* Accents (requested) */
  --accent-gold: #c2a878;
  --accent-clay: #d0a98f;

  /* Text + utility (requested) */
  --text-dark: #2b2b2b;
  --text-light: #6e6e6e;
  --white: #ffffff;

  /* Derived UI tokens */
  --surface-cream: #fbf8f2;
  --surface-pine: #f2f7f4;
  --glass-bg: rgba(255, 255, 255, 0.66);
  --glass-stroke: rgba(47, 93, 68, 0.16);
  --editorial-ink: #1a2d21;
  --mist-line: rgba(47, 93, 68, 0.08);
  --pine-night: #173124;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 34px;

  --shadow-soft: 0 12px 34px rgba(31, 61, 43, 0.09);
  --shadow-lift: 0 20px 52px rgba(31, 61, 43, 0.14);
  --shadow-hero: 0 30px 70px rgba(31, 61, 43, 0.18);

  --container: min(1140px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(1100px 420px at 9% 2%, rgba(111, 154, 141, 0.22), transparent 64%),
    radial-gradient(1000px 500px at 87% 0%, rgba(230, 216, 195, 0.35), transparent 66%),
    linear-gradient(158deg, #fcfaf6 0%, #f8f3ea 36%, #f2f7f4 78%, #eef5f1 100%);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Subtle grain to avoid flatness */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(74, 59, 47, 0.08) 0.6px, transparent 0.6px),
    radial-gradient(rgba(111, 154, 141, 0.06) 0.6px, transparent 0.6px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 6.2rem 0;
  position: relative;
}

/* Soft floating organic accents */
.bg-aurora {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.4;
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}

.aurora-one {
  width: 430px;
  height: 430px;
  top: -140px;
  right: -90px;
  background:
    radial-gradient(circle at 35% 35%, rgba(47, 93, 68, 0.42), rgba(47, 93, 68, 0));
}

.aurora-two {
  width: 360px;
  height: 360px;
  left: -130px;
  bottom: -130px;
  background:
    radial-gradient(circle at 62% 42%, rgba(208, 169, 143, 0.36), rgba(208, 169, 143, 0));
  animation-delay: -5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.06);
  }
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(47, 93, 68, 0.14);
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, rgba(252, 248, 241, 0.84), rgba(242, 247, 244, 0.72));
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  color: var(--accent-gold);
  font-size: 1rem;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--pine-deep);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 220ms ease, transform 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pine-forest);
  transform: translateY(-1px);
  border-color: rgba(194, 168, 120, 0.7);
}

.nav-links a[aria-current="page"] {
  color: var(--pine-forest);
  border-color: rgba(194, 168, 120, 0.7);
}

.nav-links a.nav-cta {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 230, 0.94));
  min-height: 42px;
  padding: 0 1rem;
  padding-bottom: 0;
  line-height: 1;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(47, 93, 68, 0.28), var(--shadow-soft);
  background-clip: padding-box;
  text-decoration: none;
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(47, 93, 68, 0.45), 0 14px 28px rgba(31, 61, 43, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 93, 68, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--pine-deep);
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Shared typography */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--pine-forest);
  margin-bottom: 0.95rem;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), var(--pine-sage));
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  color: var(--pine-deep);
}

h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.95rem);
  margin-bottom: 1.15rem;
  letter-spacing: 0.2px;
  color: var(--editorial-ink);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  color: var(--editorial-ink);
  text-wrap: balance;
}

h3 {
  font-size: 1.72rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.15rem;
  position: relative;
}

.section-heading h2 {
  max-width: 22ch;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.85rem;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.8), rgba(47, 93, 68, 0.2));
}

p {
  color: var(--text-light);
  font-weight: 400;
}

main section {
  border-top: 1px solid var(--mist-line);
}

/* Section rhythm: alternating grounded panels */
#about,
#work,
#testimonials,
#results {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(245, 239, 230, 0.55));
}

#services,
#contact {
  background: linear-gradient(165deg, rgba(242, 247, 244, 0.7), rgba(245, 239, 230, 0.45));
}

#why {
  background:
    radial-gradient(900px 380px at 15% 8%, rgba(111, 154, 141, 0.24), transparent 60%),
    radial-gradient(700px 340px at 85% 84%, rgba(194, 168, 120, 0.18), transparent 62%),
    linear-gradient(150deg, var(--pine-night) 0%, var(--pine-deep) 55%, #10291d 100%);
}

#why .section-heading h2,
#why .kicker,
#why p {
  color: rgba(245, 239, 230, 0.95);
}

#why .kicker::before {
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.95), rgba(207, 227, 220, 0.4));
}

#why .section-heading::after {
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.95), rgba(255, 255, 255, 0.2));
}

/* Hero */
.hero {
  padding-top: 6.9rem;
  overflow: clip;
  display: flex;
  align-items: center;
}

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

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: min(50vw, 640px);
  height: min(50vw, 640px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(47, 93, 68, 0.2), rgba(47, 93, 68, 0));
  filter: blur(8px);
}

.hero::after {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  right: -10%;
  bottom: -28%;
  background: radial-gradient(circle, rgba(194, 168, 120, 0.2), rgba(194, 168, 120, 0));
  filter: blur(10px);
}

.hero-grid {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 16ch;
  margin: 0 auto;
}

.hero-copy p {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin: 1.85rem auto 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
  align-self: center;
}

/* Homepage-specific hard lock to prevent any left alignment drift */
.hero .hero-actions-home {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


.btn {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.94rem 1.38rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(130deg, var(--pine-forest), var(--pine-deep) 65%, #163321);
  box-shadow: 0 12px 30px rgba(31, 61, 43, 0.29), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 30px rgba(31, 61, 43, 0.35);
}

.btn-secondary {
  color: var(--pine-deep);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 230, 0.96));
  border: 1px solid rgba(47, 93, 68, 0.22);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(47, 93, 68, 0.38);
}

.hero-card {
  padding: 2.05rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(245, 239, 230, 0.56));
  border: 1px solid var(--glass-stroke);
  box-shadow: var(--shadow-hero);
  backdrop-filter: blur(7px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(194, 168, 120, 0.28), rgba(194, 168, 120, 0));
}

.hero-card-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  color: var(--pine-forest);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-card h2 {
  font-size: clamp(1.52rem, 2.15vw, 2.05rem);
  margin-bottom: 0.62rem;
  line-height: 1.18;
}

.hero-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.35rem;
  align-items: center;
}

.hero-card-main {
  max-width: 34ch;
}

.hero-card-support {
  color: var(--taupe);
  font-size: 0.93rem;
  line-height: 1.5;
}

.metric-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric {
  color: var(--pine-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-card-stat {
  display: grid;
  gap: 0.35rem;
  align-content: center;
  justify-items: end;
  min-height: 100%;
}

.metric-text {
  color: var(--taupe);
  font-size: 0.86rem;
  line-height: 1.25;
  text-align: right;
}

.hero-card-badge {
  margin-top: 1.3rem;
  display: inline-block;
  border-radius: 999px;
  background: rgba(194, 168, 120, 0.16);
  border: 1px solid rgba(194, 168, 120, 0.33);
  padding: 0.45rem 0.8rem;
  color: var(--cocoa);
  font-size: 0.78rem;
  font-weight: 600;
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1.1rem;
}

.about-copy p {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.6));
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 59, 47, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

/* Shared premium card behavior */
.service-card,
.work-card,
.why-card,
.testimonial {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.work-card:hover,
.why-card:hover,
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* Services */
.service-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(242, 247, 244, 0.72));
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.14);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  min-height: 230px;
}

.service-card:hover {
  border-color: rgba(47, 93, 68, 0.35);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-gold), var(--pine-sage));
  opacity: 0.65;
}

.service-card::after,
.work-card::after,
.why-card::after,
.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  color: var(--taupe);
  font-weight: 600;
}

.services-transition {
  padding-top: 3.8rem;
}

.services-center-copy {
  max-width: 780px;
  text-align: center;
}

.services-center-copy h2 {
  margin-bottom: 0.9rem;
}

.services-center-copy p {
  margin: 0 auto;
  color: var(--text-light);
}

.services-detail-wrap {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.35), rgba(245, 239, 230, 0.58));
}

.services-detail-wrap .container {
  display: grid;
  gap: 2.4rem;
}

.service-detail {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 93, 68, 0.14);
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 230, 0.55));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
}

.service-detail-head {
  max-width: 78ch;
  margin-bottom: 1.5rem;
}

.service-detail-head h2 {
  margin-bottom: 0.55rem;
}

.service-detail-head p {
  color: var(--text-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(31, 61, 43, 0.08);
  padding: 1.2rem;
}

.service-detail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-dark);
}

.detail-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-gold), var(--pine-sage));
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-50%);
}

.services-addons .section-heading p {
  max-width: 70ch;
  color: var(--text-light);
}

.addons-list {
  list-style: none;
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.6rem;
  align-items: stretch;
}

.addons-list li {
  border-radius: 14px;
  border: 1px solid rgba(47, 93, 68, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 230, 0.52));
  box-shadow: 0 8px 20px rgba(31, 61, 43, 0.07);
  min-height: 78px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 550;
  line-height: 1.52;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.addons-list li::before {
  content: "✦";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(47, 93, 68, 0.16);
  color: var(--pine-forest);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  line-height: 1;
  transform: translateY(-1px);
}

.addons-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 93, 68, 0.24);
  box-shadow: 0 12px 24px rgba(31, 61, 43, 0.1);
}

.services-process {
  background: linear-gradient(162deg, rgba(31, 61, 43, 0.94), rgba(24, 44, 33, 0.9));
}

.services-process .section-heading,
.services-process .section-heading h2,
.services-process .section-heading p {
  color: rgba(255, 255, 255, 0.95);
}

.services-process .section-heading .kicker {
  color: rgba(194, 168, 120, 0.95);
}

.services-process-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-process-step {
  border-radius: var(--radius-md);
  border: 1px solid rgba(194, 168, 120, 0.26);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(245, 239, 230, 0.08));
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.process-step-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: rgba(194, 168, 120, 0.96);
  margin-bottom: 0.35rem;
}

.services-process-step h3 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.services-process-step p {
  color: rgba(255, 255, 255, 0.8);
}

.services-faq .section-heading {
  margin-bottom: 1.25rem;
}

.faq-stack {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.15);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.85), rgba(245, 239, 230, 0.52));
  box-shadow: var(--shadow-soft);
  padding: 0.18rem 1rem;
}

.faq-item[open] {
  border-color: rgba(47, 93, 68, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.9rem 1.7rem 0.9rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pine-forest);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--text-light);
  padding: 0 0 0.95rem;
}

/* Work */
.work-grid {
  margin-top: 1.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.work-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 59, 47, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.work-card:hover {
  border-color: rgba(139, 111, 90, 0.34);
}

.work-image {
  min-height: 155px;
  border-bottom: 1px solid rgba(74, 59, 47, 0.1);
  transition: transform 420ms ease, filter 420ms ease;
}

.work-card:hover .work-image {
  transform: scale(1.04) translateY(-2px);
  filter: saturate(1.05);
}

.work-card .work-content {
  transition: transform 300ms ease;
}

.work-card:hover .work-content {
  transform: translateY(-2px);
}

.image-one {
  background:
    radial-gradient(500px 220px at 10% 20%, rgba(47, 93, 68, 0.33), transparent 55%),
    linear-gradient(145deg, #f9f5ec, #e6eee9);
}

.image-two {
  background:
    radial-gradient(600px 230px at 85% 10%, rgba(194, 168, 120, 0.3), transparent 56%),
    linear-gradient(140deg, #faf6ee, #ebf1ed);
}

.image-three {
  background:
    radial-gradient(500px 220px at 15% 80%, rgba(208, 169, 143, 0.3), transparent 52%),
    linear-gradient(135deg, #f8f2e8, #e7efe9);
}

.work-content {
  padding: 0.82rem;
}

.work-tag {
  color: var(--pine-forest);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 700;
  margin-bottom: 0.38rem;
}

.work-content h3 {
  margin-bottom: 0.45rem;
}

.work-content h3::after {
  content: " ↗";
  opacity: 0;
  transition: opacity 220ms ease;
}

.work-card:hover .work-content h3::after {
  opacity: 0.72;
}

/* Why us */
.why-wrap {
  background:
    linear-gradient(155deg, rgba(245, 239, 230, 0.08), rgba(207, 227, 220, 0.06));
  border: 1px solid rgba(194, 168, 120, 0.34);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 2.3rem;
  backdrop-filter: blur(5px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(194, 168, 120, 0.34);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(245, 239, 230, 0.08));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.why-card h3 {
  font-size: 1.47rem;
  margin-bottom: 0.44rem;
  color: #f7f0e5;
}

#why .why-card p {
  color: rgba(232, 237, 230, 0.9);
}

/* Testimonials */
.testimonial-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(230, 216, 195, 0.35));
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 59, 47, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 1.28rem;
  position: relative;
  overflow: hidden;
}

.testimonial p {
  color: #3d3c39;
  margin-bottom: 0.85rem;
}

.testimonial cite {
  font-size: 0.88rem;
  color: var(--taupe);
  font-style: normal;
}

/* Brand marquee */
.brand-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(47, 93, 68, 0.14);
  border-bottom: 1px solid rgba(47, 93, 68, 0.14);
  background: linear-gradient(120deg, rgba(245, 239, 230, 0.85), rgba(207, 227, 220, 0.3));
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pine-forest);
  padding-right: 0;
}

.marquee-track span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin: 0 0.7rem;
  align-self: center;
  background: rgba(194, 168, 120, 0.95);
  transform: translateY(-1px);
}

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

/* Interactive process section */
#process {
  background: linear-gradient(165deg, rgba(245, 239, 230, 0.6), rgba(242, 247, 244, 0.72));
}

.process-wrap {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(245, 239, 230, 0.5));
  border: 1px solid rgba(47, 93, 68, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.process-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.process-tab {
  border: 1px solid rgba(47, 93, 68, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--pine-deep);
  border-radius: 999px;
  padding: 0.62rem 0.8rem;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 240ms ease;
}

.process-tab:hover,
.process-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 93, 68, 0.34);
}

.process-tab.is-active {
  background: linear-gradient(130deg, var(--pine-forest), var(--pine-deep));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(31, 61, 43, 0.26);
}

.process-panels {
  margin-top: 1rem;
}

.process-panel {
  display: none;
  border: 1px solid rgba(74, 59, 47, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(230, 216, 195, 0.35));
  border-radius: var(--radius-md);
  padding: 1.15rem;
  animation: processFade 360ms ease;
}

.process-panel.is-active {
  display: block;
}

.process-panel h3 {
  margin-bottom: 0.5rem;
}

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

/* Final CTA */
.final-cta {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(47, 93, 68, 0.88), rgba(31, 61, 43, 0.86)),
    linear-gradient(145deg, #f8f3ea, #e6eee9);
  border: 1px solid rgba(194, 168, 120, 0.38);
  box-shadow: var(--shadow-hero);
  padding: 2.45rem;
  text-align: center;
}

.final-cta .btn-primary {
  background: linear-gradient(130deg, var(--accent-gold), #b89464);
  color: #1f231f;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover,
.final-cta .btn-primary:focus-visible {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.final-cta .kicker,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .kicker::before {
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.95), rgba(255, 255, 255, 0.7));
}

.final-cta h2 {
  margin: 0 auto 0.75rem;
  max-width: 20ch;
}

.final-cta p {
  margin: 0 auto 1.35rem;
  max-width: 58ch;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(74, 59, 47, 0.16);
  background: linear-gradient(160deg, rgba(245, 239, 230, 0.82), rgba(238, 245, 241, 0.8));
  margin-top: 1.25rem;
  padding: 2.4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.6rem;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--pine-deep);
  margin-bottom: 0.35rem;
}

.footer-copy {
  max-width: 34ch;
}

.footer-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--taupe);
  margin-bottom: 0.55rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #3e3c37;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--pine-forest);
}

.copyright {
  margin-top: 1.7rem;
  text-align: center;
  color: var(--taupe);
  font-size: 0.86rem;
}

/* Entrance animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(2),
.work-grid .reveal:nth-child(2),
.testimonial-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2) {
  transition-delay: 120ms;
}

.service-grid .reveal:nth-child(3),
.work-grid .reveal:nth-child(3),
.testimonial-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(3) {
  transition-delay: 220ms;
}

.service-grid .reveal:nth-child(4) {
  transition-delay: 300ms;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-page .why-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-page .why-difference-panel {
    grid-template-columns: 1fr;
  }

  .why-page .why-difference-lead {
    max-width: 100%;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 93, 68, 0.14);
    padding-bottom: 0.95rem;
  }

  .service-detail-grid,
  .addons-list {
    grid-template-columns: 1fr;
  }

  .services-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-hero {
    min-height: clamp(330px, 46vh, 440px);
    padding: clamp(4.1rem, 8vw, 5.2rem) 0 clamp(2.8rem, 5.6vw, 3.8rem);
  }

  .process-page .process-step-card {
    margin-left: 1.8rem;
  }

  .process-page .process-step-card::before {
    left: -1.65rem;
  }

  .work-page .project-feature-card {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .home-featured-work .project-feature-card {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .work-page .project-feature-card:nth-child(even) .project-feature-media-link,
  .work-page .project-feature-card:nth-child(even) .project-feature-content {
    order: initial;
  }

  .home-featured-work .project-feature-card:nth-child(even) .project-feature-media-link,
  .home-featured-work .project-feature-card:nth-child(even) .project-feature-content {
    order: initial;
  }

  .process-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-pad {
    padding: 4.9rem 0;
  }

  .hero {
    padding-top: 5.7rem;
  }

  .hero-copy h1 {
    max-width: 18ch;
  }

  .hero-copy p {
    max-width: 62ch;
  }

  .hero-card-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .inner-hero-copy h1 {
    max-width: 20ch;
  }

  .inner-hero-copy p {
    max-width: 60ch;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    background: rgba(252, 248, 241, 0.98);
    border-bottom: 1px solid rgba(74, 59, 47, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 4vw 1.1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 230ms ease, opacity 230ms ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .service-grid,
  .work-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .why-page .why-editorial {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .why-page .why-difference {
    padding-top: 4.3rem;
  }

  .why-page .why-soft-cta {
    padding-top: 4rem;
  }

  .why-page .why-process-grid {
    grid-template-columns: 1fr;
  }

  .why-page .why-difference-points p {
    font-size: 1.2rem;
  }

  .services-process-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 0;
    padding: 4.25rem 0 2.45rem;
  }

  .inner-hero-copy {
    max-width: min(620px, 100%);
    text-align: center;
  }

  .inner-hero-copy h1 {
    max-width: 18ch;
    margin: 0 auto;
    line-height: 1.14;
  }

  .inner-hero-copy p {
    max-width: 46ch;
    margin: 1rem auto 0;
    line-height: 1.78;
  }

  .hero-copy h1 {
    max-width: 18ch;
  }

  .hero-copy p {
    max-width: 46ch;
  }

  .process-page .process-flow::before {
    left: 11px;
  }

  .process-page .process-step-card {
    margin-left: 1.2rem;
    padding: 1rem;
  }

  .process-page .process-step-card::before {
    left: -1.06rem;
    top: 1.3rem;
    width: 8px;
    height: 8px;
  }

  .service-card {
    min-height: 0;
    padding: 1.35rem;
  }

  .service-detail,
  .service-detail-card,
  .faq-item {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .process-tabs {
    grid-template-columns: 1fr;
  }

  .process-tab {
    text-align: left;
  }

  .hero-card,
  .final-cta,
  .why-wrap {
    padding: 1.45rem;
  }

  .metric-list {
    grid-template-columns: 1fr;
  }

  .hero-card-layout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero-card-main {
    max-width: 100%;
  }

  .hero-card-stat {
    justify-items: start;
  }

  .metric-text {
    text-align: left;
  }

  .section-pad {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-aurora,
  .marquee-track {
    animation: none;
  }

  .reveal,
  .process-panel,
  .work-image,
  .work-card .work-content,
  .btn,
  .nav-links a {
    transition: none;
  }
}

/* =====================================
   About Page
   ===================================== */
.about-page .nav-links a[aria-current="page"] {
  color: var(--pine-forest);
  border-color: rgba(194, 168, 120, 0.7);
}

.why-page #why {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(245, 239, 230, 0.56));
}

.why-page #why .section-heading h2,
.why-page #why .section-heading p,
.why-page #why .kicker {
  color: var(--editorial-ink);
}

.why-page #why .kicker::before {
  background: linear-gradient(90deg, var(--accent-gold), var(--pine-sage));
}

.why-page .why-divider {
  border-top: 0;
}

.why-page .why-divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 93, 68, 0), rgba(47, 93, 68, 0.3), rgba(194, 168, 120, 0.45), rgba(47, 93, 68, 0));
}

.why-page .why-editorial {
  padding-top: 2.5rem;
  padding-bottom: 4.6rem;
}

.why-page .why-editorial .section-heading {
  max-width: 840px;
  margin-bottom: 1.25rem;
}

.why-page .why-intro-panel {
  max-width: 940px;
  border: 1px solid rgba(47, 93, 68, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 230, 0.54));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.why-page .why-intro-panel p {
  color: #4b4a45;
  line-height: 1.82;
  font-size: 1.02rem;
  max-width: 74ch;
}

.why-page .why-intro-panel p + p {
  margin-top: 0.8rem;
}

.why-page #why {
  padding-top: 4.8rem;
  padding-bottom: 4.9rem;
}

.why-page .why-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.9vw, 1.2rem);
  max-width: 1020px;
  margin-inline: auto;
}

.why-page .why-process-card {
  border: 1px solid rgba(47, 93, 68, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 230, 0.72));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2.3vw, 1.75rem);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.why-page .why-process-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  margin-bottom: 0.62rem;
  color: var(--pine-deep);
  letter-spacing: 0.01em;
}

.why-page .why-process-card p {
  color: #474640;
  line-height: 1.72;
  font-weight: 500;
}

.why-page #why .why-process-card p {
  color: #474640;
}

.why-page .why-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(47, 93, 68, 0.24);
}

.why-page .why-difference {
  padding-top: 4.9rem;
  padding-bottom: 5.1rem;
  background: linear-gradient(165deg, rgba(242, 247, 244, 0.68), rgba(245, 239, 230, 0.42));
}

.why-page .why-difference .section-heading {
  margin-bottom: 1.35rem;
}

.why-page .why-difference-panel {
  border: 1px solid rgba(47, 93, 68, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(245, 239, 230, 0.7));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
  max-width: 980px;
}

.why-page .why-difference-lead {
  color: #4c4b46;
  line-height: 1.8;
  max-width: 44ch;
  font-size: 1.02rem;
  padding-right: 0.35rem;
  border-right: 1px solid rgba(47, 93, 68, 0.14);
}

.why-page .why-difference-points {
  display: grid;
  gap: 0.72rem;
  align-content: center;
}

.why-page .why-difference-points p {
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  line-height: 1.38;
  color: var(--pine-deep);
  font-weight: 560;
  padding: 0.3rem 0 0.3rem 0.95rem;
  border-left: 1px solid rgba(194, 168, 120, 0.7);
}

.why-page .why-soft-cta {
  padding-top: 5rem;
  border-top: 1px solid rgba(47, 93, 68, 0.12);
}

.why-page .why-soft-cta .final-cta {
  max-width: 920px;
  margin: 0 auto;
}

.inner-hero {
  min-height: clamp(360px, 52vh, 520px);
  display: flex;
  align-items: center;
  padding: clamp(4.4rem, 8vw, 6.2rem) 0 clamp(3.2rem, 6vw, 4.6rem);
}

.inner-hero-copy {
  max-width: min(1080px, 94vw);
  margin: 0 auto;
  text-align: center;
}

.inner-hero-copy h1 {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.inner-hero-copy p {
  max-width: 56ch;
  margin: 1.15rem auto 0;
  line-height: 1.82;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
}

.inner-hero .kicker {
  gap: 0;
}

.inner-hero .kicker::before {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.56));
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.contact-card h3 {
  margin-bottom: 0.45rem;
}

.contact-card a {
  color: var(--pine-forest);
  text-decoration: underline;
  text-decoration-color: rgba(194, 168, 120, 0.75);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-note {
  border: 1px solid rgba(47, 93, 68, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 230, 0.58));
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.contact-note p + p {
  margin-top: 0.8rem;
}

.contact-note a {
  color: var(--pine-forest);
  text-decoration: underline;
  text-decoration-color: rgba(194, 168, 120, 0.75);
}

.contact-form-card {
  border: 1px solid rgba(47, 93, 68, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.93), rgba(245, 239, 230, 0.6));
  box-shadow: var(--shadow-lift);
  padding: 1.25rem;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

.form-status {
  display: none;
  border-radius: 12px;
  padding: 0.68rem 0.78rem;
  font-size: 0.92rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(111, 154, 141, 0.22);
  border: 1px solid rgba(47, 93, 68, 0.32);
  color: var(--pine-deep);
}

.form-status.is-error {
  background: rgba(208, 169, 143, 0.2);
  border: 1px solid rgba(139, 111, 90, 0.32);
  color: var(--cocoa);
}

.form-grouping {
  border: 1px solid rgba(47, 93, 68, 0.14);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.64);
}

.form-grouping legend {
  padding: 0 0.35rem;
  color: var(--taupe);
  font-size: 0.84rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-field {
  display: grid;
  gap: 0.36rem;
}

.form-field + .form-field {
  margin-top: 0.72rem;
}

.form-field label {
  font-size: 0.92rem;
  color: var(--pine-deep);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(47, 93, 68, 0.2);
  border-radius: 12px;
  padding: 0.74rem 0.8rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  font: inherit;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(47, 93, 68, 0.5);
  box-shadow: 0 0 0 3px rgba(111, 154, 141, 0.18);
  background: #fff;
}

.field-error {
  min-height: 1.05rem;
  font-size: 0.84rem;
  color: #9e3c33;
}

.input-invalid {
  border-color: rgba(158, 60, 51, 0.62) !important;
  box-shadow: 0 0 0 3px rgba(158, 60, 51, 0.14) !important;
}

.submit-btn {
  justify-self: start;
  min-width: 144px;
}

.submit-btn.is-clicked {
  transform: translateY(0) scale(0.985);
}

.submit-btn.is-submitting {
  opacity: 0.9;
  cursor: progress;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(31, 61, 43, 0.22);
}

.response-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--taupe);
}

.about-hero {
  padding-top: 6.9rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.1rem;
  align-items: center;
}

.about-lead {
  max-width: 58ch;
  font-size: 1.03rem;
}

.about-hero-image,
.founder-image {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(74, 59, 47, 0.12);
  box-shadow: var(--shadow-lift);
  background: linear-gradient(145deg, rgba(245, 239, 230, 0.85), rgba(242, 247, 244, 0.7));
}

.about-hero-image img,
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

#studio-story {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(245, 239, 230, 0.58));
}

.about-studio .section-heading h2 {
  max-width: 18ch;
}

#founder {
  background: linear-gradient(162deg, rgba(242, 247, 244, 0.73), rgba(245, 239, 230, 0.45));
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.founder-copy p + p {
  margin-top: 0.85rem;
}

#values {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(245, 239, 230, 0.55));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.56));
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(47, 93, 68, 0.3);
}

.value-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding-top: 5.5rem;
  }

  .about-hero-image img,
  .founder-image img {
    min-height: 320px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   Portfolio Feature + Case Study
   ===================================== */
.project-feature-link {
  display: block;
  text-decoration: none;
}

.project-feature-media-link {
  display: block;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}

.project-feature-stack {
  display: grid;
  gap: 0.8rem;
}

.project-feature-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.85rem;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 93, 68, 0.16);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 230, 0.56));
  box-shadow: var(--shadow-soft);
  padding: 0.72rem;
  max-width: 1020px;
  margin-inline: auto;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.project-feature-card:hover,
.project-feature-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(194, 168, 120, 0.5);
}

.project-feature-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  position: relative;
  z-index: 1;
}

.project-feature-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 360ms ease, filter 360ms ease;
}

.project-feature-media-link:hover .project-feature-media img,
.project-feature-media-link:focus-visible .project-feature-media img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.project-feature-media-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 92%;
  height: 86%;
  left: 4%;
  top: 8%;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(111, 154, 141, 0.3), rgba(47, 93, 68, 0.2));
  filter: blur(0.3px);
  transition: transform 260ms ease, opacity 260ms ease;
}

.project-feature-media-link:hover::before,
.project-feature-media-link:focus-visible::before {
  transform: translateY(-2px) scale(1.01);
}

.project-feature-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.38rem;
}

.project-feature-content > p {
  max-width: 52ch;
}

.project-feature-tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.project-feature-tags li {
  border-radius: 999px;
  border: 1px solid rgba(47, 93, 68, 0.2);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.32rem 0.62rem;
  font-size: 0.77rem;
  color: var(--pine-forest);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.project-feature-cta {
  margin-top: 0.95rem;
  color: var(--pine-deep);
  font-weight: 600;
}

.project-feature-cta a,
.project-title-link {
  color: inherit;
  text-decoration: none;
}

.project-feature-cta span {
  display: inline-block;
  transition: transform 220ms ease;
}

.project-feature-card:hover .project-feature-cta span,
.project-feature-card:focus-within .project-feature-cta span {
  transform: translateX(5px);
}

/* =====================================
   Editorial Vibe Pass (inspired direction)
   ===================================== */
.work-page {
  background:
    radial-gradient(900px 320px at 8% 4%, rgba(111, 154, 141, 0.12), transparent 68%),
    radial-gradient(980px 420px at 92% 2%, rgba(230, 216, 195, 0.2), transparent 70%),
    linear-gradient(165deg, #fcfaf6 0%, #f7f3eb 46%, #f5f5f1 100%);
}

.work-page .bg-aurora {
  opacity: 0.22;
  filter: blur(24px);
}

.work-page .project-feature-stack {
  gap: clamp(2.1rem, 4.2vw, 3.4rem);
}

.work-page .project-feature-card {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(1rem, 2.6vw, 1.8rem);
  max-width: 960px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.work-page .project-feature-card:hover,
.work-page .project-feature-card:focus-within {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.work-page .project-feature-card:nth-child(even) .project-feature-media-link {
  order: 2;
}

.work-page .project-feature-card:nth-child(even) .project-feature-content {
  order: 1;
}

.work-page .project-feature-card:nth-child(odd) .project-feature-media-link {
  order: 1;
}

.work-page .project-feature-card:nth-child(odd) .project-feature-content {
  order: 2;
}

.work-page .project-feature-media {
  border-radius: 16px;
}

.work-page .project-feature-content h3 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.home-featured-work .project-feature-stack {
  gap: clamp(1.7rem, 3.2vw, 2.6rem);
}

.home-featured-work .project-feature-card {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.95rem, 2.2vw, 1.55rem);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.home-featured-work .project-feature-card:nth-child(even) .project-feature-media-link {
  order: 2;
}

.home-featured-work .project-feature-card:nth-child(even) .project-feature-content {
  order: 1;
}

.home-featured-work .project-feature-card:nth-child(odd) .project-feature-media-link {
  order: 1;
}

.home-featured-work .project-feature-card:nth-child(odd) .project-feature-content {
  order: 2;
}

.home-featured-work .project-feature-media {
  border-radius: 16px;
}

.home-featured-work .project-feature-content h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.featured-work-more {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.services-page .service-grid {
  margin-top: 2.2rem;
  gap: 1rem;
}

.services-page .service-card {
  padding: 1.6rem;
  border-color: rgba(47, 93, 68, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(31, 61, 43, 0.06);
}

.services-page .services-transition {
  padding-top: 4.8rem;
}

.services-page .services-detail-wrap {
  background: transparent;
}

.services-page .service-detail {
  border-color: rgba(47, 93, 68, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 61, 43, 0.07);
}

.services-page .service-detail-card {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(47, 93, 68, 0.1);
  box-shadow: none;
}

.services-page .addons-list li,
.services-page .faq-item {
  background: rgba(255, 255, 255, 0.78);
}

.services-page .services-process {
  background: linear-gradient(160deg, #3b7b5a 0%, #31694c 100%);
}

/* =====================================
   Speaking Page
   ===================================== */
.speaking-page #speaking-intro {
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.42), rgba(245, 239, 230, 0.58));
}

.speaking-page #talk-topics {
  background: linear-gradient(165deg, rgba(242, 247, 244, 0.74), rgba(245, 239, 230, 0.48));
}

.speaking-page #formats {
  background:
    radial-gradient(760px 320px at 85% 15%, rgba(194, 168, 120, 0.14), transparent 70%),
    linear-gradient(152deg, var(--pine-night) 0%, var(--pine-deep) 68%, #153226 100%);
}

.speaking-page #formats .kicker,
.speaking-page #formats h2,
.speaking-page #formats p {
  color: rgba(245, 239, 230, 0.95);
}

.speaking-page #formats .kicker::before {
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.95), rgba(207, 227, 220, 0.35));
}

.speaking-page #formats .section-heading::after {
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.95), rgba(255, 255, 255, 0.24));
}

.speaking-page #why-book-emery {
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.46), rgba(245, 239, 230, 0.55));
}

.speaking-hero-actions {
  justify-content: center;
}

.speaking-intro-panel {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 93, 68, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 230, 0.62));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 2.3vw, 2rem);
}

.speaking-intro-panel h2 {
  margin-bottom: 0.72rem;
}

.speaking-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.speaking-topic-grid .service-card {
  min-height: 100%;
}

.speaking-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.speaking-page #formats .value-card {
  min-height: 100%;
  border-color: rgba(194, 168, 120, 0.36);
  background: linear-gradient(150deg, rgba(20, 45, 32, 0.72), rgba(31, 61, 43, 0.66));
  box-shadow: 0 16px 32px rgba(13, 28, 21, 0.28);
}

.speaking-page #formats .value-card h3 {
  color: #f5efe6;
}

.speaking-page #formats .value-card p {
  color: rgba(245, 239, 230, 0.82);
}

.speaking-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.speaking-feature {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.58));
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
  min-height: 100%;
  display: flex;
  align-items: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.speaking-feature h3 {
  font-size: 1.32rem;
  line-height: 1.28;
}

.speaking-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(47, 93, 68, 0.3);
}

@media (max-width: 1024px) {
  .speaking-topic-grid,
  .speaking-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .speaking-topic-grid,
  .speaking-format-grid,
  .speaking-feature-grid {
    grid-template-columns: 1fr;
  }

  .speaking-intro-panel {
    border-radius: var(--radius-lg);
  }
}

/* =====================================
   Process Page (premium editorial layout)
   ===================================== */
.process-page .process-divider {
  padding: 0.25rem 0 0;
}

.process-page .process-divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 93, 68, 0.28), rgba(194, 168, 120, 0.4), transparent);
}

.process-page #process {
  background: transparent;
}

.process-page .process-journey {
  padding-top: 3.4rem;
}

.process-page .process-journey .section-heading {
  margin-bottom: 1.45rem;
}

.process-page .process-flow {
  position: relative;
}

.process-page .process-flow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(47, 93, 68, 0.2), rgba(194, 168, 120, 0.34), rgba(47, 93, 68, 0.14));
}

.process-page .process-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.process-page .process-step-card {
  position: relative;
  margin-left: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 93, 68, 0.14);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.56));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 2.2vw, 1.65rem);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-page .process-step-card::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 1.45rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-gold), var(--pine-sage));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.85);
}

.process-page .process-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 93, 68, 0.26);
  box-shadow: 0 14px 32px rgba(31, 61, 43, 0.12);
}

.process-page .process-step-head {
  display: flex;
  align-items: baseline;
  gap: 0.62rem;
  margin-bottom: 0.5rem;
}

.process-page .process-step-no {
  font-size: 0.78rem;
  letter-spacing: 1.55px;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
}

.process-page .process-step-head h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0;
}

.process-page .process-step-intro {
  margin-bottom: 0.7rem;
  color: var(--text-light);
}

.process-page .process-detail-list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.process-page .process-detail-list li {
  position: relative;
  padding-left: 0.95rem;
}

.process-page .process-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pine-forest);
  transform: translateY(-50%);
}

.process-page .process-outcome {
  font-size: 0.96rem;
  color: var(--pine-deep);
}

.process-page .process-outcome span {
  font-weight: 700;
}

.process-page .process-cta-block {
  padding-top: 2.1rem;
}

.process-page .site-footer {
  margin-top: 2.2rem;
  padding-top: 2.8rem;
}

.case-study-page .inner-hero-copy {
  max-width: 900px;
}

.case-study-page {
  /* 8px rhythm system for case-study consistency */
  --case-space-1: 0.5rem;   /* 8px */
  --case-space-2: 1rem;     /* 16px */
  --case-space-3: 1.5rem;   /* 24px */
  --case-space-4: 2rem;     /* 32px */
  --case-space-5: 3rem;     /* 48px */
  --case-space-6: 4rem;     /* 64px */
}

.case-study-page .section-pad {
  padding: clamp(4.2rem, 7vw, 5.4rem) 0;
}

.case-study-page .section-heading {
  margin-bottom: var(--case-space-4);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--case-space-4);
  align-items: center;
}

.case-hero-grid > .reveal:first-child {
  max-width: 560px;
}

.case-subtitle {
  font-size: 1.05rem;
  color: var(--pine-forest);
  margin-bottom: var(--case-space-1);
}

.case-hero-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(194, 168, 120, 0.3);
  box-shadow: var(--shadow-lift);
  background: #101415;
}

.case-hero-image img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}

.case-hero-image-compact {
  max-width: min(100%, 840px);
  margin-inline: auto;
  padding: clamp(0.7rem, 1.5vw, 1.15rem);
}

.case-hero-image-compact img {
  width: min(94%, 760px);
  margin-inline: auto;
}

.case-sections {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(245, 239, 230, 0.55));
}

.case-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--case-space-3);
}

.case-summary-card,
.case-feature-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 93, 68, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.52));
  box-shadow: var(--shadow-soft);
  padding: var(--case-space-3);
}

.case-summary-card h3,
.case-feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.case-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--case-space-2);
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--case-space-2);
  align-items: start;
}

.case-gallery-vertical {
  display: grid;
  gap: var(--case-space-2);
  max-width: 980px;
}

.case-gallery-intro {
  max-width: 760px;
  margin: 0 0 var(--case-space-4);
  color: var(--text-light);
}

.case-screens {
  display: grid;
  gap: var(--case-space-5);
}

.case-screen {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: clamp(1.3rem, 2.2vw, 2.2rem);
}

.case-screen-copy {
  max-width: 380px;
}

.case-screen-index {
  font-size: 0.74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.32rem;
}

.case-screen-copy h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.case-screen-copy p {
  color: var(--text-light);
}

.case-shot {
  margin: 0;
  display: grid;
  gap: var(--case-space-1);
}

.case-gallery-grid .case-shot:first-child {
  grid-column: 1 / -1;
}

.case-shot img {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: transparent;
  cursor: zoom-in;
  box-shadow: 0 10px 24px rgba(18, 26, 22, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.case-shot:hover img {
  transform: scale(1.03);
  box-shadow: 0 16px 30px rgba(18, 26, 22, 0.22);
  filter: brightness(1.02);
}

.case-shot figcaption {
  font-size: 0.71rem;
  color: rgba(74, 59, 47, 0.68);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0 var(--case-space-1) 0;
}

.case-shot-phone {
  max-width: clamp(300px, 35vw, 380px);
  margin-inline: auto;
}

.case-shot-phone img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  border: 1px solid rgba(74, 59, 47, 0.22);
  box-shadow: 0 14px 34px rgba(18, 26, 22, 0.22);
}

.case-shot-phone figcaption {
  text-align: center;
}

.case-shot-fill {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--taupe);
  background: linear-gradient(150deg, rgba(245, 239, 230, 0.68), rgba(207, 227, 220, 0.4));
  border: 1px dashed rgba(139, 111, 90, 0.45);
}

.case-notes-list {
  list-style: none;
  display: grid;
  gap: var(--case-space-1);
  max-width: 860px;
}

.case-notes-list li {
  border-radius: 12px;
  border: 1px solid rgba(47, 93, 68, 0.12);
  background: rgba(255, 255, 255, 0.66);
  padding: var(--case-space-2) var(--case-space-3);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 12, 0.84);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 60;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .project-feature-card,
  .case-hero-grid,
  .case-summary-grid {
    grid-template-columns: 1fr;
  }

  .case-screen {
    grid-template-columns: 1fr;
    gap: var(--case-space-2);
  }

  .case-screen-copy {
    max-width: 680px;
  }

  .case-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-gallery-grid .case-shot:first-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .project-feature-card {
    padding: 0.68rem;
  }

  .project-feature-content h3 {
    font-size: 1.55rem;
  }

  .case-feature-grid,
  .case-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   May 2026 Polish Pass
   ===================================== */
body {
  line-height: 1.78;
}

.section-pad {
  padding: clamp(5.6rem, 9vw, 8rem) 0;
}

.nav-links {
  gap: 1.6rem;
}

.hero {
  padding-top: clamp(7.4rem, 11vw, 10rem);
  padding-bottom: clamp(5.2rem, 9vw, 7.4rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1.7rem;
}

.hero-copy p {
  margin-top: 0.4rem;
}

.deploy-test-banner {
  display: inline-block;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #b20000;
  background: #ffdede;
  border: 2px solid #b20000;
  border-radius: 10px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-visual {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 93, 68, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 239, 230, 0.55));
  box-shadow: var(--shadow-lift);
  padding: clamp(1rem, 2vw, 1.45rem);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.hero .hero-actions-home {
  justify-content: flex-start !important;
  margin-top: 2rem;
}

.home-featured-work {
  background: #ffffff;
}

#process.process-home {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.55), rgba(242, 247, 244, 0.78));
}

#process.process-home .kicker,
#process.process-home h2,
#process.process-home p,
#process.process-home h3 {
  color: var(--text-dark);
}

#process.process-home .kicker::before,
#process.process-home .section-heading::after {
  background: linear-gradient(90deg, rgba(194, 168, 120, 0.9), rgba(47, 93, 68, 0.3));
}

.services-home .service-list {
  border-top: 1px solid rgba(47, 93, 68, 0.16);
}

.services-home .service-list-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.6rem 0.45rem;
  border-bottom: 1px solid rgba(47, 93, 68, 0.14);
  transition: background 220ms ease, padding-left 220ms ease;
}

.services-home .service-list-item:hover {
  background: rgba(255, 255, 255, 0.54);
  padding-left: 0.9rem;
}

.service-index {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.02rem;
  margin-top: 0.3rem;
}

.project-feature-stack-home {
  gap: clamp(2rem, 3.8vw, 3.1rem);
}

.home-featured-work .project-feature-card {
  max-width: 1120px;
  gap: clamp(1.2rem, 3.2vw, 2.2rem);
}

.home-featured-work .project-feature-media img {
  min-height: 280px;
  object-fit: cover;
}

.process-steps-simple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-step-simple {
  border: 1px solid rgba(47, 93, 68, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
}

.process-step-simple .process-step-no {
  color: var(--accent-gold);
}

.services-pricing {
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  border: 1px solid rgba(47, 93, 68, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.55));
  box-shadow: var(--shadow-soft);
  padding: 1.45rem;
  display: grid;
  gap: 0.9rem;
}

.pricing-tier {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--pine-forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pricing-list li {
  position: relative;
  padding-left: 0.9rem;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pine-forest);
  transform: translateY(-50%);
}

.pricing-card-featured {
  border-color: rgba(194, 168, 120, 0.58);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(194, 168, 120, 0.55);
  background: rgba(194, 168, 120, 0.18);
  color: var(--cocoa);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 0.3rem 0.58rem;
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero .hero-actions-home {
    justify-content: center !important;
  }

  .process-steps-simple,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4.6rem;
  }

  .services-home .service-list-item {
    grid-template-columns: 52px 1fr;
  }

  .process-steps-simple,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-work .project-feature-media img {
    min-height: 220px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-wrap: balance;
  }

  .hero-copy p {
    font-size: 1.02rem;
    line-height: 1.76;
  }

  .hero .hero-actions-home {
    width: 100%;
    gap: 0.72rem;
  }

  .hero .hero-actions-home .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    padding: 0.72rem;
    border-radius: 20px;
  }
}

@media (min-width: 1400px) {
  .hero-layout {
    gap: clamp(3rem, 5vw, 5.2rem);
    align-items: center;
  }

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

  .hero-copy h1 {
    font-size: clamp(4rem, 4.4vw, 5.2rem);
    line-height: 1.04;
    max-width: 14.5ch;
  }

  .hero-copy p {
    max-width: 56ch;
    font-size: 1.14rem;
    line-height: 1.84;
  }

  .hero-visual {
    max-width: 620px;
    margin-left: auto;
  }
}

/* Contrast tune: homepage featured work + process readability */
.home-featured-work .work-tag {
  color: var(--pine-forest);
}

.home-featured-work .project-feature-content h3,
.home-featured-work .project-feature-content p,
.home-featured-work .project-feature-cta a {
  color: var(--text-dark);
}

.home-featured-work .project-feature-tags li {
  color: var(--pine-deep);
  border-color: rgba(47, 93, 68, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

#process.process-home .process-step-no {
  color: var(--accent-gold);
}

#process.process-home .process-step-simple p {
  color: var(--text-light);
}
