﻿@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #4b4c3b;
  --ink-dark: #2d3025;
  --forest: #303828;
  --logo-green: #606050;
  --soft-blue: #5d7f92;
  --brand-orange: #b87545;
  --paper: #f5e3cf;
  --paper-soft: #ead1b5;
  --oak: #b98255;
  --copper: #b87545;
  --taupe: #d6bfa6;
  --line: #81745c;
  --sage-blue: #587a8b;
  --walnut: #6f5d3d;
  --white: #fff8ee;
  --shadow: 0 24px 70px rgba(45, 48, 37, 0.28);
  --font-logo: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --font-script: "Allura", "Segoe Script", "Brush Script MT", cursive;
  --font-display: "Cormorant Garamond", "Bodoni 72", "Didot", Georgia, serif;
  --font-body: "Montserrat", "Aptos", "Segoe UI", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-dark);
  background:
    radial-gradient(circle at 12% 8%, rgba(195, 111, 67, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(71, 107, 120, 0.28), transparent 32rem),
    linear-gradient(135deg, #f0d2b4 0%, #e5b98f 38%, #6f5d3d 100%);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255,248,238,.22) 1px, transparent 1px),
    linear-gradient(rgba(255,248,238,.18) 1px, transparent 1px);
  background-size: 38px 38px;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(48, 56, 40, 0.9);
  border-bottom: 1px solid rgba(255,248,238,0.18);
  backdrop-filter: blur(12px);
}
.brand img { width: 86px; height: 86px; object-fit: contain; }
nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); font-size: 0.92rem; }
nav a { color: var(--white); text-decoration: none; font-weight: 700; }
.nav-button { padding: 10px 16px; border: 1px solid rgba(255,248,238,0.42); background: var(--copper); color: var(--white);  border-radius: var(--radius-sm); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 115px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(36px, 6vw, 74px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(45,48,37,0.94) 0%, rgba(48,56,40,0.86) 48%, rgba(75,76,59,0.42) 100%),
    url("assets/info-banner.png") center / cover;
}
.hero::after {
  content: "";
  position: absolute;
  width: 42vw;
  min-width: 320px;
  aspect-ratio: 1;
  right: -12vw;
  top: 7%;
  border: 1px solid rgba(255,248,238,0.32);
  background: linear-gradient(135deg, rgba(255,248,238,0.08), rgba(195,111,67,0.12));
  box-shadow: 0 40px 120px rgba(0,0,0,0.28);
  transform: rotate(12deg);
}
.hero-copy { position: relative; z-index: 1; max-width: 760px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  max-width: 820px;
  padding: 8px 12px;
  color: #fff2df;
  background: rgba(23, 32, 24, 0.48);
  border-left: 3px solid var(--copper);
  text-shadow: 0 1px 8px rgba(0,0,0,0.34);
}

h1, h2, h3 { margin: 0; line-height: 1.02; color: var(--ink); font-family: var(--font-display); font-weight: 650; letter-spacing: 0.005em; }
h1 { color: var(--white); font-size: clamp(3rem, 8vw, 7.2rem); max-width: 900px; text-shadow: 0 10px 36px rgba(0,0,0,0.25); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.45rem; }
.intro { max-width: 650px; margin: 24px 0 0; color: rgba(255,248,238,0.9); font-size: clamp(1.05rem, 1.5vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
 border-radius: var(--radius-sm); }
.primary { background: var(--copper); color: var(--white); border-color: var(--copper); box-shadow: 0 12px 26px rgba(195,111,67,0.26); }
.secondary { background: rgba(255,248,238,0.1); color: var(--white); border-color: rgba(255,248,238,0.46); }
.hero-art {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px;
  background: rgba(255,248,238,0.9);
  border: 1px solid rgba(255,248,238,0.5);
  box-shadow: 0 38px 90px rgba(0,0,0,0.36), -18px 18px 0 rgba(255,248,238,0.1);
  transform: rotate(4.2deg) translateY(6px);
 border-radius: var(--radius-md); }
.hero-art img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; filter: saturate(1.12) contrast(1.04); }

.hero-art::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(255,248,238,0.24);
  transform: rotate(-3deg) translate(10px, 8px);
}

.website-preview {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #172018;
  border-color: rgba(255,248,238,0.36);
 border-radius: var(--radius-md); }
.browser-bar {
  display: flex;
  gap: 8px;
  padding: 13px 14px;
  background: rgba(255,248,238,0.12);
  border-bottom: 1px solid rgba(255,248,238,0.18);
}
.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e4a06d;
}
.browser-bar span:nth-child(2) { background: #d6bfa6; }
.browser-bar span:nth-child(3) { background: #476b78; }
.preview-screen {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,248,238,0.95), rgba(234,209,181,0.88)),
    radial-gradient(circle at top right, rgba(195,111,67,0.36), transparent 18rem);
 border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  opacity: 0;
  transform: translateX(22px) scale(0.98);
  animation: mockupSlide 12s infinite;
}
.slide-one { animation-delay: 0s; }
.slide-two { animation-delay: 4s; }
.slide-three { animation-delay: 8s; }
@keyframes mockupSlide {
  0%, 8% { opacity: 0; transform: translateX(22px) scale(0.98); }
  12%, 30% { opacity: 1; transform: translateX(0) scale(1); }
  36%, 100% { opacity: 0; transform: translateX(-18px) scale(0.98); }
}
.preview-line.short { width: 38%; background: var(--sage-blue); }
.shape-stack {
  position: relative;
  min-height: 138px;
}
.shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(75,76,59,0.28);
  box-shadow: 0 14px 34px rgba(75,76,59,0.12);
}
.shape.circle {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  left: 0;
  top: 8px;
  background: var(--ink);
}
.shape.arch {
  width: 140px;
  height: 120px;
  left: 96px;
  top: 0;
  border-radius: 70px 70px var(--radius-sm) var(--radius-sm);
  background: var(--oak);
}
.shape.block {
  width: 190px;
  height: 78px;
  left: 220px;
  top: 42px;
  background: rgba(71,107,120,0.34);
}
.feature-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.feature-tiles span {
  min-height: 108px;
  background: rgba(75,76,59,0.14);
  border: 1px solid rgba(75,76,59,0.22);
 border-radius: var(--radius-sm); }
.mini-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}
.mini-nav span {
  width: 52px;
  height: 8px;
  background: rgba(75,76,59,0.34);
}
.hero-shape {
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(75,76,59,0.86), rgba(71,107,120,0.74)),
    radial-gradient(circle at 74% 24%, rgba(195,111,67,0.62), transparent 8rem);
  border: 1px solid rgba(75,76,59,0.24);
 border-radius: var(--radius-md); }
.preview-panels.compact span { min-height: 64px; }
.slide-dots {
  position: absolute;
  left: 34px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(75,76,59,0.38);
  animation: dotPulse 12s infinite;
}
.slide-dots span:nth-child(2) { animation-delay: 4s; }
.slide-dots span:nth-child(3) { animation-delay: 8s; }
@keyframes dotPulse {
  0%, 10%, 36%, 100% { background: rgba(75,76,59,0.38); transform: scale(1); }
  12%, 30% { background: var(--copper); transform: scale(1.35); }
}
@media (prefers-reduced-motion: reduce) {
  .slide, .slide-dots span { animation: none; }
  .slide-one { opacity: 1; transform: translate(-50%, -50%); }
}

.preview-logo {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(75,76,59,0.22);
 border-radius: var(--radius-sm); }
.preview-logo img { width: 100%; height: 100%; object-fit: contain; }
.preview-line {
  height: 18px;
  background: var(--ink);
}
.preview-line.long { width: 82%; }
.preview-line.medium { width: 56%; background: var(--copper); }
.preview-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.preview-panels span {
  min-height: 86px;
  background: rgba(75,76,59,0.16);
  border: 1px solid rgba(75,76,59,0.22);
 border-radius: var(--radius-sm); }
.text-grid article {
  position: relative;
  min-height: 286px;
  padding: 34px 32px 52px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255,250,241,0.98), rgba(237,222,203,0.97));
  color: var(--ink-dark);
  border: 1px solid rgba(255,248,238,0.58);
  border-radius: 26px 26px 18px 18px;
  box-shadow:
    0 28px 62px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -28px 60px rgba(110,93,62,0.08);
}
.text-grid article::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(75,76,59,0.13);
  border-radius: 18px 18px 13px 13px;
  pointer-events: none;
}
.text-grid article::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 46px;
  height: 46px;
  background:
    linear-gradient(135deg, rgba(237,222,203,0.98), rgba(255,250,241,0.98));
  border-right: 1px solid rgba(255,248,238,0.58);
  border-bottom: 1px solid rgba(255,248,238,0.58);
  box-shadow: 14px 18px 28px rgba(0,0,0,0.12);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.text-grid article h3 {
  position: relative;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.1vw, 2.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}
.text-grid article h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--copper), rgba(195,111,67,0));
}
.text-grid article p {
  position: relative;
  max-width: 31rem;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.72;
}.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: rgba(255,248,238,0.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.info-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 70px;
  padding: 18px 16px;
  background: rgba(48,56,40,0.94);
  text-align: center;
  font-weight: 800;
  color: var(--white);
  border-inline: 1px solid rgba(255,248,238,0.12);
}
.info-strip strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}.section { padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px); background: rgba(255,248,238,0.86); }
.services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,248,238,0.9), rgba(245,227,207,0.9)),
    radial-gradient(circle at 80% 8%, rgba(195,111,67,0.12), transparent 24rem);
}
.services::before,
.services::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}
.services::before {
  width: min(32vw, 390px);
  aspect-ratio: 560 / 475;
  top: -28px;
  right: -42px;
  opacity: 0.54;
  background-image: url("assets/botanical-top-right.png");
}
.services::after {
  width: min(28vw, 330px);
  aspect-ratio: 560 / 454;
  left: -58px;
  bottom: -92px;
  opacity: 0.42;
  background-image: url("assets/botanical-bottom-left.png");
}
.services .section-heading,
.services .service-grid {
  position: relative;
  z-index: 1;
}
.section-heading { display: grid; grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr); gap: clamp(22px, 4vw, 58px); align-items: end; margin-bottom: 34px; }
.section-heading.compact { display: block; max-width: 780px; }
.service-grid, .work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-height: 330px;
  padding: 38px 34px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255,248,238,0.34);
  box-shadow:
    0 26px 58px rgba(45,48,37,0.24),
    inset 0 1px 0 rgba(255,248,238,0.28),
    inset 0 -34px 70px rgba(0,0,0,0.12);
 border-radius: var(--radius-md); }
.service-card { counter-increment: service; }
.service-grid { counter-reset: service; }
.service-card > * { position: relative; z-index: 1; }
.service-card::before {
  content: "0" counter(service);
  position: absolute;
  inset: auto 24px 22px auto;
  width: auto;
  height: auto;
  border: 0;
  color: rgba(255,248,238,0.2);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: rgba(255,248,238,0.18);
  filter: blur(1px);
  pointer-events: none;
}.service-card:nth-child(1) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.24), transparent 10rem),
    linear-gradient(152deg, rgba(112,113,92,0.98), rgba(59,68,48,0.98) 58%, rgba(38,47,34,0.98));
}
.service-card:nth-child(2) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.24), transparent 10rem),
    linear-gradient(152deg, rgba(86,124,140,0.98), rgba(52,84,96,0.98) 58%, rgba(37,58,67,0.98));
}
.service-card:nth-child(3) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.26), transparent 10rem),
    linear-gradient(152deg, rgba(207,123,73,0.98), rgba(156,92,51,0.98) 58%, rgba(112,70,40,0.98));
}
.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 92%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 0.92;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
.service-card h3::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 20px;
  background: rgba(255,248,238,0.62);
}
.service-card p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  max-width: 34rem;
  color: rgba(255,248,238,0.92);
  font-size: clamp(1.12rem, 1.28vw, 1.24rem);
  line-height: 1.72;
}.work {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(48,56,40,0.96), rgba(92,81,55,0.94)),
    linear-gradient(135deg, var(--forest), #5c5137);
  border-block: 1px solid rgba(255,248,238,0.22);
  color: var(--white);
}
.work::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  left: 62%;
  top: 50%;
  background: url("assets/logo-transparent.png") center / contain no-repeat;
  opacity: 0.22;
  filter: sepia(0.2) saturate(0.85);
  transform: translate(-50%, -50%);
}
.work .section-heading,
.work .work-grid {
  position: relative;
  z-index: 1;
}
.work h2 { color: var(--white); }
.work .eyebrow { color: #e4a06d; }





.process-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 32px 0 0; padding: 0; background: transparent; }
.process-list li { display: grid; gap: 12px; padding: 26px; background: var(--forest); color: var(--white); border: 1px solid rgba(255,248,238,0.2);  border-radius: var(--radius-md); }
.process-list strong { color: #f1c39c; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 6vw, 80px);
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(48,56,40,0.95), rgba(71,107,120,0.9)),
    url("assets/brand-contact-bg.png") center / cover;
  color: var(--paper);
  box-shadow: 0 38px 90px rgba(0,0,0,0.36), -18px 18px 0 rgba(255,248,238,0.1);
 border-radius: var(--radius-lg); }
.contact h2, .contact .eyebrow { color: var(--paper); }

.contact p { max-width: 620px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.contact-actions .secondary { color: var(--paper); border-color: rgba(255,248,238,0.52); }
.footer-links { font-size: 0.94rem; font-weight: 800; }
.footer-links a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(255,248,238,0.42); }
.footer-links a:hover { border-bottom-color: var(--copper); }
.contact .primary { background: var(--paper); color: var(--ink); border-color: var(--paper); flex: 0 0 auto; box-shadow: none; }
.site-footer { display: grid; place-items: center; gap: 12px; padding: 44px 18px 54px; text-align: center; color: var(--white); background: var(--forest); border-top: 1px solid rgba(255,248,238,0.18); }
.site-footer img { width: 116px; }
.site-footer p { margin: 0; font-weight: 800; }
.site-footer .copyright { font-size: 0.86rem; font-weight: 600; opacity: 0.72; }

@media (max-width: 860px) {
  .site-header { align-items: flex-start; }
  .brand img { width: 70px; height: 70px; }
  nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { max-width: 520px; transform: translate(-50%, -50%);  border-radius: var(--radius-md); }
  .section-heading, .service-grid, .work-grid, .process-list, .info-strip { grid-template-columns: 1fr;  border-radius: var(--radius-sm); overflow: hidden; }
  .contact { align-items: stretch; flex-direction: column;  border-radius: var(--radius-lg); }
}

@media (max-width: 520px) {
  .site-header { position: static; flex-direction: column; }
  nav { justify-content: flex-start; }
  h1 { font-size: 3.1rem; }
  .work-grid img { height: 280px; }
}

/* Consistent text system */
body {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: clamp(1.03rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-weight: 700;
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.75rem, 5vw, 5.35rem);
  font-weight: 700;
  line-height: 0.93;
}

h3 {
  font-size: clamp(1.8rem, 2.15vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
}

.eyebrow,
nav,
.button,
.info-strip span,
.footer-links,
.site-footer p {
  font-family: var(--font-body);
  letter-spacing: 0.055em;
}

.eyebrow {
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.35;
}

nav,
.button,
.info-strip span {
  font-size: clamp(0.96rem, 1vw, 1.06rem);
}

.button,
.nav-button {
  font-weight: 800;
  text-transform: none;
}

.intro {
  max-width: 720px;
  font-size: clamp(1.2rem, 1.55vw, 1.42rem);
  line-height: 1.7;
  font-weight: 500;
}

.service-card h3,
.text-grid article h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.008em;
}

.service-card h3 {
  font-size: clamp(2.75rem, 3.55vw, 3.85rem);
  line-height: 0.9;
}

.service-card p {
  font-size: clamp(1.2rem, 1.32vw, 1.34rem);
  line-height: 1.72;
  font-weight: 500;
}

.text-grid article p {
  font-size: clamp(1.08rem, 1.16vw, 1.2rem);
  line-height: 1.74;
}

.contact p {
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
}

.site-footer p {
  letter-spacing: 0.025em;
}

/* Branded hero title treatment */
.hero-title {
  position: relative;
  display: grid;
  gap: 0.05em;
  width: fit-content;
  max-width: 920px;
  color: #fff8ee;
  font-size: clamp(3.5rem, 8.3vw, 7.65rem);
  line-height: 0.84;
  letter-spacing: 0.018em;
  text-shadow:
    0 2px 0 rgba(195,111,67,0.16),
    0 16px 36px rgba(0,0,0,0.34);
}

.hero-title::before,
.hero-title::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-title::before {
  width: clamp(82px, 11vw, 132px);
  height: 2px;
  left: 0.04em;
  bottom: -0.18em;
  background: linear-gradient(90deg, #e4a06d, rgba(228,160,109,0));
}

.hero-title::after {
  width: 0.18em;
  height: 0.18em;
  right: -0.2em;
  top: 0.1em;
  background: #e4a06d;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 14px rgba(228,160,109,0.55));
}

.title-main,
.title-sub {
  display: block;
}

.title-main {
  font-variant-ligatures: discretionary-ligatures;
}

.title-amp {
  display: inline-block;
  margin: 0 -0.02em;
  color: #e8b17e;
  font-size: 0.78em;
  font-style: italic;
  transform: translateY(-0.03em);
  text-shadow: 0 10px 28px rgba(195,111,67,0.3);
}

.title-sub {
  padding-left: 0.04em;
  color: rgba(255,248,238,0.94);
  font-size: 0.74em;
  letter-spacing: 0.035em;
}

@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(3.15rem, 18vw, 4.6rem);
  }

  .hero-title::after {
    right: 0;
    top: -0.2em;
  }
}

/* Make the services headline wider and less vertical */
.services .section-heading {
  display: block;
  max-width: 1120px;
  margin-bottom: 42px;
}

.services h2 {
  max-width: 1120px;
  font-size: clamp(2.65rem, 4.25vw, 4.8rem);
  line-height: 0.96;
}

@media (max-width: 760px) {
  .services h2 {
    font-size: clamp(2.45rem, 11vw, 3.9rem);
  }
}

/* Restore hero background depth */
.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(228,160,109,0.22), transparent 22rem),
    radial-gradient(circle at 78% 18%, rgba(71,107,120,0.18), transparent 28rem),
    linear-gradient(90deg, rgba(34,42,31,0.9) 0%, rgba(48,56,40,0.74) 44%, rgba(75,76,59,0.38) 100%),
    url("assets/info-banner.png") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,248,238,0.04), rgba(45,48,37,0.16)),
    radial-gradient(circle at 52% 46%, transparent 0 22rem, rgba(20,25,18,0.22) 46rem);
  mix-blend-mode: multiply;
}

.hero-copy,
.hero-art {
  z-index: 2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -44px -38px -38px;
  background: radial-gradient(ellipse at 35% 42%, rgba(31,39,29,0.55), rgba(31,39,29,0.22) 48%, transparent 72%);
  filter: blur(2px);
}

/* Two-card services layout */
.service-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

.service-grid-two .service-card {
  min-height: 360px;
  padding: clamp(34px, 4vw, 52px);
}

.service-grid-two .service-card::before {
  content: none;
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.25), transparent 10rem),
    linear-gradient(152deg, rgba(86,124,140,0.98), rgba(52,84,96,0.98) 58%, rgba(37,58,67,0.98));
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.26), transparent 10rem),
    linear-gradient(152deg, rgba(207,123,73,0.98), rgba(156,92,51,0.98) 58%, rgba(112,70,40,0.98));
}

@media (max-width: 860px) {
  .service-grid-two {
    grid-template-columns: 1fr;
  }
}

/* Flyer-inspired approach cards */
.work {
  padding-top: clamp(64px, 7vw, 98px);
  padding-bottom: clamp(78px, 8vw, 116px);
  background:
    radial-gradient(circle at 15% 0%, rgba(228,160,109,0.13), transparent 25rem),
    linear-gradient(135deg, rgba(37,47,34,0.98), rgba(74,72,48,0.96));
}

.work::before {
  left: 70%;
  opacity: 0.18;
}

.work .section-heading.compact {
  max-width: 880px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.work h2 {
  max-width: 860px;
  color: #fff8ee;
  text-shadow: 0 18px 46px rgba(0,0,0,0.24);
}

.approach-cards {
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
}

.approach-cards article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 340px;
  padding: 34px clamp(26px, 3vw, 38px) 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,250,241,0.98), rgba(242,229,211,0.97)),
    radial-gradient(circle at 88% 0%, rgba(228,160,109,0.14), transparent 11rem);
  color: #283224;
  border: 1px solid rgba(190,151,98,0.58);
  border-radius: 24px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.approach-cards article::before {
  inset: 14px;
  border-color: rgba(174,133,78,0.32);
  border-radius: 18px;
}

.approach-cards article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  left: auto;
  width: 150px;
  height: 150px;
  z-index: 0;
  border: 1px solid rgba(174,133,78,0.18);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.card-emblem {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #fff8ee;
  background: linear-gradient(135deg, #59614f, #303828);
  border: 1px solid rgba(190,151,98,0.72);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(48,56,40,0.22);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.approach-cards article:nth-child(2) .card-emblem {
  background: linear-gradient(135deg, #c47c46, #8f572f);
}

.approach-cards article:nth-child(3) .card-emblem {
  background: linear-gradient(135deg, #507080, #2f5360);
}

.card-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #a8663c;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.approach-cards article h3 {
  position: relative;
  z-index: 1;
  max-width: 12rem;
  color: #303828;
  font-size: clamp(2.15rem, 2.75vw, 3rem);
  line-height: 0.92;
}

.approach-cards article h3::after {
  width: 92px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(166,102,60,0.95), rgba(166,102,60,0));
}

.approach-cards article p:not(.card-kicker) {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin-top: 22px;
  color: #20251d;
  font-size: clamp(1.08rem, 1.18vw, 1.2rem);
  line-height: 1.72;
  font-weight: 500;
}

@media (max-width: 860px) {
  .approach-cards article {
    min-height: auto;
  }
}

/* Lantern log hero image */
.hero {
  min-height: calc(100vh - 115px);
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.22fr);
  background:
    radial-gradient(circle at 18% 38%, rgba(255,248,238,0.09), transparent 20rem),
    linear-gradient(90deg, rgba(18,24,18,0.76) 0%, rgba(37,47,34,0.56) 34%, rgba(20,24,16,0.08) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.34)),
    url("assets/hero-lantern-log.png") center / cover;
}

.hero::before {
  background:
    radial-gradient(circle at 78% 50%, transparent 0 18rem, rgba(0,0,0,0.08) 34rem),
    linear-gradient(90deg, rgba(0,0,0,0.12), transparent 56%);
  mix-blend-mode: multiply;
}

.hero::after {
  display: none;
}

.hero-copy {
  max-width: 780px;
  align-self: center;
}

.hero-copy::before {
  inset: -44px -58px -46px -44px;
  background: radial-gradient(ellipse at 30% 45%, rgba(12,18,13,0.66), rgba(12,18,13,0.35) 44%, transparent 72%);
}

.hero .hero-art {
  display: none;
}

.hero-title {
  max-width: 850px;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    background-position: 58% center;
  }
}

/* Typography closer to Lantern & Oak content */
body {
  font-family: var(--font-body);
}

.hero-title .title-main,
.brand-wordmark,
.site-footer p:first-of-type {
  font-family: var(--font-logo);
}

.hero-title .title-main {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
}

.title-amp {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: none;
}

.title-sub,
.eyebrow,
nav,
.button,
.info-strip span,
.card-kicker,
.footer-links,
.site-footer .copyright {
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2,
.service-card h3,
.approach-cards article h3,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.015em;
}

.service-card h3,
.approach-cards article h3 {
  font-weight: 700;
}

p,
.service-card p,
.approach-cards article p:not(.card-kicker),
.contact p {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.005em;
}

.intro {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.75vw, 1.62rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.button,
.nav-button,
nav a {
  font-size: 0.86rem;
}

/* Slim wordmark header */
.site-header {
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(48,56,40,0.92);
}

.brand {
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff8ee;
}

.brand-lantern {
  width: 34px;
  height: 48px;
  color: #e4a06d;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.24));
}

.brand-lantern path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-wordmark span {
  display: grid;
  gap: 2px;
}

.brand-wordmark strong {
  color: #fff8ee;
  font-family: var(--font-logo);
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wordmark small {
  color: rgba(228,160,109,0.92);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
  }

  .brand-lantern {
    width: 30px;
    height: 42px;
  }

  .brand-wordmark strong {
    font-size: 1rem;
  }

  .brand-wordmark small {
    font-size: 0.58rem;
  }
}

/* Refined small header lantern */
.brand-lantern {
  width: 28px;
  height: 40px;
  color: #e4a06d;
  opacity: 0.95;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.18));
}

.brand-lantern path {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-lantern .lantern-arch {
  stroke-width: 1.25;
  opacity: 0.72;
}

@media (max-width: 640px) {
  .brand-lantern {
    width: 24px;
    height: 34px;
  }
}

/* Studio wallpaper hero trial */
.hero {
  background:
    radial-gradient(circle at 16% 38%, rgba(255,248,238,0.08), transparent 19rem),
    linear-gradient(90deg, rgba(16,22,16,0.84) 0%, rgba(35,44,31,0.66) 36%, rgba(19,21,14,0.18) 72%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.38)),
    url("assets/hero-studio-wallpaper.png") center / cover;
}

.hero-copy::before {
  background: radial-gradient(ellipse at 30% 45%, rgba(12,18,13,0.72), rgba(12,18,13,0.38) 46%, transparent 74%);
}

@media (max-width: 860px) {
  .hero {
    background-position: 62% center;
  }
}

/* Leaf-inspired service tiles disabled */

/* Leaf-inspired approach cards */
.approach-cards article {
  border-radius: 72px 20px 72px 20px;
}

.approach-cards article:nth-child(2) {
  border-radius: 20px 72px 20px 72px;
}

.approach-cards article:nth-child(3) {
  border-radius: 72px 20px 72px 20px;
}

.approach-cards article::before {
  border-radius: 54px 16px 54px 16px;
}

.approach-cards article:nth-child(2)::before {
  border-radius: 16px 54px 16px 54px;
}

.approach-cards article:nth-child(3)::before {
  border-radius: 54px 16px 54px 16px;
}

.approach-cards article::after {
  width: 120px;
  height: 120px;
  right: -26px;
  bottom: -28px;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(174,133,78,0.24);
  transform: rotate(-18deg);
}

.approach-cards article:nth-child(2)::after {
  right: auto;
  left: -26px;
  transform: rotate(18deg) scaleX(-1);
}

.approach-cards article h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(166,102,60,0.55);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  transform: rotate(-28deg);
}

.approach-cards article:nth-child(2) h3::before {
  transform: rotate(28deg) scaleX(-1);
}

@media (max-width: 860px) {
  .approach-cards article,
  .approach-cards article:nth-child(2),
  .approach-cards article:nth-child(3) {
    border-radius: 52px 16px 52px 16px;
  }
}

/* Fancy Lantern & Oak buttons */
.button,
.nav-button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(228,160,109,0.72);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,248,238,0.24);
}

.button::before,
.nav-button::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,248,238,0.22);
  border-radius: inherit;
  pointer-events: none;
}

.button::after,
.nav-button::after {
  content: "✦";
  margin-left: 10px;
  color: rgba(255,248,238,0.8);
  font-size: 0.7rem;
  line-height: 1;
}

.primary,
.nav-button,
.contact .primary {
  background:
    linear-gradient(135deg, #d48350, #a75f35 72%);
  color: #fff8ee;
  border-color: rgba(228,160,109,0.86);
}

.secondary,
.contact-actions .secondary {
  background: rgba(255,248,238,0.08);
  color: #fff8ee;
  border-color: rgba(255,248,238,0.44);
  backdrop-filter: blur(8px);
}

.button:hover,
.nav-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,248,238,0.28);
}

.contact .primary {
  color: #fff8ee;
}

.nav-work-button {
  background:
    linear-gradient(180deg, rgba(255,248,238,0.98), rgba(234,209,181,0.94)) !important;
  color: var(--forest) !important;
  border-color: rgba(255,248,238,0.78) !important;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.58),
    inset 0 -16px 32px rgba(184,117,69,0.1) !important;
}

.nav-work-button::before {
  border-color: rgba(184,117,69,0.2) !important;
}

.nav-work-button::after {
  color: var(--brand-orange) !important;
}

@media (max-width: 520px) {
  .button,
  .nav-button {
    width: 100%;
    padding-inline: 18px;
  }
}

/* Animated lantern hero video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.04) contrast(1.04);
}

.hero {
  background:
    radial-gradient(circle at 16% 38%, rgba(255,248,238,0.08), transparent 19rem),
    linear-gradient(90deg, rgba(16,22,16,0.84) 0%, rgba(35,44,31,0.66) 36%, rgba(19,21,14,0.18) 72%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.38)),
    url("assets/hero-studio-wallpaper.png") center / cover;
}

.hero::before {
  z-index: 1;
}

.hero-copy {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Footer logo flicker */
.footer-logo-video {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.22));
}

@media (prefers-reduced-motion: reduce) {
  .footer-logo-video {
    display: none;
  }

  .site-footer::before {
    content: "";
    width: 116px;
    height: 116px;
    background: url("assets/logo-transparent.png") center / contain no-repeat;
  }
}

/* Badge-free footer lantern mark */
.footer-lantern-mark {
  width: 92px;
  height: 112px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 0 18px rgba(228,160,109,0.34)) drop-shadow(0 16px 28px rgba(0,0,0,0.22));
}

/* Header uses extracted lantern mark */
.brand-lantern-img {
  width: 28px;
  height: 42px;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 0 8px rgba(228,160,109,0.26));
}

@media (max-width: 640px) {
  .brand-lantern-img {
    width: 24px;
    height: 36px;
  }
}

/* Approach section uses lantern line watermark */
.work::before {
  width: min(34vw, 430px);
  aspect-ratio: 220 / 260;
  left: 72%;
  top: 48%;
  background: url("assets/lantern-mark-clean.png") center / contain no-repeat;
  opacity: 0.13;
  filter: drop-shadow(0 0 34px rgba(228,160,109,0.18));
  transform: translate(-50%, -50%);
}

@media (max-width: 860px) {
  .work::before {
    width: min(70vw, 300px);
    left: 72%;
    top: 44%;
    opacity: 0.1;
  }
}

/* Larger approach lantern watermark */
.work::before {
  width: min(74vw, 880px);
  left: 63%;
  top: 54%;
  opacity: 0.115;
}

@media (max-width: 860px) {
  .work::before {
    width: min(118vw, 560px);
    left: 60%;
    top: 48%;
    opacity: 0.085;
  }
}

/* Free-hanging approach branch ornaments */
.work::before,
.work::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: url("assets/ornamental-branch.svg") center / contain no-repeat;
  opacity: 0.22;
  filter: drop-shadow(0 0 16px rgba(228,160,109,0.14));
}

.work::before {
  width: min(42vw, 520px);
  aspect-ratio: 360 / 170;
  left: 52%;
  top: 17%;
  transform: translateX(-50%) rotate(-5deg);
}

.work::after {
  width: min(34vw, 430px);
  aspect-ratio: 360 / 170;
  right: 5%;
  bottom: 13%;
  transform: rotate(174deg) scaleX(-1);
  opacity: 0.16;
}

.work .section-heading,
.work .work-grid {
  z-index: 1;
}

@media (max-width: 860px) {
  .work::before {
    width: min(78vw, 420px);
    left: 58%;
    top: 12%;
    opacity: 0.16;
  }

  .work::after {
    width: min(72vw, 360px);
    right: -10%;
    bottom: 5%;
    opacity: 0.12;
  }
}

/* Remove approach background watermark */
.work::before,
.work::after {
  display: none;
}

/* Remove services corner botanical watermark */
.services::before,
.services::after {
  display: none;
}

/* Disabled placeholder button */
.button-disabled {
  cursor: default;
  opacity: 0.78;
  user-select: none;
}

.button-disabled:hover {
  transform: none;
}

/* Cute on-page inquiry form */
.contact-form-section {
  align-items: stretch;
  gap: clamp(26px, 5vw, 62px);
}

.contact-copy {
  display: grid;
  align-content: center;
  max-width: 560px;
}

.contact-copy p:not(.eyebrow):not(.footer-links) {
  color: rgba(255,248,238,0.86);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 560px);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255,250,241,0.97), rgba(241,224,203,0.95));
  color: var(--ink-dark);
  border: 1px solid rgba(228,160,109,0.58);
  border-radius: 34px 14px 34px 14px;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(174,133,78,0.24);
  border-radius: 24px 10px 24px 10px;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: #8f572f;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(111,93,61,0.28);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255,248,238,0.84);
  color: var(--ink-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(195,111,67,0.82);
  box-shadow:
    0 0 0 3px rgba(195,111,67,0.14),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.contact-form .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  display: none;
}

@media (max-width: 920px) {
  .contact-form-section {
    display: grid;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }
}

/* Remove page-wide grid overlay */
body::before {
  display: none;
}

/* Handwritten brand accents */
.contact .eyebrow,
.hero .eyebrow,
.title-amp,
.contact-form label:has(textarea) {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.contact .eyebrow {
  margin-bottom: 12px;
  color: #e8b17e;
  font-size: clamp(2.25rem, 3vw, 3.4rem);
  line-height: 0.9;
  text-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.hero .eyebrow {
  font-size: clamp(1.75rem, 2.3vw, 2.55rem);
  line-height: 1;
}

.title-amp {
  color: #e8b17e;
  font-size: 0.92em;
  transform: translateY(-0.01em);
}

.contact-form label:has(textarea) {
  color: #a8663c;
  font-size: clamp(1.8rem, 2.2vw, 2.45rem);
  line-height: 0.95;
}

.contact-form label:has(textarea) textarea {
  margin-top: 8px;
  font-family: var(--font-body);
}

/* Cream Facebook badge */
.footer-links .facebook-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--forest);
  background: rgba(255,248,238,0.92);
  border: 1px solid rgba(228,160,109,0.62);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.7);
}

.footer-links .facebook-badge span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff8ee;
  background: var(--soft-blue);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.footer-links .facebook-badge:hover {
  border-bottom-color: rgba(228,160,109,0.62);
  transform: translateY(-1px);
}

/* Softer Lantern & Oak blue/orange palette */
:root {
  --soft-blue: #5d7f92;
  --soft-blue-deep: #456979;
  --soft-blue-dark: #34515f;
  --brand-orange: #b87545;
  --brand-orange-deep: #9b6239;
  --brand-orange-dark: #78472c;
  --copper: #b87545;
}

.service-grid-two .service-card:nth-child(1),
.approach-cards article:nth-child(3) .card-emblem,
.footer-links .facebook-badge span {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.24), transparent 10rem),
    linear-gradient(152deg, rgba(108,139,153,0.98), rgba(83,119,135,0.98) 58%, rgba(58,88,102,0.98));
}

.service-grid-two .service-card:nth-child(2),
.approach-cards article:nth-child(2) .card-emblem,
.primary,
.nav-button,
.contact .primary {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.22), transparent 10rem),
    linear-gradient(135deg, #c48252, #a8663c 68%, #84502f);
}

.button,
.nav-button,
.contact .primary {
  border-color: rgba(201,139,88,0.78);
}

.info-strip strong,
.browser-bar span:first-child,
.slide-dots span:nth-child(1) {
  background: var(--brand-orange);
}

.browser-bar span:nth-child(3),
.preview-line.short {
  background: var(--soft-blue);
}

.hero .eyebrow,
.contact .eyebrow,
.title-amp {
  color: #d39966;
}

.card-kicker,
.contact-form label,
.contact-form label:has(textarea) {
  color: #a8663c;
}

/* Growth story icons */
.growth-icon svg {
  width: 30px;
  height: 30px;
}

.growth-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seed-icon,
.sapling-icon,
.tree-icon {
  color: #fff8ee;
}

/* Sweeter Facebook badge spacing and shape */
.contact-copy .footer-links {
  margin-top: 28px;
}

.footer-links .facebook-badge {
  padding: 11px 18px 11px 12px;
  border-radius: 28px 12px 28px 12px;
  background: linear-gradient(180deg, rgba(255,250,241,0.96), rgba(241,224,203,0.94));
  border-color: rgba(201,139,88,0.72);
}

.footer-links .facebook-badge span {
  background: var(--soft-blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.26), 0 5px 12px rgba(0,0,0,0.16);
}

/* Ornate label shapes for services and inquiry */
.service-grid-two .service-card,
.contact-form {
  clip-path: polygon(
    7% 0%, 93% 0%, 93% 8%, 100% 8%, 100% 26%, 96% 26%, 96% 38%, 100% 45%,
    100% 55%, 96% 62%, 96% 74%, 100% 74%, 100% 92%, 93% 92%, 93% 100%,
    7% 100%, 7% 92%, 0% 92%, 0% 74%, 4% 74%, 4% 62%, 0% 55%, 0% 45%,
    4% 38%, 4% 26%, 0% 26%, 0% 8%, 7% 8%
  );
  border-radius: 0;
}

.service-grid-two .service-card {
  min-height: 390px;
  padding: clamp(44px, 5vw, 62px) clamp(42px, 5vw, 62px);
  border: 0;
}

.service-grid-two .service-card::after {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 0;
  width: auto;
  height: auto;
  border: 1px solid rgba(255,248,238,0.3);
  background: transparent;
  clip-path: inherit;
  border-radius: 0;
  transform: none;
  filter: none;
  pointer-events: none;
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.2), transparent 10rem),
    linear-gradient(152deg, rgba(113,144,157,0.98), rgba(88,125,141,0.98) 58%, rgba(65,97,111,0.98));
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.22), transparent 10rem),
    linear-gradient(152deg, rgba(199,132,82,0.98), rgba(173,105,61,0.98) 58%, rgba(128,76,45,0.98));
}

.contact-form {
  padding: clamp(34px, 4vw, 48px) clamp(30px, 4vw, 48px);
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,250,241,0.98), rgba(241,224,203,0.96));
}

.contact-form::before {
  inset: 15px;
  border-color: rgba(174,133,78,0.28);
  clip-path: inherit;
  border-radius: 0;
}

@media (max-width: 620px) {
  .service-grid-two .service-card,
  .contact-form {
    clip-path: polygon(
      9% 0%, 91% 0%, 91% 6%, 100% 6%, 100% 94%, 91% 94%, 91% 100%,
      9% 100%, 9% 94%, 0% 94%, 0% 6%, 9% 6%
    );
  }
}

/* Vintage frame card treatment */
.service-grid-two .service-card,
.contact-form {
  clip-path: none;
  border-radius: 34px;
  overflow: visible;
}

.service-grid-two .service-card {
  min-height: 380px;
  padding: clamp(46px, 5vw, 64px) clamp(38px, 5vw, 58px);
  border: 1px solid rgba(255,248,238,0.38);
}

.service-grid-two .service-card::before,
.contact-form::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 118px;
  height: 52px;
  transform: translateX(-50%);
  background: rgba(255,248,238,0.96);
  border: 1px solid rgba(201,139,88,0.62);
  pointer-events: none;
  z-index: 2;
}

.service-grid-two .service-card::before {
  top: -25px;
  border-radius: 50% 50% 42% 42% / 78% 78% 30% 30%;
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.service-grid-two .service-card::after,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 0;
  width: auto;
  height: auto;
  border: 1px solid rgba(255,248,238,0.34);
  background: transparent;
  border-radius: 26px;
  clip-path: none;
  transform: none;
  filter: none;
  pointer-events: none;
}

.service-grid-two .service-card h3::before,
.contact-form > input[type="hidden"] + .hidden-field::after {
  content: "✦";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  color: rgba(255,248,238,0.92);
  border: 1px solid rgba(255,248,238,0.52);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
}

.service-grid-two .service-card h3::after {
  width: 106px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, rgba(255,248,238,0), rgba(255,248,238,0.72), rgba(255,248,238,0));
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 50% -8%, rgba(255,248,238,0.26), transparent 8rem),
    linear-gradient(152deg, rgba(113,144,157,0.98), rgba(88,125,141,0.98) 58%, rgba(65,97,111,0.98));
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 50% -8%, rgba(255,248,238,0.25), transparent 8rem),
    linear-gradient(152deg, rgba(199,132,82,0.98), rgba(173,105,61,0.98) 58%, rgba(128,76,45,0.98));
}

.contact-form {
  border-radius: 34px;
  border: 1px solid rgba(201,139,88,0.62);
  padding-top: clamp(44px, 5vw, 58px);
}

.contact-form::after {
  top: -25px;
  border-radius: 50% 50% 42% 42% / 78% 78% 30% 30%;
  box-shadow: 0 14px 24px rgba(0,0,0,0.1);
}

.contact-form::before {
  border-color: rgba(174,133,78,0.24);
}

@media (max-width: 620px) {
  .service-grid-two .service-card,
  .contact-form {
    border-radius: 26px;
  }

  .service-grid-two .service-card::before,
  .contact-form::after {
    width: 92px;
    height: 42px;
    top: -20px;
  }
}

/* Simple ornate label frame, matched to reference */
.service-grid-two .service-card,
.contact-form {
  clip-path: none;
  border-radius: 30px;
  overflow: hidden;
}

.service-grid-two .service-card::before,
.contact-form::after {
  display: none;
}

.service-grid-two .service-card::after,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: url("assets/ornate-label-frame.svg") center / 100% 100% no-repeat;
  transform: none;
  filter: none;
  pointer-events: none;
}

.service-grid-two .service-card {
  padding: clamp(48px, 5vw, 64px) clamp(44px, 5vw, 66px);
}

.service-grid-two .service-card h3::before {
  content: none;
}

.contact-form {
  border-radius: 30px;
}

/* Make the actual boxes ornate label shapes */
.service-grid-two .service-card,
.contact-form {
  border-radius: 0;
  -webkit-mask: url("assets/ornate-label-mask.svg") center / 100% 100% no-repeat;
  mask: url("assets/ornate-label-mask.svg") center / 100% 100% no-repeat;
  overflow: hidden;
}

.service-grid-two .service-card {
  padding: clamp(58px, 5.5vw, 76px) clamp(54px, 5.5vw, 74px);
}

.service-grid-two .service-card::after,
.contact-form::before {
  inset: 22px;
  background: url("assets/ornate-label-frame.svg") center / 100% 100% no-repeat;
}

.contact-form {
  padding: clamp(52px, 5vw, 66px) clamp(42px, 5vw, 58px);
}

@media (max-width: 620px) {
  .service-grid-two .service-card,
  .contact-form {
    -webkit-mask: none;
    mask: none;
    border-radius: 28px;
  }
}

/* Revert ornate experiments: clean boutique cards */
.service-grid-two .service-card,
.contact-form {
  clip-path: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  overflow: hidden;
}

.service-grid-two .service-card {
  min-height: 370px;
  padding: clamp(38px, 4vw, 54px);
  border: 1px solid rgba(255,248,238,0.34);
  border-radius: 26px;
}

.service-grid-two .service-card::before {
  display: none !important;
}

.service-grid-two .service-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  width: auto;
  height: auto;
  border: 1px solid rgba(255,248,238,0.28);
  border-radius: 18px;
  background: transparent;
  transform: none;
  filter: none;
  pointer-events: none;
}

.service-grid-two .service-card h3::before {
  content: none !important;
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.22), transparent 10rem),
    linear-gradient(152deg, rgba(113,144,157,0.98), rgba(88,125,141,0.98) 58%, rgba(65,97,111,0.98));
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 82% 8%, rgba(255,248,238,0.22), transparent 10rem),
    linear-gradient(152deg, rgba(199,132,82,0.98), rgba(173,105,61,0.98) 58%, rgba(128,76,45,0.98));
}

.contact-form {
  width: min(100%, 560px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(201,139,88,0.62);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,250,241,0.98), rgba(241,224,203,0.96));
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(174,133,78,0.24);
  border-radius: 20px;
  background: transparent;
  clip-path: none;
  transform: none;
  pointer-events: none;
}

.contact-form::after {
  display: none !important;
}

/* LAST TRY: actual simple label-shaped boxes */
.service-grid-two .service-card,
.contact-form {
  -webkit-mask: url("assets/simple-label-mask.svg") center / 100% 100% no-repeat !important;
  mask: url("assets/simple-label-mask.svg") center / 100% 100% no-repeat !important;
  clip-path: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

.service-grid-two .service-card {
  min-height: 360px !important;
  padding: clamp(64px, 5vw, 78px) clamp(64px, 6vw, 82px) !important;
  box-shadow: 0 28px 64px rgba(45,48,37,0.22) !important;
}

.service-grid-two .service-card::before,
.service-grid-two .service-card::after,
.contact-form::after {
  display: none !important;
}

.service-grid-two .service-card h3::before {
  content: none !important;
}

.service-grid-two .service-card > *,
.contact-form > * {
  position: relative;
  z-index: 1;
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,248,238,0.22), transparent 10rem),
    linear-gradient(152deg, rgba(113,144,157,0.98), rgba(88,125,141,0.98) 58%, rgba(65,97,111,0.98)) !important;
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,248,238,0.22), transparent 10rem),
    linear-gradient(152deg, rgba(199,132,82,0.98), rgba(173,105,61,0.98) 58%, rgba(128,76,45,0.98)) !important;
}

.contact-form {
  padding: clamp(58px, 5vw, 70px) clamp(58px, 5vw, 74px) !important;
  background: linear-gradient(180deg, rgba(255,250,241,0.98), rgba(241,224,203,0.96)) !important;
}

.contact-form::before {
  display: none !important;
}

@media (max-width: 760px) {
  .service-grid-two .service-card,
  .contact-form {
    -webkit-mask: none !important;
    mask: none !important;
    border-radius: 28px !important;
    padding: 34px 28px !important;
  }
}

/* Give label-shaped boxes more vertical room */
.service-grid-two .service-card {
  min-height: 455px !important;
  padding: clamp(76px, 6vw, 94px) clamp(68px, 6vw, 88px) !important;
}

.service-grid-two {
  gap: clamp(24px, 3vw, 36px);
}

.service-grid-two .service-card h3 {
  max-width: 100%;
  font-size: clamp(2.45rem, 3.05vw, 3.35rem);
}

.service-grid-two .service-card p {
  max-width: 31rem;
  font-size: clamp(1.1rem, 1.18vw, 1.24rem);
  line-height: 1.66;
}

.contact-form {
  min-height: 620px;
  padding: clamp(72px, 6vw, 92px) clamp(62px, 5.5vw, 82px) !important;
}

@media (max-width: 760px) {
  .service-grid-two .service-card {
    min-height: auto !important;
  }

  .contact-form {
    min-height: auto;
  }
}

/* Force service label cards tall enough for the ornate shape */
.service-grid-two {
  align-items: center;
}

.service-grid-two .service-card {
  height: 560px !important;
  min-height: 560px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px 82px !important;
}

.service-grid-two .service-card h3 {
  font-size: clamp(2.55rem, 3vw, 3.35rem) !important;
  line-height: 0.92 !important;
}

.service-grid-two .service-card p {
  font-size: clamp(1.05rem, 1.12vw, 1.18rem) !important;
  line-height: 1.58 !important;
  margin-top: 18px !important;
}

@media (max-width: 920px) {
  .service-grid-two .service-card {
    height: auto !important;
    min-height: 440px !important;
    padding: 72px 48px !important;
  }
}

/* Taller label mask proportions */
.service-grid-two .service-card {
  height: 660px !important;
  min-height: 660px !important;
  padding: 138px 86px !important;
}

.contact-form {
  min-height: 760px !important;
  padding: 120px 78px !important;
}

@media (max-width: 920px) {
  .service-grid-two .service-card {
    min-height: 560px !important;
    padding: 104px 56px !important;
  }
}

/* Thicker middle band for label boxes */
.service-grid-two .service-card {
  height: 620px !important;
  min-height: 620px !important;
  padding: 124px 86px !important;
}

/* Polish label cards: taller, centered, detailed */
.service-grid-two .service-card {
  height: 650px !important;
  min-height: 650px !important;
  padding: 130px 88px !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 30px 72px rgba(45,48,37,0.24),
    inset 0 1px 0 rgba(255,248,238,0.28),
    inset 0 -42px 80px rgba(0,0,0,0.12) !important;
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 50% 7%, rgba(255,248,238,0.24), transparent 8rem),
    radial-gradient(circle at 15% 82%, rgba(37,58,67,0.28), transparent 14rem),
    linear-gradient(150deg, #7699a8 0%, #5e8495 48%, #436a7a 100%) !important;
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 50% 7%, rgba(255,248,238,0.24), transparent 8rem),
    radial-gradient(circle at 16% 82%, rgba(112,70,40,0.26), transparent 14rem),
    linear-gradient(150deg, #ce8b59 0%, #ad6b40 50%, #855031 100%) !important;
}

.service-grid-two .service-card::after {
  display: block !important;
  content: "";
  position: absolute;
  inset: 28px 38px;
  z-index: 0;
  border: 1px solid rgba(255,248,238,0.36);
  border-radius: 999px / 48px;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(255,248,238,0.3) 20% 21%, transparent 21% 79%, rgba(255,248,238,0.3) 79% 80%, transparent 80%),
    linear-gradient(180deg, transparent 0 17%, rgba(255,248,238,0.16) 17% 18%, transparent 18% 82%, rgba(255,248,238,0.16) 82% 83%, transparent 83%);
  pointer-events: none;
}

.service-grid-two .service-card h3 {
  margin-inline: auto;
  max-width: 13ch;
  font-size: clamp(2.75rem, 3.25vw, 3.65rem) !important;
  line-height: 0.9 !important;
  text-align: center;
  text-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.service-grid-two .service-card h3::before {
  content: "✦" !important;
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto 16px;
  color: rgba(255,248,238,0.86);
  border: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  transform: none !important;
}

.service-grid-two .service-card h3::after {
  width: 118px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255,248,238,0.72), transparent);
}

.service-grid-two .service-card p {
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

/* Tall ornate inquiry form shape */
.contact-form {
  -webkit-mask: url("assets/simple-label-mask-tall.svg") center / 100% 100% no-repeat !important;
  mask: url("assets/simple-label-mask-tall.svg") center / 100% 100% no-repeat !important;
  min-height: 940px !important;
  width: min(100%, 620px) !important;
  padding: 150px 78px !important;
  align-content: center;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px 16px;
}

.contact-form textarea {
  min-height: 170px;
}

@media (max-width: 760px) {
  .contact-form {
    -webkit-mask: none !important;
    mask: none !important;
    min-height: auto !important;
    width: 100% !important;
    padding: 34px 28px !important;
    border-radius: 28px !important;
  }
}

/* Smooth approach card corners */
.approach-cards article,
.approach-cards article:nth-child(2),
.approach-cards article:nth-child(3) {
  border-radius: 34px !important;
}

.approach-cards article::before,
.approach-cards article:nth-child(2)::before,
.approach-cards article:nth-child(3)::before {
  border-radius: 24px !important;
}

.approach-cards article::after,
.approach-cards article:nth-child(2)::after {
  border-radius: 50% !important;
  transform: none !important;
}

/* Compact footer */
.site-footer {
  gap: 8px;
  padding: 24px 18px 28px;
}

.footer-lantern-mark,
.footer-logo-video {
  width: 64px;
  height: 78px;
}

.site-footer p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-footer .copyright {
  font-size: 0.72rem;
}

/* One-time homepage flyer popup */
.home-flyer-modal {
  width: min(1080px, calc(100% - 28px));
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.home-flyer-modal::backdrop {
  background: rgba(22,27,20,0.72);
  backdrop-filter: blur(5px);
}

.home-flyer-panel {
  position: relative;
  max-height: 92vh;
  padding: clamp(14px, 2vw, 24px);
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(255,248,238,0.97), rgba(245,227,207,0.94));
  border: 1px solid rgba(184,117,69,0.34);
  border-radius: 28px;
  box-shadow: 0 36px 110px rgba(0,0,0,0.36);
}

.home-flyer-panel h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-flyer-panel img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(45,48,37,0.18);
}

.home-flyer-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 0 10px 12px;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
  border: 1px solid rgba(184,117,69,0.34);
  border-radius: 50%;
  background: rgba(255,248,238,0.94);
  box-shadow: 0 10px 24px rgba(45,48,37,0.18);
  cursor: pointer;
}

@media (max-width: 720px) {
  .home-flyer-panel,
  .home-flyer-panel img {
    border-radius: 14px;
  }
}

/* Keep scrolling available, but hide the visual scrollbar */
html,
body,
.home-flyer-panel,
.work-category-page {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.home-flyer-panel::-webkit-scrollbar,
.work-category-page::-webkit-scrollbar {
  display: none;
}

/* Make inquiry form large enough again */
.contact-form {
  width: min(100%, 760px) !important;
  min-height: 980px !important;
  padding: 185px 96px !important;
}

.contact-form textarea {
  min-height: 210px !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1.04rem;
}

@media (max-width: 920px) {
  .contact-form {
    min-height: 860px !important;
    padding: 150px 70px !important;
  }
}

/* Force contact layout to give the ornate form room */
.contact-form-section {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.8fr) minmax(720px, 1.35fr) !important;
  align-items: center !important;
}

.contact-form-section .contact-form {
  width: 760px !important;
  max-width: none !important;
  height: 980px !important;
  min-height: 980px !important;
  justify-self: end;
  gap: 18px;
}

@media (max-width: 1180px) {
  .contact-form-section {
    grid-template-columns: 1fr !important;
  }

  .contact-form-section .contact-form {
    width: min(100%, 760px) !important;
    max-width: 100% !important;
    justify-self: center;
  }
}

/* More graceful contact intro spacing */
.contact-copy {
  align-content: center;
  gap: 26px;
  min-height: 620px;
}

.contact-copy .eyebrow {
  margin: 0;
}

.contact-copy h2 {
  margin: 0;
  max-width: 620px;
}

.contact-copy p:not(.eyebrow):not(.footer-links) {
  margin: 0;
  max-width: 640px;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .contact-copy {
    min-height: auto;
    gap: 20px;
  }
}

/* Place the inquiry button inside the printed label area */
.contact-form-section .contact-form {
  padding-bottom: 205px !important;
}

.contact-form .button[type="submit"] {
  position: absolute !important;
  left: 50%;
  bottom: 164px;
  z-index: 3;
  justify-self: center;
  align-self: center;
  width: min(100%, 310px);
  margin: 0 !important;
  padding: 15px 24px;
  border: 1px solid rgba(184,117,69,0.46);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,248,238,0.36), rgba(184,117,69,0.14)),
    var(--brand-orange);
  color: var(--white);
  box-shadow:
    0 12px 28px rgba(60,42,28,0.18),
    inset 0 0 0 1px rgba(255,248,238,0.34);
  transform: translateX(-50%);
}

.contact-form .button[type="submit"]::before {
  inset: 6px 12px;
  border-radius: inherit;
  border-color: rgba(255,248,238,0.24);
}

.contact-form .button[type="submit"]::after {
  content: "✦";
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 10px;
  background: none;
  transform: none;
}

@media (max-width: 760px) {
  .contact-form .button[type="submit"] {
    position: relative !important;
    left: auto;
    bottom: auto;
    transform: none;
    width: fit-content;
    margin: 6px auto 0 !important;
  }
}

/* Final inquiry label fit */
.contact-form-section .contact-form {
  width: 820px !important;
  height: 1120px !important;
  min-height: 1120px !important;
  padding: 235px 96px 260px !important;
  gap: 13px !important;
}

.contact-form label {
  gap: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding-block: 12px !important;
}

.contact-form textarea {
  min-height: 176px !important;
}

.contact-form .button[type="submit"] {
  bottom: 178px;
}

.form-status {
  position: absolute;
  left: 50%;
  bottom: 122px;
  z-index: 3;
  width: min(72%, 420px);
  margin: 0;
  color: rgba(48,56,40,0.72);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
}

@media (max-width: 1180px) {
  .contact-form-section .contact-form {
    width: min(100%, 820px) !important;
  }
}

@media (max-width: 920px) {
  .contact-form-section .contact-form {
    height: 1040px !important;
    min-height: 1040px !important;
    padding: 210px 58px 238px !important;
  }

  .contact-form .button[type="submit"] {
    bottom: 160px;
  }
}

@media (max-width: 760px) {
  .contact-form-section .contact-form {
    height: auto !important;
    min-height: auto !important;
    padding: 34px 28px !important;
  }
}

/* Small recent-work banner */
.work-peek {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(720px, 92%);
  margin: 30px auto 0;
  padding: 15px 28px;
  color: var(--ink-dark);
  text-decoration: none;
  background:
    radial-gradient(circle at 92% 12%, rgba(184,117,69,0.14), transparent 7rem),
    linear-gradient(180deg, rgba(255,248,238,0.94), rgba(241,224,203,0.9));
  border: 1px solid rgba(184,117,69,0.34);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(47,49,37,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.42);
}

.work-peek::before,
.work-peek::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,117,69,0.72), transparent);
}

.work-peek span {
  color: var(--brand-orange);
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1;
}

.work-peek strong {
  color: var(--forest);
  font-family: var(--font-logo);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-peek em {
  color: rgba(45,48,37,0.72);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
}

.work-peek:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(47,49,37,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.52);
}

.contact-work-peek {
  grid-template-columns: auto auto;
  justify-items: center;
  justify-content: center;
  align-items: baseline;
  text-align: center;
  width: min(820px, 92%);
  min-height: 96px;
  padding: 24px 64px 26px;
  gap: 24px;
  margin-block: clamp(24px, 4vw, 46px) clamp(-10px, -1vw, -4px);
}

.contact-work-peek::before,
.contact-work-peek::after {
  display: none;
}

.contact-work-peek span {
  font-size: clamp(2.35rem, 3.7vw, 3.25rem);
  margin-bottom: 0;
  white-space: nowrap;
}

.contact-work-peek strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0.18em;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .work-peek {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    border-radius: 28px;
    text-align: center;
  }

  .work-peek::before,
  .work-peek::after {
    display: none;
  }

  .work-peek strong {
    white-space: normal;
  }
}

/* True label-following outlines for the service boxes */
.service-grid-two .service-card::after {
  display: block !important;
  content: "";
  position: absolute;
  inset: 23px 28px;
  z-index: 0;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("assets/simple-label-frame.svg") center / 100% 100% no-repeat !important;
}

.service-grid-two .service-card::before {
  display: block !important;
  content: "";
  position: absolute;
  inset: 43px 50px;
  z-index: 0;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 0.42;
  background: url("assets/simple-label-frame.svg") center / 100% 100% no-repeat !important;
}

/* Animated lantern crest in the inquiry label */
.contact-lantern-mark {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 3;
  width: 124px;
  height: 128px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(18%) sepia(16%) saturate(730%) hue-rotate(54deg) brightness(92%) contrast(88%);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-form-note {
  position: absolute !important;
  top: 162px;
  left: 50%;
  z-index: 3;
  width: min(74%, 520px);
  margin: 0;
  color: var(--brand-orange);
  font-family: "Allura", "Segoe Script", "Brush Script MT", cursive !important;
  font-size: clamp(4.2rem, 7.2vw, 7.4rem);
  line-height: 0.9;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  transform: translateX(-50%) rotate(-2deg);
  pointer-events: none;
}

/* Give the shaped service labels more room for their border and copy */
.service-grid-two .service-card {
  height: 760px !important;
  min-height: 760px !important;
  padding: 168px 96px !important;
}

.service-grid-two .service-card h3 {
  max-width: 12ch;
  margin-bottom: 26px !important;
}

.service-grid-two .service-card p {
  max-width: 27rem;
  margin-top: 0 !important;
}

.service-grid-two .service-card::after {
  inset: 30px 36px !important;
}

.service-grid-two .service-card::before {
  inset: 56px 66px !important;
}

@media (max-width: 920px) {
  .contact-lantern-mark {
    top: 38px;
    width: 108px;
    height: 112px;
  }

  .contact-form-note {
    top: 148px;
    width: min(76%, 420px);
    font-size: clamp(3.4rem, 12vw, 5.2rem);
  }

  .service-grid-two .service-card {
    height: auto !important;
    min-height: 620px !important;
    padding: 130px 58px !important;
  }
}

@media (max-width: 760px) {
  .contact-lantern-mark {
    display: none;
  }

  .contact-form-note {
    display: none;
  }
}

/* Keep service copy clear of the label outline */
.service-grid-two .service-card {
  height: 830px !important;
  min-height: 830px !important;
  padding: 166px 104px 210px !important;
}

.service-grid-two .service-card h3 {
  margin-bottom: 28px !important;
}

.service-grid-two .service-card p {
  max-width: 25rem;
  font-size: clamp(1.02rem, 1.06vw, 1.12rem) !important;
  line-height: 1.5 !important;
}

.service-grid-two .service-card::after {
  inset: 34px 42px !important;
}

.service-grid-two .service-card::before {
  inset: 68px 78px !important;
}

/* Final service label fit: larger cards, one clean outline, no text collision */
.service-grid-two {
  grid-template-columns: repeat(2, minmax(520px, 640px)) !important;
  justify-content: center;
  align-items: center;
  gap: clamp(38px, 5vw, 70px) !important;
}

.service-grid-two .service-card {
  width: 100% !important;
  height: 620px !important;
  min-height: 620px !important;
  padding: 120px 90px 132px !important;
  justify-content: center !important;
}

.service-grid-two .service-card::before {
  display: none !important;
}

.service-grid-two .service-card::after {
  inset: 28px 34px !important;
  opacity: 0.72;
}

.service-grid-two .service-card h3 {
  max-width: 13ch !important;
  margin-bottom: 24px !important;
  font-size: clamp(2.8rem, 3.15vw, 3.65rem) !important;
}

.service-grid-two .service-card h3::after {
  margin-top: 22px !important;
}

.service-grid-two .service-card p {
  max-width: 27rem !important;
  font-size: clamp(1.08rem, 1.1vw, 1.18rem) !important;
  line-height: 1.56 !important;
}

@media (max-width: 1180px) {
  .service-grid-two {
    grid-template-columns: 1fr !important;
  }

  .service-grid-two .service-card {
    width: min(100%, 660px) !important;
    justify-self: center;
  }
}

/* Bigger service labels with a safer printable center */
.service-grid-two {
  grid-template-columns: repeat(2, minmax(660px, 760px)) !important;
}

.service-grid-two .service-card {
  height: 760px !important;
  min-height: 760px !important;
  padding: 148px 128px 188px !important;
}

.service-grid-two .service-card p {
  max-width: 31rem !important;
  font-size: clamp(1.12rem, 1.16vw, 1.22rem) !important;
  line-height: 1.5 !important;
}

.service-grid-two .service-card::after {
  inset: 38px 48px !important;
}

@media (max-width: 1480px) {
  .service-grid-two {
    grid-template-columns: repeat(2, minmax(560px, 660px)) !important;
  }

  .service-grid-two .service-card {
    height: 720px !important;
    min-height: 720px !important;
    padding: 142px 108px 182px !important;
  }
}

@media (max-width: 1180px) {
  .service-grid-two {
    grid-template-columns: 1fr !important;
  }

  .service-grid-two .service-card {
    width: min(100%, 760px) !important;
  }
}

/* Final placement for the handwritten inquiry note */
.contact-form .contact-form-note {
  display: block !important;
  top: clamp(138px, 15vw, 168px) !important;
  left: 50% !important;
  width: min(82%, 620px) !important;
  color: var(--brand-orange) !important;
  font-family: "Allura", "Segoe Script", "Brush Script MT", cursive !important;
  font-size: clamp(5.2rem, 8vw, 7rem) !important;
  font-weight: 400 !important;
  line-height: 0.78 !important;
  text-align: center !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transform: translateX(-50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 920px) {
  .contact-form .contact-form-note {
    display: block !important;
    top: 140px !important;
    width: 86% !important;
    font-size: clamp(4.3rem, 12.8vw, 5.8rem) !important;
  }
}

/* My Recent Work page */
.recent-work-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(184,117,69,0.2), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(88,122,139,0.22), transparent 28rem),
    linear-gradient(180deg, #f5e3cf 0%, #ead1b5 56%, #303828 100%);
}

.recent-work-hero {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 72px) 28px;
  text-align: center;
}

.recent-work-hero .eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-family: var(--font-script);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

.recent-work-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(45,48,37,0.78);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
}

.recent-work-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(56px, 8vw, 96px);
}

.work-category-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(190px, 20vw, 250px);
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  border: 1px solid rgba(255,248,238,0.38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,248,238,0.24), transparent 7.5rem),
    radial-gradient(circle at 88% 8%, rgba(184,117,69,0.36), transparent 8.5rem),
    radial-gradient(circle at 18% 94%, rgba(48,56,40,0.32), transparent 11rem),
    linear-gradient(150deg, rgba(48,56,40,0.96), rgba(88,122,139,0.82));
  box-shadow:
    0 26px 68px rgba(45,48,37,0.26),
    inset 0 1px 0 rgba(255,248,238,0.24),
    inset 0 -48px 88px rgba(0,0,0,0.14);
  cursor: pointer;
}

.work-category-tile:nth-child(1),
.work-category-tile:nth-child(5) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.26), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(184,117,69,0.24), transparent 8rem),
    radial-gradient(circle at 22% 90%, rgba(48,56,40,0.42), transparent 12rem),
    linear-gradient(150deg, rgba(118,158,174,0.98) 0%, rgba(83,126,143,0.96) 46%, rgba(51,74,87,0.98) 100%);
}

.work-category-tile:nth-child(3),
.work-category-tile:nth-child(4) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.28), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(88,122,139,0.22), transparent 8rem),
    radial-gradient(circle at 22% 90%, rgba(96,80,52,0.44), transparent 12rem),
    linear-gradient(150deg, rgba(207,139,88,0.98) 0%, rgba(184,117,69,0.96) 48%, rgba(118,75,45,0.98) 100%);
}

.work-category-tile:nth-child(2),
.work-category-tile:nth-child(6) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.24), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(184,117,69,0.22), transparent 8rem),
    radial-gradient(circle at 24% 92%, rgba(88,122,139,0.26), transparent 12rem),
    linear-gradient(150deg, rgba(122,139,97,0.98) 0%, rgba(85,103,68,0.96) 48%, rgba(48,56,40,0.98) 100%);
}

.work-category-tile::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,248,238,0.34);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.05),
    0 0 24px rgba(255,248,238,0.08);
  pointer-events: none;
}

.work-category-tile::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 118px;
  height: 118px;
  opacity: 0.15;
  pointer-events: none;
}

.work-category-tile:nth-child(1)::after {
  background: url("assets/lantern-mark-clean.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.work-category-tile:nth-child(2)::after {
  content: "L & O";
  right: 14px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 142px;
  height: 58px;
  color: rgba(255,248,238,0.6);
  font-family: var(--font-logo);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,248,238,0.18) 12% 13%, transparent 13% 87%, rgba(255,248,238,0.18) 87% 88%, transparent 88%),
    linear-gradient(180deg, rgba(255,248,238,0.2), transparent);
  box-shadow:
    inset 0 0 0 7px rgba(255,248,238,0.06),
    -18px 18px 0 -12px rgba(255,248,238,0.18);
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%, 12% 50%);
  transform: rotate(-5deg);
}

.work-category-tile:nth-child(3)::after {
  right: 18px;
  top: 14px;
  width: 98px;
  height: 126px;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 9px;
  background:
    linear-gradient(rgba(255,248,238,0.48), rgba(255,248,238,0.48)) 20px 28px / 54px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.38), rgba(255,248,238,0.38)) 20px 44px / 42px 2px no-repeat,
    radial-gradient(circle at 28px 72px, rgba(255,248,238,0.42) 0 9px, transparent 10px),
    linear-gradient(135deg, transparent 0 74%, rgba(255,248,238,0.34) 74% 100%),
    linear-gradient(180deg, rgba(255,248,238,0.2), transparent);
  box-shadow:
    inset 0 0 0 8px rgba(255,248,238,0.08),
    -10px 10px 0 -2px rgba(255,248,238,0.12),
    -20px 20px 0 -5px rgba(255,248,238,0.08);
  transform: rotate(5deg);
}

.work-category-tile:nth-child(4)::after {
  right: 22px;
  top: 18px;
  width: 104px;
  height: 126px;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255,248,238,0.5), rgba(255,248,238,0.5)) 22px 30px / 58px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 22px 48px / 44px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 22px 66px / 58px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 22px 84px / 38px 2px no-repeat,
    linear-gradient(180deg, rgba(255,248,238,0.18), transparent);
  box-shadow: inset 0 0 0 8px rgba(255,248,238,0.08);
  transform: rotate(-5deg);
}

.work-category-tile:nth-child(5)::after {
  right: 18px;
  top: 26px;
  width: 132px;
  height: 92px;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 0 22px / 100% 2px no-repeat,
    radial-gradient(circle at 16px 11px, rgba(255,248,238,0.48) 0 3px, transparent 4px),
    radial-gradient(circle at 31px 11px, rgba(255,248,238,0.42) 0 3px, transparent 4px),
    radial-gradient(circle at 46px 11px, rgba(255,248,238,0.38) 0 3px, transparent 4px),
    linear-gradient(180deg, rgba(255,248,238,0.18), transparent);
  box-shadow:
    inset 0 0 0 8px rgba(255,248,238,0.08),
    24px 72px 0 -60px rgba(255,248,238,0.55);
  transform: rotate(4deg);
}

.work-category-tile:nth-child(6)::after {
  right: 18px;
  top: 20px;
  width: 138px;
  height: 120px;
  background:
    linear-gradient(90deg, rgba(255,248,238,0.58), rgba(255,248,238,0.58)) 0 74px / 118px 2px no-repeat,
    linear-gradient(90deg, rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 14px 92px / 72px 2px no-repeat,
    radial-gradient(circle at 28px 34px, transparent 0 18px, rgba(255,248,238,0.62) 19px 20px, transparent 21px),
    radial-gradient(circle at 76px 34px, transparent 0 18px, rgba(255,248,238,0.52) 19px 20px, transparent 21px),
    radial-gradient(circle at 124px 34px, transparent 0 18px, rgba(255,248,238,0.46) 19px 20px, transparent 21px);
  transform: rotate(-4deg);
}

.work-category-tile span {
  position: relative;
  z-index: 1;
  color: rgba(255,248,238,0.66);
  font-family: var(--font-logo);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.work-category-tile strong {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 0.92;
}

.work-category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(45,48,37,0.28);
}

.work-category-page {
  width: min(1180px, calc(100% - 36px));
  min-height: 72vh;
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding: clamp(34px, 5vw, 68px);
  color: var(--forest);
  background:
    radial-gradient(circle at 16% 8%, rgba(184,117,69,0.2), transparent 18rem),
    radial-gradient(circle at 86% 12%, rgba(88,122,139,0.2), transparent 22rem),
    radial-gradient(circle at 20% 94%, rgba(48,56,40,0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255,248,238,0.96), rgba(245,227,207,0.9));
  border: 1px solid rgba(184,117,69,0.28);
  border-radius: 26px;
  box-shadow:
    0 34px 90px rgba(45,48,37,0.24),
    inset 0 1px 0 rgba(255,255,255,0.52),
    inset 0 -46px 90px rgba(184,117,69,0.08);
}

.project-gallery-section {
  min-height: auto;
}

.work-category-page .eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

.work-category-page h2 {
  margin-top: 8px;
  color: var(--forest);
  font-family: var(--font-script);
  font-size: clamp(4.6rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  text-shadow: none;
}

.work-category-page p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(45,48,37,0.72);
}

.work-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 30px;
  padding: 11px 18px;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,248,238,0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,248,238,0.98), rgba(234,209,181,0.94));
  cursor: pointer;
}

.black-work-placeholder {
  display: grid;
  place-items: center;
  min-height: clamp(280px, 42vw, 520px);
  margin-top: clamp(26px, 4vw, 44px);
  border: 1px dashed rgba(48,56,40,0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 12%, rgba(88,122,139,0.12), transparent 15rem),
    radial-gradient(circle at 85% 22%, rgba(184,117,69,0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255,248,238,0.52), rgba(234,209,181,0.34));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
}

.black-work-placeholder span {
  color: rgba(48,56,40,0.34);
  font-family: var(--font-logo);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.work-gallery figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.work-gallery figcaption {
  color: var(--brand-orange);
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.work-gallery img {
  width: 100%;
  height: auto;
  align-self: start;
  border-radius: 14px;
  box-shadow:
    0 22px 58px rgba(45,48,37,0.24),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

.work-gallery-zoom {
  display: block;
  padding: 0;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.work-gallery-zoom:hover img {
  transform: translateY(-3px);
  box-shadow:
    0 28px 70px rgba(45,48,37,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

.black-work-placeholder:has(.work-gallery:not([hidden])) {
  display: block;
  padding: clamp(10px, 1.8vw, 18px);
  min-height: auto;
}

.project-image-modal {
  width: min(1280px, calc(100% - 24px));
  max-height: 94vh;
  padding: clamp(12px, 2vw, 22px);
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(255,248,238,0.97), rgba(245,227,207,0.94));
  border: 1px solid rgba(184,117,69,0.34);
  border-radius: 24px;
  box-shadow: 0 36px 110px rgba(0,0,0,0.36);
}

.project-image-modal::backdrop {
  background: rgba(22,27,20,0.72);
  backdrop-filter: blur(5px);
}

.project-image-modal img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.project-image-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 0 10px 12px;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
  border: 1px solid rgba(184,117,69,0.34);
  border-radius: 50%;
  background: rgba(255,248,238,0.94);
  box-shadow: 0 10px 24px rgba(45,48,37,0.18);
  cursor: pointer;
}

@media (max-width: 820px) {
  .work-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .recent-work-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .recent-work-categories {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1120px);
  }

  .work-category-tile {
    min-height: 170px;
    border-radius: 18px;
  }

  .work-category-page {
    width: min(100% - 24px, 1120px);
    border-radius: 18px;
  }
}

/* Match the portfolio tile shading on the homepage service boxes */
.service-grid-two .service-card {
  border: 1px solid rgba(255,248,238,0.38) !important;
  box-shadow:
    0 26px 68px rgba(45,48,37,0.26),
    inset 0 1px 0 rgba(255,248,238,0.24),
    inset 0 -48px 88px rgba(0,0,0,0.14) !important;
}

.service-grid-two .service-card:nth-child(1) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.26), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(184,117,69,0.24), transparent 8rem),
    radial-gradient(circle at 22% 90%, rgba(48,56,40,0.42), transparent 12rem),
    linear-gradient(150deg, rgba(118,158,174,0.98) 0%, rgba(83,126,143,0.96) 46%, rgba(51,74,87,0.98) 100%) !important;
}

.service-grid-two .service-card:nth-child(2) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.28), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(88,122,139,0.22), transparent 8rem),
    radial-gradient(circle at 22% 90%, rgba(96,80,52,0.44), transparent 12rem),
    linear-gradient(150deg, rgba(207,139,88,0.98) 0%, rgba(184,117,69,0.96) 48%, rgba(118,75,45,0.98) 100%) !important;
}

/* Final services saplings: larger, visible, and with a companion. */
.services {
  overflow: visible !important;
}

.services-ornament {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  max-height: none !important;
  filter: drop-shadow(0 24px 34px rgba(111,93,61,0.14));
}

.services-ornament-main {
  right: clamp(2px, 4vw, 76px) !important;
  bottom: -190px !important;
  width: min(46vw, 560px) !important;
  opacity: 0.94 !important;
  transform: none !important;
}

.services-ornament-companion {
  right: clamp(-28px, 1vw, 28px) !important;
  bottom: -128px !important;
  width: min(28vw, 340px) !important;
  opacity: 0.72 !important;
  transform: translateX(36%) scale(0.72) !important;
}

@media (max-width: 1180px) {
  .services-ornament-main {
    right: -64px !important;
    bottom: -150px !important;
    width: min(68vw, 520px) !important;
    opacity: 0.62 !important;
  }

  .services-ornament-companion {
    right: -102px !important;
    bottom: -118px !important;
    width: min(46vw, 330px) !important;
    opacity: 0.48 !important;
  }
}

@media (max-width: 700px) {
  .services-ornament-main {
    right: -96px !important;
    bottom: -112px !important;
    width: min(88vw, 390px) !important;
    opacity: 0.4 !important;
  }

  .services-ornament-companion {
    display: none;
  }
}

/* Featured portfolio hierarchy */
.recent-work-categories {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.8vw, 22px) !important;
  width: min(1040px, calc(100% - 44px)) !important;
}

.work-category-tile {
  min-height: clamp(178px, 17vw, 230px) !important;
}

.work-category-feature {
  grid-column: span 2;
  min-height: clamp(260px, 28vw, 360px) !important;
  padding: clamp(30px, 3vw, 42px) !important;
}

.work-category-feature strong {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.work-category-tile::after {
  opacity: 0.22;
}

.work-category-tile:nth-child(1),
.work-category-tile:nth-child(6) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.24), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(184,117,69,0.22), transparent 8rem),
    radial-gradient(circle at 24% 92%, rgba(88,122,139,0.26), transparent 12rem),
    linear-gradient(150deg, rgba(122,139,97,0.98) 0%, rgba(85,103,68,0.96) 48%, rgba(48,56,40,0.98) 100%) !important;
}

.work-category-tile:nth-child(2),
.work-category-tile:nth-child(4) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.26), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(184,117,69,0.24), transparent 8rem),
    radial-gradient(circle at 22% 90%, rgba(48,56,40,0.42), transparent 12rem),
    linear-gradient(150deg, rgba(118,158,174,0.98) 0%, rgba(83,126,143,0.96) 46%, rgba(51,74,87,0.98) 100%) !important;
}

.work-category-tile:nth-child(3),
.work-category-tile:nth-child(5) {
  background:
    radial-gradient(circle at 14% 9%, rgba(255,248,238,0.28), transparent 7rem),
    radial-gradient(circle at 86% 14%, rgba(88,122,139,0.22), transparent 8rem),
    radial-gradient(circle at 22% 90%, rgba(96,80,52,0.44), transparent 12rem),
    linear-gradient(150deg, rgba(207,139,88,0.98) 0%, rgba(184,117,69,0.96) 48%, rgba(118,75,45,0.98) 100%) !important;
}

.work-category-tile:nth-child(1)::after {
  right: 24px;
  top: 24px;
  width: 178px;
  height: 128px;
  background:
    linear-gradient(90deg, rgba(255,248,238,0.62), rgba(255,248,238,0.62)) 0 82px / 142px 2px no-repeat,
    linear-gradient(90deg, rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 16px 102px / 90px 2px no-repeat,
    radial-gradient(circle at 32px 38px, transparent 0 22px, rgba(255,248,238,0.62) 23px 24px, transparent 25px),
    radial-gradient(circle at 88px 38px, transparent 0 22px, rgba(255,248,238,0.52) 23px 24px, transparent 25px),
    radial-gradient(circle at 144px 38px, transparent 0 22px, rgba(255,248,238,0.46) 23px 24px, transparent 25px) !important;
  filter: none;
  transform: rotate(-3deg);
}

.work-category-tile:nth-child(2)::after {
  content: "";
  right: 24px;
  top: 34px;
  width: 190px;
  height: 126px;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 0 28px / 100% 2px no-repeat,
    radial-gradient(circle at 18px 14px, rgba(255,248,238,0.48) 0 3px, transparent 4px),
    radial-gradient(circle at 36px 14px, rgba(255,248,238,0.42) 0 3px, transparent 4px),
    radial-gradient(circle at 54px 14px, rgba(255,248,238,0.38) 0 3px, transparent 4px),
    linear-gradient(180deg, rgba(255,248,238,0.18), transparent) !important;
  box-shadow: inset 0 0 0 9px rgba(255,248,238,0.08);
  clip-path: none;
  transform: rotate(3deg);
}

.work-category-tile:nth-child(3)::after {
  right: 18px;
  top: 16px;
  width: 118px;
  height: 118px;
  background: url("assets/lantern-mark-clean.png") center / contain no-repeat !important;
  filter: brightness(0) invert(1);
  border: 0;
  box-shadow: none;
  clip-path: none;
  transform: none;
}

.work-category-tile:nth-child(4)::after {
  right: 22px;
  top: 18px;
  width: 104px;
  height: 126px;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255,248,238,0.5), rgba(255,248,238,0.5)) 22px 30px / 58px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 22px 48px / 44px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 22px 66px / 58px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.42), rgba(255,248,238,0.42)) 22px 84px / 38px 2px no-repeat,
    linear-gradient(180deg, rgba(255,248,238,0.18), transparent) !important;
  box-shadow: inset 0 0 0 8px rgba(255,248,238,0.08);
  clip-path: none;
  transform: rotate(-5deg);
}

.work-category-tile:nth-child(5)::after {
  right: 18px;
  top: 14px;
  width: 98px;
  height: 126px;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 9px;
  background:
    linear-gradient(rgba(255,248,238,0.48), rgba(255,248,238,0.48)) 20px 28px / 54px 2px no-repeat,
    linear-gradient(rgba(255,248,238,0.38), rgba(255,248,238,0.38)) 20px 44px / 42px 2px no-repeat,
    radial-gradient(circle at 28px 72px, rgba(255,248,238,0.42) 0 9px, transparent 10px),
    linear-gradient(135deg, transparent 0 74%, rgba(255,248,238,0.34) 74% 100%),
    linear-gradient(180deg, rgba(255,248,238,0.2), transparent) !important;
  box-shadow:
    inset 0 0 0 8px rgba(255,248,238,0.08),
    -10px 10px 0 -2px rgba(255,248,238,0.12),
    -20px 20px 0 -5px rgba(255,248,238,0.08);
  clip-path: none;
  transform: rotate(5deg);
}

.work-category-tile:nth-child(6)::after {
  content: "L & O";
  right: 14px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 142px;
  height: 58px;
  color: rgba(255,248,238,0.6);
  font-family: var(--font-logo);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 2px solid rgba(255,248,238,0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,248,238,0.18) 12% 13%, transparent 13% 87%, rgba(255,248,238,0.18) 87% 88%, transparent 88%),
    linear-gradient(180deg, rgba(255,248,238,0.2), transparent) !important;
  box-shadow:
    inset 0 0 0 7px rgba(255,248,238,0.06),
    -18px 18px 0 -12px rgba(255,248,238,0.18);
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%, 12% 50%);
  transform: rotate(-5deg);
}

@media (max-width: 900px) {
  .recent-work-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .recent-work-categories {
    grid-template-columns: 1fr !important;
    width: min(100% - 24px, 1120px) !important;
  }

  .work-category-feature {
    grid-column: auto;
    min-height: 220px !important;
  }
}

