@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/BricolageGrotesque-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/BricolageGrotesque-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/BricolageGrotesque-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Figtree-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Figtree-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Figtree-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Figtree-Bold.ttf") format("truetype");
}

:root {
  --navy: #0f2744;
  --navy-mid: #173a5c;
  --ink: #1c232b;
  --muted: #5a6570;
  --cream: #f3eee4;
  --paper: #fbfaf7;
  --white: #ffffff;
  --red: #d83a2c;
  --red-dark: #b42d22;
  --green: #1b8a3a;
  --green-dark: #146c2d;
  --line: rgba(15, 39, 68, 0.12);
  --shadow: 0 18px 40px rgba(15, 39, 68, 0.12);
  --header: 7.25rem;
  --wrap: 72rem;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-dark);
}

h1,
h2,
h3,
.brand__name {
  font-family: "Bricolage Grotesque", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 80;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(46rem, calc(100% - 2.5rem));
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.kicker--on-dark {
  color: #7dcc8d;
}

.section--flush {
  padding: 0;
}

.folio-jump {
  margin-top: 1.6rem;
  font-weight: 700;
}

.folio-jump a {
  text-decoration: none;
  color: var(--navy);
}

.folio-jump a:hover {
  color: var(--green-dark);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  margin: 0 0 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.btn--call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--navy);
}

.hero-actions,
.nav-ctas,
.footer-ctas,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

body.nav-open {
  overflow: hidden;
}

.header-bar {
  display: none;
  background: var(--navy);
  color: #d5e0ea;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.header-bar p {
  margin: 0;
}

.header-bar__note {
  justify-self: start;
  min-width: 0;
}

.header-bar__tag {
  justify-self: center;
  text-align: center;
  color: #d8f0d8;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  white-space: nowrap;
}

.header-bar__phone {
  justify-self: end;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.header-bar__phone:hover {
  color: #c8efc8;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand img {
  width: 4.4rem;
  height: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand__place {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--navy);
  margin-inline: auto;
  position: relative;
  transition: transform 0.2s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: block;
  min-height: calc(100svh - 4.4rem);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.75rem 0;
  min-height: 2.75rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-dark);
}

.nav-ctas {
  margin-top: 0.8rem;
}

/* Hero */
.hero {
  display: grid;
  background: var(--cream);
}

.hero-copy {
  padding: 2.2rem 1.25rem 2.4rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  margin: 0 0 0.9rem;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--navy-mid);
  font-weight: 600;
  max-width: 32rem;
  margin-bottom: 0.9rem;
}

.hero-sub {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-links {
  margin-top: 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-links a {
  color: var(--navy);
  text-decoration: none;
}

.hero-links a:hover {
  color: var(--green-dark);
}

.hero-media {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 28%;
  min-height: 18rem;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.hero-media:hover img {
  transform: scale(1.07);
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(15, 39, 68, 0.78);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.7rem;
}

.hours-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.hours-chip span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
}

/* Trust */
.trust {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0 1.8rem;
}

.trust-grid {
  display: grid;
  gap: 1.4rem;
}

.trust-lead {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--white);
  max-width: 11ch;
}

.trust-list {
  display: grid;
  gap: 0;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-item:hover {
  color: #d8f0d8;
}

.trust-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #7dcc8d;
  line-height: 1;
}

.trust-item h2 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0 0 0.15rem;
}

.trust-item p {
  color: #c5d2de;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: 4.2rem 0;
}

.section--alt {
  background: var(--cream);
  padding: 4.8rem 0 5.1rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-media {
  overflow: hidden;
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-media:hover img {
  transform: scale(1.05);
}

.about-frame {
  position: relative;
  isolation: isolate;
}

.about-frame::after {
  content: "";
  position: absolute;
  inset: 0.8rem -0.8rem -0.8rem 0.8rem;
  border: 2px solid var(--green);
  z-index: -1;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.stat {
  background: var(--white);
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--red);
}

.stat strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Services as split rows */
.service-row {
  display: grid;
  gap: 0;
  background: var(--white);
  margin-bottom: 1.4rem;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line);
}

.service-row img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-row:hover img {
  transform: scale(1.06);
}

.service-media {
  min-height: 16rem;
}

.service-copy {
  padding: 1.5rem 1.3rem 1.7rem;
}

.service-copy h3 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.service-copy p {
  color: var(--muted);
}

.service-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.service-link:hover {
  color: var(--navy);
}

/* Portfolio */
.folio-grid {
  display: grid;
  gap: 0.8rem;
}

.folio-item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 14rem;
  height: 100%;
}

.folio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 14rem;
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: saturate(0.92);
}

.folio-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.folio-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(15, 39, 68, 0.86));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.folio-item--tall img {
  min-height: 22rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review {
  background: var(--white);
  padding: 1.5rem 1.4rem 1.4rem;
  border-top: 4px solid var(--green);
}

.review-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 0.7rem;
}

.review blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.review cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-mid);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: 1.8rem 1.4rem;
}

.contact-card > * {
  max-width: 34rem;
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 0 0 0.7rem;
}

.contact-card p,
.contact-list {
  color: #d3deea;
}

.contact-list {
  list-style: none;
  margin: 1.2rem 0 1.4rem;
  padding: 0;
}

.contact-list li {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list a {
  color: var(--white);
}

.map-wrap {
  min-height: 22rem;
  background: #d9e2ea;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* Privacy */
.policy {
  padding: 4rem 0 5rem;
}

.policy h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 0.5rem;
}

.policy h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
}

.policy ul {
  padding-left: 1.15rem;
}

.policy li {
  margin-bottom: 0.4rem;
}

/* Footer */
.site-footer {
  background: #0b1c31;
  color: #c9d5e0;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.footer-brand img {
  width: 6.5rem;
  background: var(--white);
  padding: 0.35rem;
  margin-bottom: 0.9rem;
}

.footer-lead {
  max-width: 22rem;
}

.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7dcc8d;
  margin-bottom: 0.7rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a,
.footer-legal-block a,
.footer-base a {
  color: #e8eef4;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-legal-block a:hover,
.footer-base a:hover {
  color: #b6e4bc;
}

.footer-nav li {
  margin-bottom: 0.35rem;
}

.footer-legal-block p {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.footer-base__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 0 5.5rem;
}

/* Mobile dock */
.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(251, 250, 247, 0.96);
  border-top: 1px solid var(--line);
  z-index: 35;
}

.mobile-dock .btn {
  width: 100%;
}

body.nav-open .mobile-dock {
  display: none;
}

@media (min-width: 760px) {
  .header-bar {
    display: block;
  }

  .header-bar__tag {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .hero-copy {
    padding: 3.2rem 2rem 3.4rem;
  }

  .hero-media {
    min-height: 24rem;
  }

  .hero-media img {
    min-height: 24rem;
  }

  .folio-grid {
    grid-template-columns: 1.15fr 1fr;
    grid-auto-rows: 13.5rem;
  }

  .folio-item--tall {
    grid-row: span 2;
  }

  .folio-item--span {
    grid-column: 1 / -1;
  }

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

  .review:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
  }
}

@media (min-width: 760px) and (max-width: 899px) {
  .header-bar__inner {
    grid-template-columns: 1fr auto;
  }

  .header-bar__tag {
    display: none;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 0.9rem;
    min-height: 0;
  }

  .site-nav ul {
    display: flex;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.5rem 0.65rem;
    min-height: 0;
    font-size: 0.92rem;
    position: relative;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.2rem;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

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

  .nav-ctas {
    margin-top: 0;
  }

  .nav-ctas .btn {
    min-height: 2.55rem;
    padding: 0.4rem 0.95rem;
  }

  .hero {
    grid-template-columns: minmax(22rem, 0.92fr) 1.08fr;
    min-height: min(36rem, calc(100svh - var(--header)));
    overflow: hidden;
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 12%;
    width: auto;
    margin-left: 0;
    min-height: 0;
  }

  .hero-media {
    position: relative;
    min-height: 0;
    height: auto;
    overflow: hidden;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .trust {
    padding: 2.6rem 0;
  }

  .trust-grid {
    grid-template-columns: minmax(14rem, 0.72fr) 1.28fr;
    align-items: center;
    gap: 3.2rem;
  }

  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 3.5rem;
  }

  .about-media img {
    aspect-ratio: 5 / 6;
  }

  .service-row {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .service-row--flip {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .service-row--flip .service-media {
    order: 2;
  }

  .service-media {
    height: 100%;
    min-height: 18rem;
  }

  .service-row img {
    height: 100%;
    min-height: 18rem;
  }

  .service-copy {
    padding: 2.4rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .folio-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 14.2rem;
  }

  .folio-item--tall {
    grid-row: span 2;
  }

  .folio-item--span {
    grid-column: 1 / -1;
  }

  .folio-item img {
    min-height: 100%;
    height: 100%;
  }

  .folio-item--span img {
    min-height: 16rem;
    object-position: center 70%;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 28rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 100%;
    height: 100%;
  }

  .mobile-dock {
    display: none;
  }

  .footer-base__inner {
    padding-bottom: 1.2rem;
  }

  .header-main {
    min-height: 4.7rem;
  }
}

@media (min-width: 1280px) {
  .header-bar__tag {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .site-nav,
  .site-nav.is-open {
    gap: 1.4rem;
  }

  .wrap {
    width: min(74rem, calc(100% - 6rem));
  }

  .hero-copy {
    padding-left: 16%;
    padding-right: 3.5rem;
  }

  .contact-card {
    padding: 3.2rem 12%;
  }
}

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

  .hero-media img,
  .about-media img,
  .service-row img,
  .folio-item img,
  .btn {
    transition: none;
  }
}
