:root {
  --ink: #171311;
  --text: #2f2a26;
  --muted: #756d65;
  --paper: #fffdf9;
  --warm: #f5eee7;
  --warm-2: #ece2d8;
  --sage: #65735e;
  --clay: #b56752;
  --line: #ded4ca;
  --white: #ffffff;
  --whatsapp: #06d36f;
  --shadow: 0 22px 58px rgba(32, 24, 18, 0.15);
  --header-height: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 850;
  line-height: 1.02;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 88px);
  padding: 18px 28px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  border-bottom: 1px solid rgba(222, 212, 202, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand img {
  width: 258px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.main-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
  border-color: rgba(181, 103, 82, 0.35);
  background: rgba(181, 103, 82, 0.1);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: #3c332d;
  color: var(--white);
}

.hero {
  height: calc(100vh - var(--header-height));
  min-height: 760px;
  max-height: 940px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(23, 19, 17, 0.46);
}

.hero-media,
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: block;
}

.hero-slide,
.page-hero > img,
.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  display: grid;
  justify-items: center;
}

.hero-copy h1 {
  color: var(--white);
  font-size: 4.4rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}

.hero-title-line {
  display: block;
}

.hero-text {
  width: min(690px, 100%);
  margin: 24px auto 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
  font-weight: 650;
}

.eyebrow,
.section-kicker,
.service-label {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.button,
.tab {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary,
.tab.is-active {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-whatsapp {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  color: #092612;
}

.hero-actions,
.contact-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-actions {
  width: min(690px, 100%);
}

.hero-actions .button {
  flex: 1 1 210px;
}

.hero-actions .button-primary {
  flex-basis: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 72px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: var(--white);
}

.hero-arrow-prev {
  left: 8px;
}

.hero-arrow-next {
  right: 8px;
}

.section,
.page-section {
  padding: 96px 28px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 780px;
}

.lead {
  margin: 22px 0 18px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.intro-copy p:not(.lead),
.home-seo-copy p,
.gallery-intro,
.service-copy p,
.category-card p,
.price-card p,
.muted-note,
.page-section p:not(.section-kicker):not(.lead),
.contact-summary,
.contact-details,
.footer-card p {
  color: var(--muted);
}

.home-claim {
  padding: 58px 28px 42px;
  background: var(--paper);
}

.home-claim .section-inner {
  width: min(940px, 100%);
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 42px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  text-align: center;
  box-shadow: 0 18px 50px rgba(32, 24, 18, 0.08);
}

.home-claim h2 {
  font-size: 2.1rem;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 56px;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
}

.intro-copy .section-kicker,
.intro-copy h2,
.intro-copy .lead {
  grid-column: 1 / -1;
}

.intro-copy h2::after,
.footer-contact h2::after,
.page-hero h1::after,
.section-rule::after {
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  content: "";
  background: var(--clay);
}

.portrait-frame {
  margin: 0;
}

.portrait-frame img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-seo {
  background: var(--warm);
}

.home-seo-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.home-seo h2 {
  max-width: 560px;
}

.home-seo-copy {
  columns: 2 280px;
  column-gap: 44px;
}

.home-seo-copy p {
  break-inside: avoid;
}

.home-seo-list {
  display: grid;
  gap: 10px;
  margin: 0 0 6px;
  padding-left: 20px;
  color: var(--muted);
}

.home-seo-list li {
  break-inside: avoid;
}

.home-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-seo-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--clay);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

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

.teaser-card,
.service-card,
.category-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.teaser-image,
.service-card > img,
.category-card img {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.teaser-card {
  position: relative;
}

.teaser-title {
  position: relative;
  width: calc(100% - 44px);
  min-height: 138px;
  margin: -78px auto 22px;
  padding: 30px 32px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 44px rgba(32, 24, 18, 0.12);
  backdrop-filter: blur(12px);
}

.teaser-title::before,
.teaser-title::after,
.price-card .service-label::after {
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: var(--clay);
}

.teaser-title::before {
  margin-bottom: 22px;
}

.teaser-title::after {
  margin-top: 22px;
}

.teaser-title h3 {
  font-size: 1.55rem;
}

.teaser-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-photo {
  padding-top: 20px;
}

.feature-photo img {
  width: min(960px, 100%);
  height: 610px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.customers {
  background: var(--paper);
  text-align: center;
}

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

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 22px;
}

.logo-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
}

.footer-contact {
  background: var(--warm);
  padding: 96px 28px 44px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 54px;
  align-items: start;
}

.footer-contact h2 {
  font-size: 2.45rem;
}

.footer-actions {
  display: grid;
  gap: 18px;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 72px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(117, 109, 101, 0.35);
}

.footer-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 0;
  background: #e5e2de;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
}

.footer-icon svg,
.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-icon svg {
  width: 28px;
  height: 28px;
}

.social-links .icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-inner .social-links a:hover,
.footer-inner .social-links a:focus-visible {
  border-color: var(--clay);
  color: var(--clay);
}

.footer-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.site-footer {
  background: var(--warm);
  color: var(--text);
  padding: 24px 28px 44px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-inner nav a {
  color: var(--muted);
}

.footer-inner .social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 20, 18, 0.88);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.page-hero {
  height: 62vh;
  min-height: 690px;
  max-height: 820px;
  display: grid;
  align-items: center;
  padding: 80px 28px;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: 4rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.page-title {
  padding: 120px 28px 80px;
  background: var(--warm);
}

.page-title > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.surface {
  background: var(--warm);
}

.split-section,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
}

.split-section.is-reversed {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  height: 320px;
}

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

.category-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.category-card img {
  height: 235px;
  border-radius: 0;
}

.category-card h3,
.category-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.category-card h3 {
  margin-top: 24px;
}

.category-card p {
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  color: var(--muted);
}

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

.price-card {
  display: grid;
  align-content: start;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(32, 24, 18, 0.12);
  overflow: hidden;
}

.price-card .service-label {
  min-height: 142px;
  margin: 0;
  padding: 34px 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.28rem;
}

.price-card .service-label::after {
  margin-top: 22px;
  background: var(--clay);
}

.price-card h3,
.price-card p,
.price-card ul,
.price-card .button {
  margin-left: 28px;
  margin-right: 28px;
}

.price-card h3 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.price-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  color: var(--muted);
}

.price-card .button {
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 32px;
}

.price-card.is-featured {
  transform: translateY(-12px);
}

.muted-note {
  max-width: 330px;
}

.stats-band {
  padding: 70px 28px;
  background: var(--ink);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 850;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-band {
  padding: 76px 28px;
  background: var(--warm);
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.gallery-heading {
  align-items: center;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-intro {
  max-width: 720px;
  margin: -18px 0 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 235px;
  grid-auto-flow: dense;
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #120f0e;
  color: var(--white);
  cursor: pointer;
}

.gallery-item.is-wide {
  grid-column: span 2;
}

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

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.contact {
  background: var(--paper);
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 84px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 38px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(181, 103, 82, 0.14);
}

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

.privacy-check {
  grid-template-columns: 24px 1fr;
  align-items: start;
  text-transform: none;
  font-weight: 400;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.required {
  color: #c63d2f;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 700;
}

.form-message p {
  margin: 0 0 8px;
}

.form-message ul {
  margin: 0;
  padding-left: 20px;
}

.form-message.is-success {
  border-color: #138a43;
  background: #e9f8ef;
}

.form-message.is-error {
  border-color: #c62c23;
  background: #fff0ef;
}

.contact-details {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--warm);
  font-style: normal;
}

.contact-details strong,
.contact-details span {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-embed {
  position: relative;
  width: 100%;
  min-height: 430px;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-2);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 430px;
  min-height: 430px;
  display: block;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 72px 20px 28px;
  background: rgba(23, 19, 17, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 10px 14px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: min(510px, calc(100% - 44px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  justify-content: flex-start;
}

.cookie-actions .button {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  left: 0;
  bottom: 28px;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 0 8px 8px 0;
  background: var(--whatsapp);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .site-header {
    justify-content: space-between;
    gap: 24px;
  }

  .brand img {
    width: 220px;
  }

  .main-nav {
    gap: 6px;
  }

  .hero,
  .page-hero {
    min-height: 700px;
  }

  .hero-copy h1 {
    font-size: 3.45rem;
  }

  .teaser-grid,
  .service-grid {
    gap: 22px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 86px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 14px 18px;
  }

  .brand img {
    width: 172px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
    border-width: 0 0 1px;
    border-color: var(--line);
    border-radius: 0;
    padding: 14px 16px;
  }

  .main-nav a.is-current {
    border-color: var(--line);
    background: var(--warm);
    color: var(--ink);
  }

  .hero,
  .page-hero {
    min-height: 620px;
    max-height: none;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .intro-grid,
  .home-seo-grid,
  .split-section,
  .split-section.is-reversed,
  .process-grid,
  .contact-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 34px;
  }

  .intro-copy {
    grid-template-columns: 1fr;
  }

  .home-seo-copy {
    columns: auto;
  }

  .teaser-grid,
  .service-grid,
  .price-grid,
  .footer-cards {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .stats-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .gallery-heading,
  .cta-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.25rem;
  }

  h2,
  .footer-contact h2 {
    font-size: 1.76rem;
  }

  .section,
  .page-section,
  .footer-contact {
    padding: 66px 18px;
  }

  .hero,
  .page-hero {
    min-height: 560px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .button,
  .tab {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .cookie-actions,
  .gallery-tabs {
    width: 100%;
  }

  .hero-arrow {
    width: 34px;
    height: 54px;
    font-size: 2.2rem;
  }

  .home-claim {
    padding: 30px 18px 18px;
  }

  .home-claim h2 {
    font-size: 1.55rem;
  }

  .portrait-frame img,
  .teaser-image,
  .service-card > img,
  .feature-photo img {
    height: 320px;
  }

  .image-stack,
  .content-grid,
  .stats-grid,
  .logo-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    height: 310px;
  }

  .gallery-grid {
    grid-auto-rows: 290px;
  }

  .gallery-item.is-wide,
  .gallery-item.is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
