
:root {
  --ink: #171511;
  --ink-soft: #24211c;
  --paper: #f1ede5;
  --paper-light: #faf8f3;
  --copper: #c68b55;
  --copper-dark: #9f6534;
  --line: rgba(23, 21, 17, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--copper);
  color: var(--ink);
}

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

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

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

svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px clamp(28px, 5vw, 76px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
}

.brand-logo {
  width: clamp(92px, 8vw, 118px);
  height: auto;
  object-fit: contain;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.brand-title small {
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-title strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .02em;
}

.footer-brand .brand-logo {
  width: 138px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-name span {
  color: var(--copper);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  transition: color 180ms ease;
}

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

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta svg {
  transition: transform 180ms ease;
}

.header-cta:hover svg {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(32px, 6vw, 112px) 74px clamp(28px, 6vw, 100px);
  background:
    radial-gradient(circle at 8% 80%, rgba(198, 139, 85, 0.14), transparent 29%),
    linear-gradient(135deg, #1a1814 0%, #12110e 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 29px;
  height: 1px;
  background: currentColor;
}

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

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

.hero h1 {
  max-width: 690px;
  font-size: clamp(57px, 6.2vw, 100px);
  line-height: 0.94;
}

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

.hero-description {
  max-width: 590px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 15px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 37px;
}

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

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

.button-primary {
  min-width: 220px;
  padding: 0 26px;
  background: var(--copper);
  color: var(--ink);
}

.button-primary:hover {
  background: #d99e66;
}

.text-link {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  color: var(--copper);
  font-size: 18px;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(34px, 6vh, 68px);
}

.signature-line {
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-signature strong,
.hero-signature small {
  display: block;
}

.hero-signature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}

.hero-signature small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 100svh;
  background: #2a251f;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 17, 14, 0.27), transparent 25%, rgba(18, 17, 14, 0.04));
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.hero-visual:hover .hero-image img {
  transform: scale(1.025);
}

.hero-image-main {
  inset: 0 33% 0 0;
}

.hero-image-main img {
  object-position: center 45%;
}

.hero-image-side {
  inset: 0 0 0 67%;
  border-left: 3px solid var(--ink);
}

.hero-image-side img {
  object-position: center;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  bottom: 8%;
  left: 56%;
  display: flex;
  width: 144px;
  height: 144px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(23, 21, 17, 0.79);
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-badge strong {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
}

.hero-badge span {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vertical-label {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 31%;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.quality-strip {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-evenly;
  overflow: hidden;
  padding: 14px 4vw;
  background: var(--copper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.quality-strip i {
  font-size: 7px;
}

.section {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 0.99;
}

.section-heading > p,
.section-heading > div + p {
  margin: 0 0 8px;
  color: #6e675e;
  font-size: 15px;
  line-height: 1.85;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(45px, 8vw, 125px);
  align-items: center;
}

.about-image {
  position: relative;
  height: min(69vw, 720px);
  max-height: 720px;
  min-height: 480px;
  overflow: hidden;
}

.about-image::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.big-quote {
  margin: 0 0 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-style: italic;
  line-height: 1.22;
}

.about-points {
  border-top: 1px solid var(--line);
}

.about-points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.about-points article > span,
.service-number {
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.about-points h3,
.services-list h3,
.process-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about-points h3 {
  font-size: 20px;
}

.about-points p {
  margin: 8px 0 0;
  color: #766f65;
  font-size: 13px;
  line-height: 1.6;
}

.services {
  background: var(--ink);
  color: #fff;
}

.services-heading > p {
  color: rgba(255, 255, 255, 0.51);
}

.services-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
}

.services-list article {
  position: relative;
  min-height: 330px;
  padding: 38px clamp(24px, 2.4vw, 42px) 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease;
}

.services-list article:last-child {
  border-right: 0;
}

.services-list article:hover {
  background: #211e19;
}

.services-list h3 {
  margin-top: 54px;
  font-size: 28px;
}

.services-list p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.75;
}

.services-list article > a {
  position: absolute;
  right: 33px;
  bottom: 33px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  color: var(--copper);
  transition: background 180ms ease, color 180ms ease;
}

.services-list article > a:hover {
  background: var(--copper);
  color: var(--ink);
}

.services-list article > a svg {
  width: 16px;
}

.projects {
  background: var(--paper-light);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-grid {
  column-count: 4;
  column-gap: 15px;
}

.project-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 15px;
  overflow: hidden;
  vertical-align: top;
  background: #d9d1c4;
  animation: reveal 500ms both;
  animation-delay: var(--delay);
  break-inside: avoid;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.project-card.wide {
  width: 100%;
}

.project-card.tall {
  width: 100%;
}

.project-card.square {
  width: 100%;
}

.project-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 220ms ease;
}

.project-card:hover img {
  filter: brightness(0.93);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 13, 10, 0.88), transparent 56%);
  content: "";
  opacity: .76;
  transition: opacity 220ms ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-overlay {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 23px;
  left: 25px;
  color: #fff;
}

.project-overlay span {
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-overlay h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.button-outline {
  min-width: 235px;
  margin: 42px auto 0;
  padding: 0 25px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: #fff;
}

.process {
  background: #e5ded2;
}

.process-heading {
  display: block;
}

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

.process-grid article {
  min-height: 235px;
  padding: 31px clamp(20px, 2.7vw, 42px);
  border-right: 1px solid var(--line);
}

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

.process-grid strong {
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.process-grid div {
  margin-top: 57px;
}

.process-grid h3 {
  font-size: 23px;
}

.process-grid p {
  margin: 12px 0 0;
  color: #70695f;
  font-size: 13px;
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 0;
  padding: 0;
  background: var(--ink-soft);
  color: #fff;
}

.contact-photo {
  min-height: 760px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 135px) clamp(35px, 9vw, 135px);
}

.contact h2 {
  max-width: 690px;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 1;
}

.contact-content > p:not(.eyebrow) {
  max-width: 550px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  line-height: 1.8;
}

.button-light {
  width: max-content;
  padding: 0 27px;
  background: #25d366;
  color: #fff;
}

.button-light:hover {
  background: #1fbd59;
}

.whatsapp-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 45px;
  margin-top: 55px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details div:last-child {
  grid-column: 1 / -1;
}

.contact-details small,
.contact-details a,
.contact-details span {
  display: block;
}

.contact-details small {
  margin-bottom: 9px;
  color: var(--copper);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details span {
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.5;
}

footer {
  padding: 72px clamp(28px, 7vw, 110px) 28px;
  background: #0f0e0c;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 55px;
  padding-bottom: 58px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: end;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-socials a:hover {
  color: var(--copper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: flex;
  height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

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

  .site-header nav {
    display: none;
  }

  .project-grid {
    column-count: 3;
  }

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

  .hero-copy {
    padding-right: 50px;
  }

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

  .hero-image-main {
    right: 0;
  }

  .hero-image-side,
  .vertical-label {
    display: none;
  }

  .hero-badge {
    left: auto;
    right: 28px;
  }

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

  .services-list article:nth-child(2) {
    border-right: 0;
  }

  .services-list article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    padding: 20px 22px;
  }

  .brand-logo {
    width: 80px;
  }

  .brand {
    gap: 9px;
  }

  .brand-title small {
    margin-bottom: 4px;
    font-size: 6px;
  }

  .brand-title strong {
    font-size: 12px;
  }

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

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 33;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: transparent;
    color: #fff;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-header nav.is-open {
    position: fixed;
    z-index: 32;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 80px 40px;
    background: rgba(18, 17, 14, .98);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 88svh;
    padding: 118px 24px 56px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(54px, 16vw, 77px);
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.7;
  }

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

  .button-primary {
    width: 100%;
  }

  .hero-signature {
    margin-top: 35px;
  }

  .hero-visual {
    min-height: 74svh;
  }

  .hero-badge {
    right: 20px;
    bottom: 20px;
    width: 116px;
    height: 116px;
  }

  .quality-strip {
    justify-content: flex-start;
    gap: 25px;
    padding-right: 25px;
    padding-left: 25px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading > p,
  .section-heading > div + p {
    max-width: 610px;
    margin-top: 25px;
  }

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

  .about-image {
    height: 110vw;
    min-height: 460px;
  }

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

  .services-list article,
  .services-list article:nth-child(2) {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .services-list h3 {
    margin-top: 34px;
  }

  .project-grid {
    column-count: 2;
  }

  .instagram-link {
    margin-top: 26px;
  }

  .process-grid article,
  .process-grid article:nth-child(2) {
    display: grid;
    min-height: auto;
    grid-template-columns: 50px 1fr;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid div {
    margin-top: 0;
  }

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

  .contact-photo {
    min-height: 520px;
    max-height: 70svh;
  }

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

  .footer-main > p {
    max-width: 420px;
    text-align: left;
  }

  .footer-socials {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 78px 20px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .about-image {
    height: 118vw;
    min-height: 420px;
  }

  .about-points article {
    grid-template-columns: 40px 1fr;
  }

  .project-grid {
    column-count: 1;
  }

  .project-card,
  .project-card.tall,
  .project-card.square,
  .project-card.wide {
    width: 100%;
    height: auto;
  }

  .project-card:nth-child(2n) {
    height: auto;
  }

  .button-outline {
    width: 100%;
  }

  .contact-photo {
    min-height: 430px;
  }

  .contact-content {
    padding: 75px 22px;
  }

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

  .contact-details div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

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

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

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