:root {
  --ink: #142033;
  --ink-deep: #0d1726;
  --paper: #f4f0e8;
  --paper-light: #fbfaf7;
  --white: #ffffff;
  --copper: #cf7447;
  --copper-dark: #aa5732;
  --sage: #899283;
  --line: rgba(20, 32, 51, 0.16);
  --shadow: 0 28px 65px rgba(13, 23, 38, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--white);
  background: rgba(13, 23, 38, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 48px, 1400px);
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--copper);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.brand-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.header-cta {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.header-cta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-cta strong {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.03em;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: 46% 54%;
  padding-top: 92px;
  background: var(--ink-deep);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 90px clamp(32px, 6vw, 106px) 195px max(32px, calc((100vw - 1400px) / 2));
}

.eyebrow {
  margin: 0 0 23px;
  color: #e8a17a;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper-dark);
}

.hero h1,
.section h2,
.project-copy h2,
.method-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.2vw, 102px);
}

.hero h1 em,
.section h2 em,
.contact-copy h2 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-light {
  background: var(--paper);
  color: var(--ink-deep);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
}

.button-copper {
  background: var(--copper);
  color: var(--white);
}

.button-copper:hover,
.button-copper:focus-visible {
  background: var(--copper-dark);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 808px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 23, 38, 0.38), transparent 35%);
}

.hero-visual img {
  object-fit: cover;
  object-position: 50% 43%;
}

.hero-label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 113px;
  min-width: 300px;
  display: grid;
  gap: 7px;
  padding: 23px 38px;
  background: rgba(244, 240, 232, 0.92);
  color: var(--ink-deep);
  backdrop-filter: blur(12px);
}

.hero-label span {
  color: var(--copper-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 113px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  color: var(--ink-deep);
}

.hero-proof div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 25px clamp(28px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.hero-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.hero-proof span {
  color: rgba(20, 32, 51, 0.62);
  font-size: 11px;
}

.section {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 120px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.section h2,
.project-copy h2,
.method-heading h2,
.contact-copy h2 {
  font-size: clamp(44px, 5vw, 76px);
}

.intro-copy {
  padding-bottom: 4px;
}

.intro-copy p,
.split-heading > p,
.faq-heading > p {
  margin: 0 0 30px;
  color: rgba(20, 32, 51, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.arrow-link {
  border-color: var(--line);
  color: var(--ink);
}

.services-section {
  padding-top: 30px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: clamp(42px, 4.8vw, 68px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 23, 38, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 4.15;
  overflow: hidden;
  background: #d8d7d2;
}

.service-image img {
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.service-content {
  padding: 33px;
}

.service-content h3,
.commitments-grid h3,
.steps h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-content p {
  min-height: 98px;
  margin: 18px 0 25px;
  color: rgba(20, 32, 51, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.service-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  padding: 7px 10px;
  background: var(--paper);
  color: rgba(20, 32, 51, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-section {
  min-height: 770px;
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--ink-deep);
  color: var(--white);
}

.project-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.project-image img {
  object-fit: cover;
}

.project-copy {
  align-self: center;
  padding: 80px clamp(42px, 7vw, 115px);
}

.project-copy p:not(.eyebrow) {
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.8;
}

.project-details {
  margin: 0 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.project-details dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-details dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

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

.commitments-grid article {
  min-height: 260px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commitments-grid article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.commitments-grid h3 {
  font-size: 24px;
}

.commitments-grid p {
  margin: 16px 0 0;
  color: rgba(20, 32, 51, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.method-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 170px);
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
  background: var(--paper);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 26px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

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

.steps > li > span {
  padding-top: 5px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.steps h3 {
  font-size: 23px;
}

.steps p {
  margin: 8px 0 0;
  color: rgba(20, 32, 51, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(65px, 10vw, 150px);
}

.faq-heading h2 {
  font-size: clamp(42px, 4.3vw, 64px);
}

.faq-heading > p {
  margin-top: 25px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 28px 52px 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 5px;
  color: var(--copper-dark);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -5px 0 28px;
  color: rgba(20, 32, 51, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 140px);
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
  background: var(--ink-deep);
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 30px 0 44px;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.8;
}

.contact-phone {
  display: inline-grid;
  gap: 7px;
}

.contact-phone span {
  color: #e8a17a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-phone strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 400;
}

.contact-form {
  padding: clamp(32px, 5vw, 56px);
  background: var(--paper-light);
  color: var(--ink);
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(20, 32, 51, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease;
}

.contact-form input {
  height: 44px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 18px 0 0;
  color: rgba(20, 32, 51, 0.56);
  font-size: 11px;
  text-align: center;
}

.form-note a {
  border-bottom: 1px solid var(--line);
}

footer {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.25fr;
  gap: 60px;
  padding: 70px max(32px, calc((100vw - 1280px) / 2)) 35px;
  background: #09111d;
  color: var(--white);
}

.footer-brand strong,
.footer-brand span,
footer > div:not(.footer-brand, .footer-bottom) {
  display: grid;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.footer-brand div span,
footer > div > span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer > div:not(.footer-brand, .footer-bottom) {
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

footer > div:not(.footer-brand, .footer-bottom) span {
  margin: 0 0 7px;
}

footer > div:not(.footer-brand, .footer-bottom) strong {
  font-weight: 550;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 25px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.artisan-login-button {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.artisan-login-button:hover,
.artisan-login-button:focus-visible {
  border-color: var(--copper);
  color: var(--white);
}

.edit-image-control {
  position: absolute;
  z-index: 8;
  inset: 16px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  background: rgba(13, 23, 38, 0.5);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background 160ms ease;
}

.edit-image-control:hover,
.edit-image-control:focus-within {
  background: rgba(13, 23, 38, 0.7);
}

.edit-image-control span {
  padding: 12px 17px;
  background: var(--copper);
  box-shadow: 0 12px 30px rgba(13, 23, 38, 0.28);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edit-image-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.edit-mode-status {
  position: fixed;
  z-index: 60;
  top: 112px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f7fff8;
  color: #174c29;
  border: 1px solid rgba(23, 76, 41, 0.2);
  box-shadow: 0 14px 35px rgba(13, 23, 38, 0.16);
  font-size: 11px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3aa45c;
  box-shadow: 0 0 0 4px rgba(58, 164, 92, 0.14);
}

.edit-mode-status button {
  margin-left: 5px;
  padding: 4px 0 4px 10px;
  border: 0;
  border-left: 1px solid rgba(23, 76, 41, 0.18);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-toast {
  position: fixed;
  z-index: 60;
  top: 170px;
  right: 24px;
  max-width: min(340px, calc(100vw - 48px));
  padding: 12px 16px;
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(13, 23, 38, 0.2);
  font-size: 11px;
}

.login-modal-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(9, 17, 29, 0.76);
  backdrop-filter: blur(9px);
}

.login-modal {
  position: relative;
  width: min(100%, 480px);
  padding: clamp(32px, 6vw, 54px);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.login-modal h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.login-intro {
  margin: 20px 0 30px;
  color: rgba(20, 32, 51, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.login-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
}

.login-modal form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.login-modal form input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(20, 32, 51, 0.24);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline: none;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.login-modal form input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(207, 116, 71, 0.12);
}

.login-modal form .button {
  width: 100%;
  margin-top: 6px;
}

.login-error {
  margin: -5px 0 16px;
  color: #a8342c;
  font-size: 12px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1050px) {
  .header-inner {
    gap: 25px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: 52% 48%;
  }

  .hero-copy {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .method-section,
  .faq-section {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    position: absolute;
  }

  .edit-mode-status {
    top: 90px;
    right: 16px;
  }

  .admin-toast {
    top: 146px;
    right: 16px;
  }

  .edit-image-control {
    inset: 10px;
  }

  .header-inner {
    width: min(100% - 34px, 1400px);
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

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

  .header-cta strong {
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: 76px;
  }

  .hero-copy {
    padding: 70px 25px 56px;
  }

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

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 540px;
    order: 2;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(13, 23, 38, 0.25), transparent 40%);
  }

  .hero-label {
    bottom: 0;
    min-width: min(90%, 315px);
  }

  .hero-proof {
    position: static;
    order: 3;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: min(100% - 40px, 1280px);
    padding: 85px 0;
  }

  .intro-section,
  .split-heading,
  .method-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .split-heading {
    gap: 38px;
  }

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

  .service-image {
    aspect-ratio: 5 / 3.7;
  }

  .service-content p {
    min-height: 0;
  }

  .project-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .project-image {
    min-height: 580px;
  }

  .project-copy {
    padding: 70px 26px 80px;
  }

  .method-section,
  .contact-section {
    gap: 55px;
    padding: 85px 20px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    padding: 55px 20px 90px;
  }

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

  .mobile-call {
    position: fixed;
    z-index: 40;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 18px;
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(13, 23, 38, 0.26);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 52px;
  }

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

  .hero-visual img {
    object-position: 52% 35%;
  }

  .section h2,
  .project-copy h2,
  .method-heading h2,
  .contact-copy h2 {
    font-size: 44px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-content {
    padding: 28px 24px;
  }

  .project-image {
    min-height: 470px;
  }

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

  .commitments-grid article {
    min-height: 220px;
  }

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

  .contact-form {
    padding: 30px 22px;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-bottom {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


[hidden] {
  display: none !important;
}

.editable-image-shell {
  position: relative;
}
