:root {
  --ivory: #f4f0e8;
  --paper: #fffdf8;
  --charcoal: #252522;
  --ink-soft: #5e5a54;
  --orange: #b85832;
  --orange-dark: #934125;
  --stone: #ddd5c8;
  --line: rgba(37, 37, 34, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.site-header {
  min-height: 100px;
  padding: 0 clamp(24px, 4.2vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand-tag {
  margin-top: 9px;
  color: #8a8174;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.8vw, 58px);
}

.desktop-nav a {
  position: relative;
  font-size: 15px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-cta {
  justify-self: end;
  color: var(--orange);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-cta span {
  margin-left: 8px;
  transition: transform 200ms ease;
  display: inline-block;
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

.hero {
  min-height: 774px;
  display: grid;
  grid-template-columns: 49% 51%;
  grid-template-rows: minmax(632px, 1fr) 142px;
}

.hero-copy {
  padding: clamp(70px, 8.5vw, 128px) clamp(36px, 5.5vw, 84px) 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.65), transparent 34%),
    var(--ivory);
  animation: heroCopyIn 700ms ease both;
  grid-column: 1;
  grid-row: 1;
}

.eyebrow {
  margin: 0 0 27px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(62px, 6.25vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.accent-rule {
  width: 68px;
  height: 2px;
  margin: 36px 0 28px;
  background: #aa9e8c;
}

.hero-description {
  max-width: 530px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 31px;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.button-secondary:hover {
  background: var(--charcoal);
  color: #fff;
}

.hero-visual {
  min-height: 774px;
  position: relative;
  overflow: hidden;
  background: #a88b70;
  grid-column: 2;
  grid-row: 1 / 3;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 59% center;
  animation: heroImageIn 1s ease both;
}

.hero-block {
  width: clamp(54px, 4.7vw, 76px);
  height: 235px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #c15a28, var(--orange));
}

.project-location {
  position: absolute;
  right: 26px;
  bottom: 24px;
  padding: 9px 13px;
  background: rgba(25, 23, 20, 0.76);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.project-location span {
  margin-right: 7px;
  color: #fff;
  font-size: 9px;
}

.trust-strip {
  width: 100%;
  min-height: 142px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #eee8de;
  border-top: 1px solid rgba(37, 37, 34, 0.05);
  grid-column: 1;
  grid-row: 2;
}

.trust-item {
  min-height: 70px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--orange);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 51px);
  font-weight: 400;
  line-height: 1;
}

.trust-item span {
  margin-top: 10px;
  color: #4f4b45;
  font-size: 13px;
}

.trust-item .shield-mark {
  width: 42px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 46% 46% 52% 52% / 34% 34% 66% 66%;
  font-family: inherit;
  font-size: 22px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(184, 88, 50, 0.4);
  outline-offset: 4px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

#services,
#projects,
#about,
#process,
#contact {
  scroll-margin-top: 98px;
}

.section-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: clamp(24px, 6vw, 90px);
  padding-left: clamp(24px, 6vw, 90px);
}

.section-label {
  padding-top: 7px;
  color: #8a8174;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label span {
  white-space: nowrap;
}

.section-label i {
  width: 46px;
  height: 1px;
  margin-top: 22px;
  display: block;
  background: var(--orange);
}

.about-section {
  padding-top: clamp(105px, 11vw, 160px);
  padding-bottom: clamp(105px, 11vw, 160px);
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) 1.8fr minmax(300px, 0.9fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

.about-heading .eyebrow,
.section-heading-row .eyebrow,
.project-intro .eyebrow,
.process-heading .eyebrow,
.promise-content .eyebrow,
.faq-intro .eyebrow,
.contact-copy .eyebrow {
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.about-heading h2,
.section-heading-row h2,
.project-intro h2,
.process-heading h2,
.promise-content h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(47px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.about-copy {
  padding-top: 49px;
}

.about-copy p,
.section-heading-row > p,
.project-intro > p,
.process-heading > p,
.faq-intro > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  width: max-content;
  margin-top: 29px;
  padding-bottom: 8px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--charcoal);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.services-section {
  padding-top: clamp(100px, 10vw, 145px);
  padding-bottom: clamp(110px, 11vw, 160px);
  border-top: 1px solid var(--line);
}

.section-heading-row,
.project-intro,
.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.section-heading-row > p,
.project-intro > p,
.process-heading > p {
  margin-bottom: 2px;
}

.services-grid {
  margin-top: clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 340px;
  padding: clamp(32px, 3.2vw, 49px);
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.16);
  transition: background 240ms ease, transform 240ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37, 37, 34, 0.08);
}

.service-number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 57px 0 17px;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 37px);
  font-weight: 400;
  line-height: 1.05;
}

.service-card p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.service-card a {
  margin-top: auto;
  padding-top: 31px;
  display: flex;
  justify-content: space-between;
  color: #777065;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--orange);
}

.projects-section {
  padding-top: clamp(105px, 11vw, 160px);
  padding-bottom: clamp(110px, 12vw, 175px);
  background: var(--paper);
}

.project-grid {
  margin-top: clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.project-card-small {
  margin-top: 128px;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.project-card-large .project-image {
  aspect-ratio: 1.25 / 1;
}

.project-card-small .project-image {
  aspect-ratio: 1 / 1.04;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

.project-index {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.project-info {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.project-info p {
  margin: 0 0 8px;
  color: #8a8174;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.project-info > span {
  padding-bottom: 7px;
  color: #7b7469;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-info b {
  margin-left: 8px;
  color: var(--orange);
}

.process-section {
  padding-top: clamp(105px, 10vw, 150px);
  padding-bottom: clamp(110px, 11vw, 160px);
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: #f7f3eb;
}

.process-section::after {
  content: "";
  width: 390px;
  height: 390px;
  position: absolute;
  top: -180px;
  right: -120px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,0.02), 0 0 0 110px rgba(255,255,255,0.018);
}

.process-heading {
  position: relative;
  z-index: 1;
}

.process-heading > p {
  color: rgba(247, 243, 235, 0.62);
}

.process-grid {
  margin-top: clamp(78px, 8vw, 115px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.process-step {
  min-height: 310px;
  padding: 32px clamp(22px, 2.4vw, 36px) 12px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.13);
}

.process-step:not(:first-child) {
  padding-left: clamp(22px, 2.4vw, 36px);
}

.process-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.process-step > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-step div {
  margin-top: auto;
}

.process-step h3 {
  margin: 0 0 18px;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(29px, 2.7vw, 41px);
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: rgba(247, 243, 235, 0.57);
  font-size: 13px;
  line-height: 1.7;
}

.promise-section {
  padding-top: clamp(105px, 11vw, 165px);
  padding-bottom: clamp(105px, 11vw, 165px);
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) 1.14fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.promise-visual {
  min-height: 570px;
  padding: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--orange);
  color: #fff8ef;
  text-align: center;
}

.promise-visual::before,
.promise-visual::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.08);
  transform: rotate(34deg);
}

.promise-visual::before {
  width: 580px;
  height: 1px;
}

.promise-visual::after {
  width: 1px;
  height: 580px;
}

.promise-frame {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,255,255,0.4);
}

.promise-number {
  position: relative;
  z-index: 1;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(130px, 16vw, 230px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.promise-visual > p {
  margin: 35px 0 0;
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.promise-lead {
  max-width: 570px;
  margin: 28px 0 44px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.promise-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.promise-content li {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  border-bottom: 1px solid var(--line);
}

.promise-content li > span {
  padding-top: 3px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
}

.promise-content strong {
  display: block;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.promise-content li p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.testimonial-section {
  background: #e8e0d4;
}

.testimonial-inner {
  padding-top: clamp(100px, 10vw, 145px);
  padding-bottom: clamp(100px, 10vw, 145px);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(30px, 6vw, 90px);
}

.quote-mark {
  margin: -25px 0 0;
  color: var(--orange);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: 150px;
  line-height: 1;
}

.testimonial-inner blockquote {
  max-width: 1020px;
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(35px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.testimonial-person {
  grid-column: 2;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.testimonial-person > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37,37,34,0.3);
  border-radius: 50%;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.testimonial-person p {
  margin: 0;
  color: #756e64;
  font-size: 12px;
  line-height: 1.6;
}

.testimonial-person strong {
  color: var(--charcoal);
  font-size: 13px;
}

.faq-section {
  padding-top: clamp(105px, 11vw, 160px);
  padding-bottom: clamp(105px, 11vw, 160px);
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  gap: clamp(70px, 11vw, 165px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 150px;
}

.faq-intro > p {
  max-width: 360px;
  margin-top: 24px;
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
}

.faq-item button i {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.faq-answer {
  max-width: 690px;
  padding: 0 58px 31px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding-top: clamp(100px, 10vw, 145px);
  padding-bottom: clamp(100px, 10vw, 145px);
  background: var(--orange);
  color: #fffaf2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(65px, 10vw, 145px);
  align-items: start;
}

.contact-copy .eyebrow {
  color: #ffe1d2;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 29px 0 0;
  color: rgba(255,250,242,0.75);
  font-size: 16px;
  line-height: 1.7;
}

.contact-details {
  margin-top: 57px;
  display: grid;
  gap: 21px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: 19px;
}

.contact-details span {
  color: rgba(255,250,242,0.57);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-form {
  padding: clamp(30px, 4.5vw, 60px);
  background: var(--paper);
  color: var(--charcoal);
}

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

.quote-form label {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-form label > span {
  color: #736c62;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0 0 13px;
  border: 0;
  border-bottom: 1px solid #cfc6b8;
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 14px;
  outline: 0;
}

.quote-form textarea {
  padding: 13px;
  border: 1px solid #cfc6b8;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}

.form-submit-row {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.form-submit-row > p {
  max-width: 290px;
  margin: 0;
  color: #8a8174;
  font-size: 10px;
  line-height: 1.55;
}

.form-submit-row .button span {
  margin-left: 12px;
}

.form-success {
  margin-top: 26px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--orange);
  background: #f0e9df;
  font-size: 12px;
  line-height: 1.5;
}

.form-success strong {
  font-size: 13px;
}

.site-footer {
  background: #191a18;
  color: #eee9e0;
}

.footer-main {
  padding-top: 90px;
  padding-bottom: 82px;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 55px;
}

.footer-brand .brand-name {
  color: #fffaf2;
}

.footer-brand .brand-tag {
  color: #9e968a;
}

.footer-brand > p {
  max-width: 390px;
  margin: 30px 0 0;
  color: #8d887f;
  font-size: 13px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-main h2 {
  margin: 0 0 12px;
  color: #8d887f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main > div > p {
  margin: 0;
  color: #d0cbc3;
  font-size: 12px;
  line-height: 1.5;
}

.footer-main a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #76736d;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

@keyframes heroImageIn {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    display: block;
    background: var(--charcoal);
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .menu-open .mobile-nav {
    padding: 35px clamp(24px, 6vw, 60px) 42px;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: 0 20px 35px rgba(37,37,34,0.12);
  }

  .mobile-nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    font-size: 30px;
  }

  .mobile-nav .button {
    margin-top: 25px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-copy {
    min-height: 620px;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-visual {
    min-height: 560px;
    grid-column: 1;
    grid-row: 2;
  }

  .trust-strip {
    width: 100%;
    grid-column: 1;
    grid-row: 3;
  }

  .about-section {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 45px;
  }

  .about-heading {
    grid-column: 2;
  }

  .about-copy {
    padding-top: 0;
    grid-column: 2;
  }

  .section-heading-row,
  .project-intro,
  .process-heading {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
  }

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

  .project-card-small {
    margin-top: 80px;
  }

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

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

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.13);
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .promise-section {
    grid-template-columns: 1fr;
  }

  .promise-visual {
    min-height: 500px;
  }

  .faq-section {
    gap: 70px;
  }

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

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

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .section-heading-row,
  .project-intro,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .section-heading-row > p,
  .project-intro > p,
  .process-heading > p {
    max-width: 590px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-heading,
  .about-copy {
    grid-column: 1;
  }

  .about-copy {
    max-width: 610px;
  }

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

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

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

  .project-card-small {
    margin-top: 45px;
  }

  .project-card-small .project-image {
    aspect-ratio: 1.2 / 1;
  }

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

  .process-step,
  .process-step:not(:first-child) {
    min-height: 240px;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.13);
  }

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

  .promise-visual {
    min-height: 440px;
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .quote-mark {
    margin-bottom: -20px;
    font-size: 100px;
  }

  .testimonial-person {
    grid-column: 1;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

  .footer-main {
    grid-template-columns: 1.3fr 1fr;
    row-gap: 52px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 80px;
    padding: 0 20px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-tag {
    font-size: 8px;
  }

  .header-cta {
    font-size: 11px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .menu-open .mobile-nav {
    padding: 26px 20px 34px;
  }

  .hero-copy {
    min-height: auto;
    padding: 66px 24px 58px;
  }

  .hero h1 {
    font-size: clamp(55px, 16.5vw, 76px);
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-block {
    width: 46px;
    height: 140px;
  }

  .trust-strip {
    min-height: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    min-height: 110px;
    padding: 0 6px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-item strong {
    font-size: 30px;
  }

  .trust-item .shield-mark {
    width: 34px;
    height: 39px;
    font-size: 17px;
  }

  .trust-item span {
    font-size: 9px;
  }

  .section-shell {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-label {
    display: none;
  }

  .about-heading h2,
  .section-heading-row h2,
  .project-intro h2,
  .process-heading h2,
  .promise-content h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(43px, 12vw, 59px);
  }

  .service-card {
    padding: 30px 26px;
  }

  .service-card h3 {
    margin-top: 43px;
  }

  .project-card-large .project-image,
  .project-card-small .project-image {
    aspect-ratio: 1 / 1.05;
  }

  .project-info {
    align-items: flex-start;
  }

  .project-info > span {
    display: none;
  }

  .promise-visual {
    min-height: 390px;
    padding: 40px;
  }

  .promise-frame {
    inset: 19px;
  }

  .promise-content li {
    grid-template-columns: 32px 1fr;
  }

  .faq-item button {
    padding: 23px 0;
    font-size: 15px;
  }

  .contact-grid {
    gap: 50px;
  }

  .quote-form {
    padding: 27px 22px;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit-row .button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }
}
