
:root {
  --ink: #121412;
  --deep: #171a17;
  --paper: #f1efe9;
  --paper-2: #e7e3d9;
  --oak: #b8996e;
  --muted: #686b65;
  --line: rgba(18, 20, 18, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--oak); color: var(--ink); }
.section-shell { width: min(100% - 64px, 1380px); margin-inline: auto; }

a:focus-visible {
  outline: 2px solid var(--oak);
  outline-offset: 4px;
}

section[id] { scroll-margin-top: 20px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 12, 10, .38), rgba(10, 12, 10, .08));
}
.brand {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
}
.brand-accent { color: var(--oak); font-weight: 400; }
.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.desktop-nav a, .header-cta, .text-link { transition: color 180ms ease, opacity 180ms ease; }
.desktop-nav a:hover, .header-cta:hover, .text-link:hover { color: var(--oak); }
.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(12,14,12,.28);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: white;
  background: #1c211d;
}
.hero-image, .featured-image {
  background-image: url("assets/wolfwood-hero.webp");
  background-position: center;
  background-size: cover;
}
.hero-image {
  position: absolute;
  inset: 0;
  transform: scale(1.015);
  animation: hero-settle 1.6s cubic-bezier(.2,.75,.2,1) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 12, 0.93) 0%, rgba(11, 14, 12, 0.74) 38%, rgba(11, 14, 12, 0.16) 72%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.58) 0%, transparent 45%);
}
.hero-grid {
  position: absolute;
  inset: 88px 0 0;
  opacity: 0.16;
  background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,.4) 25%, transparent calc(25% + 1px));
  background-size: 25% 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  height: 100%;
  width: min(100% - 88px, 1380px);
  margin: 0 auto;
  padding-top: clamp(180px, 24vh, 250px);
}
.eyebrow, .section-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.eyebrow { color: #d7c9b6; margin-bottom: 28px; }
.hero .hero-title {
  margin: 0;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 8.2vw, 126px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.055em;
}
.hero .hero-title em, .contact h2 em, .intro-copy h2 em { color: var(--oak); font-weight: 400; }
.hero-lead {
  margin: 38px 0 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 34px; }
.button {
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--oak); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--oak); color: var(--ink); }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; }
.hero-index {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 38px;
  display: grid;
  grid-template-columns: 90px auto;
  gap: 15px;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
}
.hero-index > div { height: 1px; background: rgba(255, 255, 255, 0.45); }
.hero-index small { font-size: 9px; letter-spacing: .16em; }

.intro {
  padding: 150px 0 160px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}
.section-label { color: var(--muted); padding-top: 12px; }
.section-label.light { color: rgba(255,255,255,.45); }
.intro-copy { max-width: 960px; }
.intro-kicker { margin: 0 0 26px; color: var(--muted); font-size: 13px; }
.intro-copy h2, .services-heading h2, .process-heading h2, .pricing-copy h2, .about-copy h2, .contact h2, .work-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.intro-copy h2 { max-width: 940px; font-size: clamp(52px, 6.4vw, 92px); line-height: .98; }
.intro-copy > p:last-child {
  margin: 40px 0 0 auto;
  max-width: 570px;
  color: #62655f;
  font-size: 16px;
  line-height: 1.85;
}

.work-section { padding: 120px 0 110px; color: white; background: var(--deep); }
.work-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 70px; align-items: end; }
.work-heading h2 { margin-top: 24px; max-width: 760px; font-size: clamp(54px, 5.4vw, 78px); line-height: 1; }
.work-heading > p { margin: 0 0 4px; color: rgba(255,255,255,.56); line-height: 1.8; font-size: 15px; }
.featured-work {
  width: min(100% - 64px, 1520px);
  min-height: 650px;
  margin: 82px 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(330px, 1fr);
}
.featured-image { min-height: 650px; background-position: center 53%; }
.featured-caption {
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #242823;
}
.featured-caption > span {
  margin-bottom: auto;
  color: var(--oak);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.featured-caption h3 { margin: 0; font-family: Georgia, serif; font-size: 37px; font-weight: 400; line-height: 1.12; }
.featured-caption p { margin: 24px 0 0; color: rgba(255,255,255,.54); line-height: 1.75; font-size: 14px; }
.project-types { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.12); }
.project-types article {
  min-height: 126px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.project-types article > span { color: var(--oak); font-family: Georgia, serif; font-size: 24px; }
.project-types article p { margin: 0 0 6px; color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.project-types article h3 { margin: 0; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }

.services { padding: 150px 0; display: grid; grid-template-columns: 1.05fr 1.5fr; gap: 100px; }
.services-heading h2 { margin-top: 28px; max-width: 580px; font-size: clamp(50px, 5vw, 73px); line-height: 1.02; }
.service-list { border-top: 1px solid var(--line); }
.service-list article {
  position: relative;
  padding: 34px 52px 34px 68px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.service-number { position: absolute; top: 37px; left: 0; color: var(--oak); font-size: 10px; letter-spacing: .1em; }
.service-list h3 { margin: 0; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.service-list p { margin: 0; color: #686b65; font-size: 14px; line-height: 1.7; }
.service-list svg { position: absolute; right: 0; top: 36px; }
.project-types article > svg,
.service-list article > svg { display: none; }

.process { padding: 132px 0 140px; color: white; background: #262b26; }
.process-heading { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.process-heading h2 { margin-top: 28px; font-size: clamp(51px, 5vw, 74px); line-height: 1; }
.process-heading > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.75; }
.process-grid {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.process-grid article {
  min-height: 270px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.16);
}
.process-grid article:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.process-topline { display: flex; justify-content: space-between; color: var(--oak); }
.process-topline span { display: none; }
.process-grid h3 { margin: 56px 0 10px; font-family: Georgia, serif; font-size: clamp(22px, 1.75vw, 24px); font-weight: 400; }
.process-grid p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.65; }

.pricing { padding: 150px 0; display: grid; grid-template-columns: 1.2fr .8fr; gap: 120px; align-items: center; }
.pricing-copy h2 { margin-top: 28px; max-width: 760px; font-size: clamp(50px, 5.2vw, 76px); line-height: 1.02; }
.pricing-copy > p { max-width: 650px; margin: 34px 0 32px; color: #686b65; font-size: 15px; line-height: 1.8; }
.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(184,153,110,.08), transparent 48%),
    #242823;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--oak);
}
.pricing-card > p { margin: 0 0 28px; font-family: Georgia, serif; font-size: 31px; }
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.pricing-card li {
  min-height: 126px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  color: rgba(255,255,255,.78);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  line-height: 1.5;
}
.pricing-card li span { display: none; }
.pricing-card li::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-card li:nth-child(1)::before { background-image: url("assets/icon-dimensions.svg"); }
.pricing-card li:nth-child(2)::before { background-image: url("assets/icon-layers.svg"); }
.pricing-card li:nth-child(3)::before { background-image: url("assets/icon-fittings.svg"); }
.pricing-card li:nth-child(4)::before { background-image: url("assets/icon-installation.svg"); }
.pricing-card small {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 24px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  line-height: 1.6;
}
.pricing-card small::before { content: "✓"; color: var(--oak); font-size: 12px; }

.about { padding: 140px 0; color: white; background: #1b1e1b; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.about-mark {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(184,153,110,.12), transparent 60%),
    repeating-linear-gradient(90deg, transparent, transparent 94px, rgba(255,255,255,.04) 95px);
}
.about-mark::before, .about-mark::after { content: ""; position: absolute; background: rgba(255,255,255,.13); }
.about-mark::before { width: 1px; height: 100%; }
.about-mark::after { width: 100%; height: 1px; }
.about-mark span { position: relative; z-index: 1; color: var(--oak); font-family: Georgia, serif; font-size: 260px; font-style: italic; line-height: 1; }
.about-copy h2 { margin-top: 28px; max-width: 720px; font-size: clamp(48px, 4.9vw, 70px); line-height: 1.03; }
.about-lead { margin: 38px 0 18px; color: rgba(255,255,255,.74) !important; font-size: 17px !important; }
.about-copy > p { max-width: 660px; color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.8; }
.about-copy ul { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 28px; }
.about-copy li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.5; }
.about-copy li svg { flex: 0 0 auto; color: var(--oak); }

.contact {
  position: relative;
  padding: 145px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(184,153,110,.09), transparent 44%),
    #3d433c;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--oak);
}
.contact-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 120px; align-items: end; }
.contact h2 { margin-top: 28px; font-size: clamp(58px, 6.5vw, 94px); line-height: .95; }
.contact-copy {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,18,15,.16);
}
.contact-copy > p:first-child { margin: 0 0 28px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; }
.contact-note { padding: 0; display: flex; flex-direction: column; gap: 7px; border: 0; }
.contact-note span { color: var(--oak); font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.contact-note a {
  width: 100%;
  min-height: 58px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(17,20,17,.22);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.contact-note a::after { content: "↗"; color: var(--oak); font-family: Arial, sans-serif; font-size: 17px; }
.contact-note a:hover { color: white; background: rgba(17,20,17,.42); border-color: rgba(184,153,110,.62); }
.contact-note a + span { margin-top: 12px; }
.contact-note span:first-child::after { content: " · kliknij, aby zadzwonić"; color: rgba(255,255,255,.4); letter-spacing: .08em; }
.contact-note a + span::after { content: " · otwórz pocztę"; color: rgba(255,255,255,.4); letter-spacing: .08em; }
.service-area { margin: 22px 0 0 !important; color: rgba(255,255,255,.46) !important; font-size: 10px !important; text-transform: uppercase; letter-spacing: .13em; line-height: 1.55; }

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--oak);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.94);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.floating-contact span {
  position: absolute;
  right: 66px;
  padding: 8px 10px;
  color: white;
  background: rgba(18,20,18,.92);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.floating-contact:hover { background: #c9aa7c; }
.floating-contact:hover span { opacity: 1; transform: translateX(0); }
.floating-contact.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

footer {
  min-height: 100px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255,255,255,.54);
  background: #141714;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.footer-brand { color: white; }
.footer-phone { justify-self: center; }
footer > a:last-child { justify-self: end; display: flex; gap: 7px; align-items: center; }

@keyframes hero-settle {
  from { transform: scale(1.07); opacity: .5; }
  to { transform: scale(1.015); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image { animation: none; }
  .button { transition: none; }
  .floating-contact, .floating-contact span { transition: none; }
}

@media (max-width: 1000px) {
  .site-header { padding: 0 26px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .section-shell { width: min(100% - 48px, 1380px); }
  .hero-content { width: min(100% - 52px, 1380px); }
  .hero-index { right: 26px; }
  .hero .hero-title { font-size: clamp(70px, 11vw, 110px); }
  .intro { grid-template-columns: 1fr; gap: 40px; }
  .work-heading { grid-template-columns: 1fr; }
  .work-heading > p { max-width: 600px; }
  .featured-work { width: calc(100% - 24px); grid-template-columns: 1.7fr 1fr; }
  .services { grid-template-columns: 1fr; gap: 70px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article { min-height: 230px; }
  .process-grid h3 { margin-top: 44px; }
  .process-grid article:nth-child(2) { border-right: 1px solid rgba(255,255,255,.16); }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .pricing { gap: 40px; }
  .pricing-card { padding: 32px; }
  .pricing-card ul { grid-template-columns: 1fr; }
  .pricing-card li {
    min-height: 84px;
    padding: 17px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .about-grid { gap: 55px; }
  .about-mark { min-height: 490px; }
  .about-mark span { font-size: 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 65px; }
  .contact-copy { max-width: 520px; }
  .floating-contact { display: flex; }
}

@media (max-width: 700px) {
  .section-shell { width: calc(100% - 32px); }
  .site-header { height: 64px; padding: 0 16px; }
  .brand { font-size: 15px; }
  .header-cta {
    min-height: 44px;
    padding: 0 13px;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.34);
    font-size: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    background: rgba(12,14,12,.52);
  }
  .header-cta::before { content: "Wycena"; font-size: 10px; }
  .header-cta svg { width: 15px; height: 15px; }
  .hero { min-height: 660px; height: 100svh; }
  .hero-image { background-position: 62% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11,14,12,.94), rgba(11,14,12,.28)),
      linear-gradient(0deg, rgba(5,6,5,.72), transparent 58%);
  }
  .hero-grid { inset: 64px 0 0; background-size: 50% 100%; }
  .hero-content { width: calc(100% - 32px); padding-top: clamp(122px, 17svh, 148px); }
  .eyebrow { margin-bottom: 20px; font-size: 9px; line-height: 1.5; }
  .hero .hero-title { font-size: clamp(52px, 16.4vw, 68px); line-height: .92; }
  .hero-lead { margin-top: 24px; max-width: 350px; font-size: 14px; line-height: 1.65; }
  .hero-actions {
    width: min(100%, 270px);
    margin-top: 26px;
    display: grid;
    gap: 10px;
    align-items: stretch;
  }
  .hero-actions .button {
    position: relative;
    width: 100%;
    min-height: 48px;
    padding: 0 48px;
  }
  .hero-actions .text-link {
    position: relative;
    width: 100%;
    min-height: 48px;
    padding: 0 48px;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(12,14,12,.42);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
  }
  .hero-actions .button svg,
  .hero-actions .text-link svg {
    position: absolute;
    right: 18px;
    width: 17px;
    height: 17px;
  }
  .hero-actions .text-link svg { right: 17px; }
  .hero-actions .text-link:hover { color: white; background: rgba(184,153,110,.36); }
  .hero-index { display: none; }

  .section-label { padding-top: 0; }
  .intro, .services, .pricing { padding: 72px 0; }
  .intro { gap: 20px; }
  .intro-kicker { margin-bottom: 20px; line-height: 1.55; }
  .intro-copy h2 { font-size: clamp(38px, 10.5vw, 42px); line-height: 1; }
  .intro-copy > p:last-child { margin-top: 24px; font-size: 14px; line-height: 1.75; }

  .work-section { padding: 72px 0 64px; }
  .work-heading { gap: 22px; }
  .work-heading h2 { margin-top: 18px; font-size: clamp(38px, 10.5vw, 42px); }
  .work-heading > p { font-size: 14px; line-height: 1.7; }
  .featured-work { width: calc(100% - 16px); min-height: auto; margin-top: 40px; grid-template-columns: 1fr; }
  .featured-image { min-height: 340px; background-position: 60% center; }
  .featured-caption { min-height: 0; padding: 28px 24px 32px; }
  .featured-caption > span { margin-bottom: 42px; }
  .featured-caption h3 { font-size: 29px; }
  .featured-caption p { margin-top: 18px; line-height: 1.65; }
  .project-types { margin-top: 34px; }
  .project-types article { min-height: 112px; grid-template-columns: 26px 1fr; gap: 10px; }
  .project-types article h3 { font-size: 19px; }
  .project-types article > svg { display: none; }

  .services { gap: 34px; }
  .services-heading h2 { margin-top: 20px; font-size: clamp(38px, 10.5vw, 42px); }
  .service-list article { padding: 26px 0 26px 28px; grid-template-columns: 1fr; gap: 10px; }
  .service-number { top: 29px; }
  .service-list h3 { padding-right: 30px; font-size: 23px; }
  .service-list p { font-size: 14px; line-height: 1.65; }
  .service-list svg { right: 0; top: 29px; width: 18px; height: 18px; opacity: .55; }

  .process { padding: 72px 0 76px; }
  .process-heading { grid-template-columns: 1fr; gap: 22px; }
  .process-heading h2 { margin-top: 20px; font-size: clamp(38px, 10.5vw, 42px); }
  .process-heading > p { font-size: 14px; line-height: 1.7; }
  .process-grid {
    width: 100%;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    gap: 0;
    overflow: visible;
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(-n+2) {
    min-height: 0;
    padding: 25px 8px;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: 26px auto;
    column-gap: 8px;
    row-gap: 8px;
    align-content: start;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .process-grid article:last-child { border-bottom: 0; }
  .process-topline {
    grid-row: 1 / 3;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
  }
  .process-topline svg { width: 20px; height: 20px; }
  .process-grid h3 { margin: 0; align-self: start; font-size: 22px; line-height: 1.08; }
  .process-grid p { margin: 0; align-self: start; font-size: 13px; line-height: 1.65; }

  .pricing { grid-template-columns: 1fr; gap: 34px; }
  .pricing-copy h2 { margin-top: 20px; font-size: clamp(38px, 10.5vw, 42px); }
  .pricing-copy > p { margin: 24px 0; font-size: 14px; line-height: 1.75; }
  .pricing-copy .button { width: 100%; }
  .pricing-card {
    padding: 28px 20px 24px;
    border-color: rgba(255,255,255,.12);
  }
  .pricing-card > p { margin-bottom: 22px; font-size: 29px; }
  .pricing-card ul {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 1px solid rgba(255,255,255,.14);
  }
  .pricing-card li {
    min-height: 124px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    color: rgba(255,255,255,.76);
    border: 0;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: transparent;
    font-size: 13px;
    line-height: 1.45;
  }
  .pricing-card li::before { width: 22px; height: 22px; flex-basis: 22px; }
  .pricing-card small { margin-top: 20px; padding-top: 0; border: 0; font-size: 11.5px; }

  .about { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-mark { display: none; }
  .about-copy h2 { margin-top: 20px; font-size: clamp(38px, 10.5vw, 42px); }
  .about-lead { margin-top: 26px; font-size: 15px !important; line-height: 1.75 !important; }
  .about-copy ul { margin-top: 28px; grid-template-columns: 1fr; gap: 13px; }
  .about-copy li { font-size: 12px; }

  .contact { padding: 72px 0; }
  .contact-grid { gap: 32px; }
  .contact h2 { margin-top: 20px; font-size: clamp(40px, 11vw, 46px); line-height: .98; }
  .contact-copy { max-width: none; padding: 20px; }
  .contact-copy > p:first-child { margin-bottom: 24px; font-size: 14px; line-height: 1.7; }
  .contact-note a { min-height: 60px; padding: 0 14px; font-size: 21px; overflow-wrap: anywhere; }
  .service-area { line-height: 1.55; }

  .floating-contact { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); width: 52px; height: 52px; }
  .floating-contact span { display: none; }

  footer { min-height: 132px; padding: 26px 16px; grid-template-columns: 1fr auto; gap: 12px 20px; }
  footer > a { min-height: 44px; display: flex; align-items: center; }
  .footer-phone { justify-self: end; }
  footer > a:last-child { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 480px) {
  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(-n+2) { grid-template-rows: 42px auto; }
}

@media (max-width: 360px) {
  .brand { font-size: 13px; }
  .header-cta { padding-inline: 10px; font-size: 0; }
  .header-cta::before { font-size: 9px; }
  .hero .hero-title { font-size: 50px; }
  .contact h2 { font-size: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(-n+2) { grid-template-rows: auto auto; }
  .pricing-card ul { grid-template-columns: 1fr; }
  .pricing-card li {
    min-height: 82px;
    padding: 15px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .floating-contact { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); width: 48px; height: 48px; }
  .floating-contact svg { width: 21px; height: 21px; }
}

/* Local service information and accessible FAQ. */
.faq { padding: 120px 0; display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; }
.faq-heading h2 { margin: 26px 0 0; font: 400 clamp(38px, 4.5vw, 64px)/1.05 Georgia, serif; letter-spacing: -.04em; }
.faq-heading > p { max-width: 420px; margin: 26px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.faq-list { min-width: 0; border-top: 1px solid var(--line); }
.faq-list details { padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-size: 18px; line-height: 1.5; padding-right: 12px; }
.faq-list summary::marker { color: var(--muted); }
.faq-list summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
.faq-list p { margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; overflow-wrap: anywhere; }
.faq-list a { text-decoration: underline; text-underline-offset: 3px; }
.service-list article[id] { scroll-margin-top: 24px; }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 600px) {
  .faq { padding: 72px 0; }
  .faq-heading h2 { font-size: clamp(36px, 10vw, 42px); }
  .faq-list summary { font-size: 17px; }
  .faq-list p { font-size: 14px; }
}

.google-profile { margin: 24px 0; font-size: 14px; line-height: 1.6; }
.google-profile a { display: inline-block; padding-block: 10px; text-decoration: underline; text-underline-offset: 4px; }
/* Motion and interaction — September 2026 */
.reading-progress { position: fixed; inset: 0 0 auto; height: 3px; background: var(--oak); transform: scaleX(0); transform-origin: left; z-index: 90; pointer-events: none; }
.site-header { position: fixed; transition: background .3s, box-shadow .3s; }
.site-header.is-scrolled { background: rgba(23,26,23,.97); box-shadow: 0 6px 24px #0002; }
section[id], .service-list article[id] { scroll-margin-top: 108px; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ''; position: absolute; bottom: 3px; left: 0; width: 100%; height: 1px; background: var(--oak); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }
.mobile-nav[hidden], .scene-controls[hidden], .menu-toggle[hidden] { display: none; }
.mobile-nav { position: fixed; top: 88px; left: 0; right: 0; padding: 20px 26px 28px; z-index: 60; background: #171a17; color: var(--paper); border-bottom: 1px solid var(--oak); box-shadow: 0 20px 30px #0004; max-height: calc(100svh - 88px); overflow-y: auto; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid #ffffff20; font-family: Georgia, serif; font-size: 25px; }
.mobile-nav a span { color: var(--oak); font: 11px Arial, sans-serif; }
.hero-content > * { animation: entrance .9s both cubic-bezier(.2,.7,.2,1); }
.hero-content .hero-title { animation-delay: .1s; }
.hero-content .hero-lead { animation-delay: .2s; }
.hero-content .hero-actions { animation-delay: .3s; }
@keyframes entrance { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.button svg, .text-link svg, .service-cta span, .scene-cta span { transition: transform .25s; }
.button:hover svg, .text-link:hover svg, .service-cta:hover span, .scene-cta:hover span { transform: translate(3px,-3px); }
.detail-scene { position: relative; min-width: 0; overflow: hidden; }
.detail-scene .featured-image { height: 100%; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.detail-scene:hover .featured-image { transform: scale(1.025); }
.scene-tag { position: absolute; inset: 24px 24px auto; display: flex; justify-content: space-between; gap: 12px; color: white; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; text-shadow: 0 1px 8px black; }
.scene-tag span { color: #eee0cc; }
.detail-dot { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid #ffffffa0; border-radius: 50%; background: #171a17c9; color: white; font: 12px Arial,sans-serif; cursor: pointer; box-shadow: 0 0 0 7px #ffffff16; transition: background .25s, color .25s, box-shadow .25s; }
.detail-dot:hover, .detail-dot[aria-pressed="true"] { background: var(--paper); color: var(--ink); box-shadow: 0 0 0 10px #ffffff26; }
.detail-dot:focus-visible { outline: 3px solid white; outline-offset: 10px; }
.dot-wood { top: 30%; left: 44%; }
.dot-lines { top: 27%; left: 64%; }
.dot-island { top: 66%; left: 74%; }
.scene-hint { position: absolute; inset: auto 20px 18px; width: fit-content; margin: 0; padding: 12px 16px; font-size: 11px; line-height: 1.5; letter-spacing: .04em; background: #171a17d9; color: white; }
.featured-caption { padding: 42px 32px; justify-content: flex-start; }
.featured-caption > span { margin-bottom: 56px; line-height: 1.6; }
#scene-description { min-height: 270px; }
.detail-index { display: block; margin-bottom: 22px; color: var(--oak); font-size: 10px; letter-spacing: .16em; }
.featured-caption h3 { font-size: clamp(30px, 3vw, 43px); }
.featured-caption p { color: #ffffffa8; }
.scene-cta { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--oak); font-size: 12px; line-height: 1.6; border-top: 1px solid #ffffff20; }
.scene-cta span { font-size: 23px; }
.service-list article { transition: background .3s, border-color .3s; }
.service-list article:hover, .service-list article:focus-within { background: #b8996e12; border-color: var(--oak); }
.service-cta { grid-column: 2; display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 44px; border-bottom: 1px solid var(--line); font-size: 12px; line-height: 1.5; }
.service-cta span { font-size: 22px; color: #7a603d; }
.process-grid { counter-reset: step; }
.process-grid article { position: relative; counter-increment: step; transition: background .3s; }
.process-grid article::after { content: ''; position: absolute; inset: auto 0 0; height: 2px; background: var(--oak); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.process-grid article:hover { background: #ffffff06; }
.process-grid article:hover::after { transform: scaleX(1); }
.process-topline::after { content: '0' counter(step); color: #cbb496; font-size: 11px; letter-spacing: .1em; }
.pricing-card li { transition: background .25s; }
.pricing-card li:hover { background: #b8996e12; }
.faq-list details[open] { border-bottom-color: var(--oak); }
.faq-list details[open] > p { animation: entrance .3s ease-out; }
@media (max-width:1000px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 16px; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; width: 44px; height: 44px; padding: 0; border: 1px solid #ffffff40; background: transparent; color: white; cursor: pointer; }
  .menu-toggle span { display: block; height: 1px; width: 18px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .menu-toggle:focus-visible { outline: 2px solid var(--oak); outline-offset: 4px; }
}
@media (min-width:1001px) { .mobile-nav { display: none; } }
@media (max-width:700px) {
  .site-header { gap: 10px; }
  .mobile-nav { top: 64px; padding: 12px 16px 24px; max-height: calc(100svh - 64px); }
  section[id], .service-list article[id] { scroll-margin-top: 84px; }
  .featured-work { width: calc(100% - 16px); grid-template-columns: 1fr; }
  .detail-scene { min-height: 390px; }
  .detail-scene .featured-image { min-height: 390px; background-position: 60% center; }
  .scene-tag { inset: 18px 16px auto; font-size: 8px; }
  .scene-hint { left: 16px; font-size: 10px; }
  .detail-dot { width: 44px; height: 44px; }
  .dot-wood { left: 38%; }
  .dot-lines { left: 67%; }
  .dot-island { left: 68%; }
  .featured-caption { padding: 30px 24px; }
  .featured-caption > span { margin-bottom: 30px; }
  #scene-description { min-height: 230px; }
  .scene-cta { padding-top: 24px; }
  .service-cta { grid-column: 1; margin-top: 8px; }
  .process-topline::after { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .detail-scene:hover .featured-image { transform: none; }
}
