:root {
  --ink: #1c1c1a;
  --paper: #f2eee6;
  --paper-deep: #e6ded1;
  --bronze: #a6804b;
  --line: rgba(28, 28, 26, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 92px;
  padding: 0 4.5vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 0.35s ease, background 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(242, 238, 230, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  line-height: 1;
}

.brand-mark {
  width: 36px;
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.4;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--bronze);
  font-size: 7px;
  letter-spacing: 0.55em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.header-cta span {
  display: grid;
  width: 34px;
  height: 34px;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease;
}

.header-cta:hover span {
  color: white;
  background: var(--bronze);
  border-color: var(--bronze);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 8px;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.3s ease;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: 120px 7vw 40px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  animation: heroZoom 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes heroZoom {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 13, 10, 0.76) 0%, rgba(15, 13, 10, 0.34) 48%, rgba(15, 13, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 13, 10, 0.35), transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 100svh;
  padding: 180px 7vw 9vh;
}

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

.eyebrow {
  margin: 0 0 28px;
  color: #655d52;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.display-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(68px, 9vw, 146px);
}

.hero h1 em,
.display-title em {
  color: var(--bronze);
  font-weight: 400;
}

.hero-intro {
  max-width: 530px;
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 70px;
  padding-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid;
}

.text-link span {
  font-size: 16px;
  transition: transform 0.3s ease;
}

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

.hero-index {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 5px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-index div {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 6vw;
  bottom: 18vh;
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.hero-stamp span {
  position: absolute;
  inset: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-align: center;
}

.hero-stamp b {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.section {
  padding: 140px 7vw;
}

.section-number {
  color: #82786c;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 4vw;
}

.intro-content {
  max-width: 1120px;
}

.display-title {
  font-size: clamp(54px, 6.7vw, 104px);
}

.intro-bottom {
  display: grid;
  grid-template-columns: minmax(250px, 430px) 1fr;
  gap: 9vw;
  align-items: end;
  margin-top: 70px;
}

.local-seo {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 4vw;
  padding-top: 40px;
}

.local-seo-content {
  max-width: 1120px;
}

.local-seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6vw;
  max-width: 850px;
  margin-top: 55px;
  color: #625c54;
  font-size: 13px;
}

.local-seo-copy p {
  margin: 0;
}

.intro-bottom > p {
  margin: 0;
  color: #625c54;
  font-size: 14px;
}

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

.stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.stats span {
  margin-top: 12px;
  color: #756d63;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects {
  padding-top: 70px;
  background: #e8e2d8;
}

.projects-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.projects-note {
  max-width: 280px;
  margin: 0 0 8px;
  color: #6d665d;
  font-size: 12px;
}

.project-card {
  margin-bottom: 100px;
}

.project-card a {
  display: block;
}

.project-image-wrap {
  position: relative;
  height: min(68vw, 780px);
  overflow: hidden;
  background: #cfc5b6;
}

.project-image-wrap.portrait {
  height: min(59vw, 730px);
}

.project-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-image-wrap picture {
  display: block;
  height: 100%;
}

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

.project-open {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 54px;
  height: 54px;
  place-content: center;
  color: white;
  background: rgba(28, 28, 26, 0.65);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: color 0.3s ease, background 0.3s ease;
}

.project-card:hover .project-open {
  color: var(--ink);
  background: var(--paper);
}

.project-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 28, 26, 0.28);
}

.project-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
}

.project-meta span {
  color: #696158;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}

.project-offset {
  margin-top: 160px;
}

.gallery {
  margin-top: 35px;
  padding-top: 80px;
  border-top: 1px solid rgba(28, 28, 26, 0.18);
}

.gallery-head {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 70px;
}

.gallery-head h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.gallery-category {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4vw;
  padding: 54px 0;
  border-top: 1px solid rgba(28, 28, 26, 0.16);
  scroll-margin-top: 96px;
}

.gallery-category-title {
  position: sticky;
  top: 95px;
  align-self: start;
}

.gallery-category-title span {
  display: block;
  margin-bottom: 15px;
  color: var(--bronze);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.gallery-category-title h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: #d8d0c4;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: white;
  background: rgba(28, 28, 26, 0.62);
  backdrop-filter: blur(8px);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 5vw 42px;
  background: rgba(18, 16, 13, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox figure {
  width: min(1180px, 100%);
  max-height: 100%;
  margin: 0;
}

.image-lightbox img {
  width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox figcaption {
  margin-top: 16px;
  color: rgba(242, 238, 230, 0.78);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  color: var(--paper);
  cursor: pointer;
  background: rgba(242, 238, 230, 0.08);
  border: 1px solid rgba(242, 238, 230, 0.35);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  color: var(--ink);
  background: var(--paper);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-content: center;
  color: var(--paper);
  cursor: pointer;
  background: rgba(242, 238, 230, 0.08);
  border: 1px solid rgba(242, 238, 230, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease;
}

.lightbox-nav:hover {
  color: var(--ink);
  background: var(--paper);
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.services {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 4vw;
  color: var(--paper);
  background: var(--ink);
}

.light-number {
  color: #8e867b;
}

.display-title.light {
  color: var(--paper);
}

.services-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.service-list {
  padding-top: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 42px 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.service-row > span {
  color: var(--bronze);
  font-size: 9px;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.service-row p {
  margin: 0;
  color: #a9a39b;
  font-size: 11px;
}

.service-row b {
  font-weight: 400;
  transition: transform 0.3s ease;
}

.service-row:hover b {
  transform: translate(4px, -4px);
}

.process-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

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

.process-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-grid article:first-child {
  border-left: 1px solid var(--line);
}

.process-grid span {
  color: var(--bronze);
  font-size: 9px;
}

.process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-top: 58px;
  place-content: center;
  color: var(--bronze);
  border: 1px solid rgba(166, 128, 75, 0.32);
  border-radius: 50%;
  background: rgba(166, 128, 75, 0.045);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.process-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.process-grid article:hover .process-icon {
  color: var(--paper);
  background: var(--bronze);
  transform: translateY(-4px);
}

.process-grid h3 {
  margin: 38px 0 18px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.process-grid p {
  margin: 0;
  color: #6f685f;
  font-size: 12px;
}

.quote {
  position: relative;
  display: grid;
  min-height: 80vh;
  place-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.quote-image,
.quote-overlay {
  position: absolute;
  inset: 0;
}

.quote-image {
  background: image-set(
    url("assets/project-hospitality.webp") type("image/webp"),
    url("assets/project-hospitality.jpg") type("image/jpeg")
  ) center / cover;
  background-attachment: fixed;
}

.quote-overlay {
  background: rgba(20, 17, 13, 0.62);
}

.quote-content {
  position: relative;
  z-index: 2;
}

.quote-content > span {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.7;
}

.quote blockquote {
  margin: 24px 0;
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.98;
}

.quote blockquote em {
  color: #d2b083;
  font-weight: 400;
}

.quote p {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  background: var(--paper-deep);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 40px 0;
  color: #665f56;
  font-size: 13px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--serif);
  font-size: 22px;
}

.contact-details span {
  margin-top: 12px;
  color: #796f64;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact-form label {
  display: block;
  margin-bottom: 24px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #6f665b;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 0 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28, 28, 26, 0.34);
  border-radius: 0;
  outline: none;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 36px;
  padding: 20px 24px;
  color: white;
  background: var(--ink);
  border: 0;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--bronze);
}

.form-note {
  margin: 15px 0 0;
  color: #746b61;
  font-size: 9px;
  line-height: 1.7;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  padding: 90px 7vw 30px;
  color: var(--paper);
  background: #151513;
}

.footer-brand {
  display: block;
  padding-bottom: 60px;
  font-family: var(--serif);
  font-size: clamp(70px, 14vw, 210px);
  line-height: 0.75;
  letter-spacing: -0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand em {
  color: var(--bronze);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 36px;
  padding: 40px 0 65px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: #8f8a82;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px 10px 10px;
  color: white;
  background: #1f8f58;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  font-size: 10px;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 27px;
  fill: white;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:first-child {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.16em;
}

.legal-header span {
  color: var(--bronze);
  font-size: 10px;
}

.legal-header > a:last-child {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 110px 30px 140px;
}

.legal-content h1 {
  margin: 0 0 70px;
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 110px);
  font-weight: 400;
  line-height: 0.95;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.legal-content p {
  color: #625c54;
}

.legal-content section a,
.legal-back {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-back {
  display: inline-block;
  margin-top: 45px;
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    font-family: var(--serif);
    font-size: 55px;
    line-height: 1.3;
  }

  .mobile-menu p {
    position: absolute;
    bottom: 35px;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .site-header.menu-active {
    color: var(--paper);
    background: var(--ink);
    border-color: rgba(255,255,255,0.15);
  }

  .site-header.menu-active .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .intro,
  .local-seo,
  .services {
    grid-template-columns: 1fr;
  }

  .section-number {
    margin-bottom: 70px;
  }

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

  .local-seo-copy {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-head,
  .gallery-category {
    grid-template-columns: 1fr;
  }

  .gallery-category-title {
    position: static;
  }

  .gallery-grid,
  .gallery-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row {
    grid-template-columns: 35px 1fr auto;
  }

  .service-row p {
    display: none;
  }

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

@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding: 0 22px;
  }

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

  .brand-mark {
    width: 31px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 145px 24px 60px;
  }

  .hero h1 {
    font-size: clamp(61px, 19vw, 90px);
  }

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

  .hero-index,
  .hero-stamp {
    display: none;
  }

  .section {
    padding: 90px 24px;
  }

  .display-title {
    font-size: clamp(50px, 15vw, 75px);
  }

  .intro-bottom {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
  }

  .stats {
    gap: 12px;
  }

  .stats strong {
    font-size: 31px;
  }

  .projects-head {
    display: block;
    margin-bottom: 55px;
  }

  .projects-note {
    margin-top: 25px;
  }

  .project-image-wrap,
  .project-image-wrap.portrait {
    height: 112vw;
  }

  .project-meta {
    display: block;
  }

  .project-meta h3 {
    font-size: 30px;
  }

  .project-meta span {
    display: block;
    margin-top: 7px;
  }

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

  .project-offset {
    margin-top: 0;
  }

  .project-card {
    margin-bottom: 75px;
  }

  .gallery {
    padding-top: 55px;
  }

  .gallery-head {
    margin-bottom: 35px;
  }

  .gallery-category {
    padding: 38px 0;
  }

  .gallery-grid,
  .gallery-grid.compact {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 330px;
  }

  .image-lightbox {
    padding: 76px 18px 30px;
  }

  .image-lightbox img {
    max-height: calc(100svh - 150px);
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 24px;
    width: 44px;
    height: 44px;
    font-size: 34px;
    transform: none;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .service-row {
    gap: 12px;
  }

  .service-row h3 {
    font-size: 21px;
  }

  .process-head {
    display: block;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .process-grid article {
    min-height: auto;
    padding: 28px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-icon {
    width: 66px;
    height: 66px;
    margin-top: 36px;
  }

  .process-icon svg {
    width: 36px;
    height: 36px;
  }

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

  .process-grid h3 {
    margin: 45px 0 12px;
  }

  .quote {
    min-height: 70vh;
    padding: 30px;
  }

  .quote-image {
    background-attachment: scroll;
  }

  .contact {
    gap: 80px;
  }

  .footer-brand {
    padding-bottom: 40px;
    font-size: 23vw;
    line-height: 0.82;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    padding: 12px;
  }

  .whatsapp-float span {
    display: none;
  }
}

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