:root {
  --ink: #0b0b0b;
  --ink-soft: #171717;
  --paper: #f5f1e9;
  --white: #ffffff;
  --gold: #c99b57;
  --gold-light: #e2be82;
  --line: rgba(11, 11, 11, 0.14);
  --muted: #67635d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

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

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.05em;
}

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

.topbar-inner > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-inner a {
  color: var(--white);
}

.topbar-divider {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 241, 233, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(201, 155, 87, 0.42);
}

.brand span {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  line-height: 1;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.18em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.26em;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 30px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 68px;
  padding-top: 48px;
  padding-bottom: 48px;
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 24px 0 24px;
  max-width: 600px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(65px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.12);
  box-shadow: inset 0 -180px 140px -100px rgba(11, 11, 11, 0.8);
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 17px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero-card svg {
  color: var(--gold);
}

.hero-card span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--muted);
  font-size: 10px;
}

.hero-card strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-card-top {
  top: 26px;
  right: 26px;
}

.hero-card-bottom {
  bottom: 28px;
  left: 28px;
}

.hero-number {
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.14);
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
}

.service-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #111111;
}

.service-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 32s linear infinite;
}

.service-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.62);
  padding: 19px 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.service-marquee i {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--gold);
  transform: rotate(45deg);
}

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

.section-heading h2,
.reveal-copy h2,
.craft-copy h2,
.quote-intro h2,
.contact-card h2,
.faq-title h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.split-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-5px);
}

.service-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(11, 11, 11, 0.28);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  background: var(--ink);
  color: var(--gold-light);
}

.service-card > span {
  margin: 28px 0 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  max-width: 190px;
  font-size: 20px;
  line-height: 1.15;
}

.service-card p {
  min-height: 74px;
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.reveal-section {
  background: var(--ink-soft);
  color: var(--white);
}

.reveal-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 68px;
  align-items: center;
}

.reveal-copy p {
  margin: 25px 0 0;
  max-width: 410px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.reveal-checks {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 34px;
}

.reveal-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.reveal-checks svg {
  color: var(--gold-light);
}

.compare-wrap {
  position: relative;
}

.compare-image {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.compare-image > img,
.compare-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  border-right: 2px solid var(--white);
}

.compare-before img {
  width: calc((min(1180px, 100vw - 48px) * 1.28 / 2) + 34px);
  max-width: none;
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
}

.compare-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.compare-label {
  position: absolute;
  top: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.76);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.before-label { left: 18px; }
.after-label { right: 18px; }

.compare-wrap input[type="range"] {
  width: 100%;
  height: 22px;
  position: absolute;
  inset: 50% 0 auto 0;
  opacity: 0;
  cursor: ew-resize;
  transform: translateY(-50%);
}

.craft-section {
  background: var(--white);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 90px;
  align-items: center;
}

.craft-image {
  position: relative;
}

.craft-image::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(201, 155, 87, 0.55);
  z-index: 0;
}

.craft-image img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

.craft-caption {
  position: absolute;
  right: -24px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.craft-caption svg {
  color: var(--gold-light);
}

.craft-copy > p {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.craft-list {
  border-top: 1px solid var(--line);
}

.craft-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.craft-list > div > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
}

.craft-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.craft-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 3px;
  font-size: 14px;
}

.projects-section {
  background: #ded9cf;
}

.projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.filter-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-row button {
  min-height: 38px;
  padding: 0 15px;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(11, 11, 11, 0.18);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
}

.filter-row button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 14px;
}

.project-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--ink);
  text-align: left;
  cursor: zoom-in;
}

.project-card-1 {
  grid-column: span 7;
}

.project-card-2 {
  grid-column: span 5;
}

.project-card-3 {
  grid-column: span 5;
}

.project-card:nth-child(3n + 4) {
  grid-column: span 7;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.project-overlay {
  position: absolute;
  inset: 62% 0 0;
  background: rgba(11, 11, 11, 0.68);
}

.project-meta {
  position: absolute;
  left: 22px;
  right: 60px;
  bottom: 21px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
}

.project-meta small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-meta strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.project-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
}

.process-section {
  background: var(--paper);
}

.process-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  min-height: 245px;
  position: relative;
  padding: 30px 26px 26px 0;
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 26px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  position: absolute;
  top: 28px;
  right: 22px;
  color: rgba(11, 11, 11, 0.25);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.process-grid svg {
  color: var(--gold);
}

.process-grid article > b {
  color: var(--gold);
  font-size: 24px;
}

.process-grid h3 {
  margin: 45px 0 10px;
  font-size: 17px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.quote-section {
  background: var(--ink);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 72px;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 120px;
}

.quote-intro > p {
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 15px;
  line-height: 1.8;
}

.quote-contact {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-contact svg {
  color: var(--gold-light);
}

.quote-contact span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 700;
}

.quote-contact small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.planner-card {
  background: var(--paper);
  color: var(--ink);
  padding: 40px;
}

.planner-step {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.planner-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}

.planner-label > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.planner-label strong {
  font-size: 15px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chips button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(11, 11, 11, 0.2);
  border-radius: 2px;
  font-size: 11px;
  cursor: pointer;
}

.service-chips button.selected {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.service-chips button.selected svg {
  color: var(--gold-light);
}

.planner-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px 0;
}

.planner-fields label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.planner-fields label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.planner-fields select,
.planner-fields input {
  width: 100%;
  min-height: 49px;
  padding: 0 42px 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 11, 11, 0.17);
  border-radius: 0;
  outline: none;
  appearance: none;
  font-size: 12px;
}

.planner-fields input {
  padding-right: 14px;
}

.planner-fields select:focus,
.planner-fields input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 155, 87, 0.15);
}

.planner-fields label > svg {
  position: absolute;
  right: 14px;
  bottom: 16px;
  color: var(--muted);
  pointer-events: none;
}

.planner-preview {
  padding: 20px;
  background: #e8e2d7;
  border-left: 3px solid var(--gold);
}

.planner-preview > span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.planner-preview p {
  margin: 0;
  white-space: pre-line;
  color: #47433e;
  font-size: 11px;
  line-height: 1.55;
}

.planner-send {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
}

.contact-section {
  background: var(--white);
  padding-bottom: 54px;
}

.contact-card {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  background: var(--ink);
  color: var(--white);
}

.contact-card h2 {
  position: relative;
  z-index: 1;
}

.contact-card > div:first-child > p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-mark {
  position: absolute;
  right: 48px;
  top: 50%;
  color: rgba(201, 155, 87, 0.22);
  transform: translateY(-50%);
}

.contact-mark {
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.faq-section {
  background: var(--white);
  padding-top: 64px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list article {
  border-bottom: 1px solid var(--line);
}

.faq-list button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-plus {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list article.open .faq-plus {
  transform: rotate(45deg);
}

.faq-list article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-list article > div p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-list article.open > div {
  grid-template-rows: 1fr;
}

.faq-list article.open > div p {
  padding: 0 50px 24px 0;
}

footer {
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid rgba(201, 155, 87, 0.45);
}

.footer-brand span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.footer-brand small {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
}

.mobile-actions {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden],
.project-card[hidden] {
  display: none;
}

.lightbox > button {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.lightbox-card {
  width: min(980px, 100%);
  max-height: 88vh;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  overflow: auto;
  background: var(--paper);
}

.lightbox-card img {
  width: 100%;
  height: 100%;
  max-height: 76vh;
  object-fit: cover;
}

.lightbox-card > div {
  align-self: end;
  padding: 34px;
}

.lightbox-card span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox-card h3 {
  margin: 10px 0 12px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}

.lightbox-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
  }

  .hero-visual {
    height: 530px;
  }

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

  .reveal-grid,
  .craft-grid,
  .quote-grid,
  .faq-grid {
    gap: 48px;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .topbar-inner > span,
  .nav-cta {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .nav-wrap {
    height: 70px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 74px;
    padding-bottom: 72px;
  }

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

  .hero h1 {
    max-width: 540px;
  }

  .hero-visual {
    height: 520px;
  }

  .split-heading,
  .reveal-grid,
  .craft-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 20px;
  }

  .reveal-copy p {
    max-width: 620px;
  }

  .compare-before img {
    width: min(100vw - 32px, 680px);
  }

  .craft-image {
    max-width: 610px;
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .project-card,
  .project-card-1,
  .project-card-2,
  .project-card-3,
  .project-card:nth-child(3n + 4) {
    grid-column: auto;
  }

  .quote-intro {
    position: static;
  }

  .contact-mark {
    right: 12px;
    opacity: 0.65;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 46px 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 64px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 70px 0;
  }

  .topbar {
    display: none;
  }

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

  .brand strong {
    font-size: 19px;
  }

  .hero-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof strong {
    font-size: 27px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-visual {
    height: 440px;
  }

  .hero-card {
    padding: 11px 12px;
  }

  .hero-card-top {
    top: 14px;
    right: 14px;
  }

  .hero-card-bottom {
    bottom: 14px;
    left: 14px;
  }

  .hero-number {
    font-size: 82px;
  }

  .section-heading h2,
  .reveal-copy h2,
  .craft-copy h2,
  .quote-intro h2,
  .contact-card h2,
  .faq-title h2 {
    font-size: 43px;
  }

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

  .service-card {
    min-height: 315px;
  }

  .compare-image {
    aspect-ratio: 1 / 0.88;
  }

  .compare-before img {
    width: calc(100vw - 28px);
  }

  .craft-grid {
    gap: 60px;
  }

  .craft-image::before {
    inset: 14px -10px -14px 10px;
  }

  .craft-caption {
    right: -10px;
    bottom: 20px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

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

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: 210px;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .planner-card {
    padding: 26px 18px;
  }

  .planner-fields {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 30px;
  }

  .contact-card {
    width: calc(100% - 28px);
    padding: 42px 24px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-mark {
    display: none;
  }

  .faq-grid {
    gap: 46px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-actions a:nth-child(2) {
    color: var(--ink);
    background: var(--gold);
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-card {
    grid-template-columns: 1fr;
  }

  .lightbox-card img {
    height: 48vh;
  }

  .lightbox-card > div {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
