:root {
  --ink: #f5f3e9;
  --muted: #c9c7b8;
  --charcoal: #10140f;
  --graphite: #1b231b;
  --panel: #243024;
  --line: rgba(245, 243, 233, 0.14);
  --gold: #c9b27c;
  --green: #7d9674;
  --error: #e9a29a;
  --whatsapp: #25d366;
  --instagram: #e4405f;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(16, 20, 15, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand strong {
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 24px);
  color: rgba(245, 243, 233, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.nav-cta {
  border: 1px solid rgba(201, 178, 124, 0.5);
  padding: 10px 14px;
}

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  background: rgba(245, 243, 233, 0.05);
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease;
}

.social-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  background: rgba(245, 243, 233, 0.1);
}

.social-whatsapp {
  color: var(--whatsapp);
}

.social-instagram {
  color: var(--instagram);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  padding: 4px;
  background: rgba(245, 243, 233, 0.04);
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  min-height: 28px;
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.language-switcher a.is-active {
  background: var(--gold);
  color: var(--charcoal);
}

.language-full {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(245, 243, 233, 0.04);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px clamp(20px, 7vw, 96px) 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 15, 0.92), rgba(16, 20, 15, 0.52) 45%, rgba(16, 20, 15, 0.82)),
    url("/static/images/projects/tropical-residence.webp") center / cover no-repeat;
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  max-width: 880px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.02;
  font-weight: 700;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5rem);
}

h3 {
  font-size: 1.12rem;
  font-weight: 500;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 36px;
  color: rgba(245, 243, 233, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.hero-actions,
.direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #11100e;
}

.button-ghost {
  background: rgba(245, 243, 233, 0.04);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(84px, 12vw, 150px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 120px);
}

.split-content p,
.contact-intro p,
.project-narrative p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 46px;
  background: var(--line);
}

.metric-row div {
  min-height: 132px;
  padding: 24px;
  background: var(--graphite);
}

.metric-row strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 120px);
  margin-bottom: 48px;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.service-card,
.project-card {
  background: var(--graphite);
}

.service-card {
  min-height: 280px;
  padding: 0;
  transition: background 180ms ease, color 180ms ease;
}

.service-card:hover {
  background: var(--panel);
}

.service-number {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.service-card p,
.project-card p {
  color: var(--muted);
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(16, 20, 15, 0.96) 12%, rgba(16, 20, 15, 0.62) 68%, rgba(16, 20, 15, 0.74)),
    url("/static/images/projects/hillside-villa.webp") center / cover no-repeat;
}

.service-detail-card summary {
  position: relative;
  display: flex;
  height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  cursor: pointer;
  list-style: none;
}

.service-detail-card summary::-webkit-details-marker {
  display: none;
}

.service-detail-card summary h2 {
  max-width: 18ch;
  margin: 28px 44px 12px 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
}

.service-detail-card summary p {
  max-width: 33ch;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .service-detail-card summary {
    height: auto;
    min-height: 310px;
  }
}

.service-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(201, 178, 124, 0.46);
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.service-detail-card[open] {
  background: var(--panel);
}

.service-detail-card[open] .service-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--charcoal);
}

.service-detail-body {
  border-top: 1px solid var(--line);
  padding: 24px 30px 30px;
}

.service-detail-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ink);
  line-height: 1.55;
}

.service-steps li::marker {
  color: var(--green);
  font-family: var(--font-display);
}

.service-contact-cta {
  border-top: 1px solid var(--line);
}

.project-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.project-card img {
  width: calc(100% - 20px);
  margin: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.74);
  transition: filter 220ms ease, transform 220ms ease;
}

.project-card:hover img {
  filter: saturate(0.95);
}

.project-pending-media {
  display: grid;
  place-items: end start;
  width: calc(100% - 20px);
  min-height: 250px;
  margin: 10px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(16, 20, 15, 0.18), rgba(16, 20, 15, 0.96)),
    url("/static/images/projects/contemporary-courtyard-house.webp") center / cover no-repeat;
}

.project-pending-media span {
  border: 1px solid rgba(201, 178, 124, 0.62);
  padding: 7px 9px;
  background: rgba(16, 20, 15, 0.82);
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-content {
  padding: 26px;
}

.portfolio-link {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.category-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 178, 124, 0.38);
  padding: 4px 9px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

dd {
  margin: 0;
  text-align: right;
}

.faq-list {
  max-width: 980px;
  margin-left: auto;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
}

.faq-item p {
  max-width: 720px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 7vw, 96px);
  background:
    linear-gradient(rgba(16, 20, 15, 0.92), rgba(16, 20, 15, 0.94)),
    url("/static/images/placeholders/coastal-retreat.svg") center / cover no-repeat;
}

.direct-links a {
  border-bottom: 1px solid rgba(201, 178, 124, 0.7);
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 40px);
  background: rgba(27, 35, 27, 0.84);
  backdrop-filter: blur(14px);
}

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

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 14px;
  background: rgba(16, 20, 15, 0.42);
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-errors {
  border: 1px solid rgba(233, 162, 154, 0.5);
  padding: 14px;
  color: var(--error);
}

.form-errors p {
  margin: 0;
}

.site-footer {
  padding: 46px clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) minmax(120px, 0.55fr) minmax(180px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-navigation {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-navigation span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-navigation a,
.footer-links a {
  transition: color 180ms ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  color: var(--ink);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(201, 199, 184, 0.78);
  font-size: 0.72rem;
}

.footer-legal p {
  margin: 0;
}

.portfolio-hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 156px clamp(22px, 7vw, 104px) 76px;
  background:
    linear-gradient(90deg, rgba(16, 20, 15, 0.94), rgba(16, 20, 15, 0.66)),
    url("/static/images/projects/hillside-villa.webp") center / cover no-repeat;
  overflow: hidden;
}

.portfolio-hero-content {
  width: min(100%, 1080px);
  max-width: 1080px;
}

.portfolio-hero h1 {
  max-width: 1080px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

.portfolio-hero .back-link {
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(201, 178, 124, 0.6);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.gallery-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-collections {
  display: grid;
  gap: 64px;
}

.gallery-collection h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
}

.gallery-collection {
  content-visibility: auto;
  contain-intrinsic-size: auto 980px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.gallery-tile {
  min-width: 0;
  margin: 0;
  background: var(--graphite);
  content-visibility: auto;
  contain-intrinsic-size: auto 310px;
}

.gallery-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #192019, #101410);
  filter: saturate(0.8);
  transition: filter 180ms ease, transform 180ms ease;
}

.gallery-tile:hover img {
  filter: saturate(1);
}

.gallery-tile figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 0.78rem;
}

.gallery-tile small {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-media {
  position: relative;
  margin: 10px;
  overflow: hidden;
  background: #0d110d;
}

.portfolio-image-link {
  display: block;
}

.portfolio-card .portfolio-media img {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  transition: filter 220ms ease, opacity 130ms ease, transform 220ms ease;
}

.portfolio-card .portfolio-media img.is-changing {
  opacity: 0.28;
}

.portfolio-image-status {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.portfolio-image-status span {
  border: 1px solid rgba(245, 243, 233, 0.3);
  padding: 4px 7px;
  background: rgba(16, 20, 15, 0.78);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-gallery-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 6px;
}

.gallery-control {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 243, 233, 0.42);
  background: rgba(16, 20, 15, 0.84);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
  outline: none;
}

.project-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 96px) 70px;
  overflow: hidden;
}

.project-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 20, 15, 0.95), rgba(16, 20, 15, 0.26));
}

.project-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--muted);
}

.project-body {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 110px);
}

.project-meta {
  display: grid;
  gap: 1px;
  align-self: start;
  background: var(--line);
}

.project-meta div {
  padding: 22px;
  background: var(--graphite);
}

.project-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-meta strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--line);
}

.project-gallery img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--graphite);
}

.success-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px clamp(20px, 7vw, 96px);
  background:
    linear-gradient(rgba(16, 20, 15, 0.76), rgba(16, 20, 15, 0.9)),
    url("/static/images/placeholders/private-residential-concept.svg") center / cover no-repeat;
}

.success-panel {
  max-width: 760px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 42;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background: rgba(16, 20, 15, 0.97);
    font-size: 1rem;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: max(96px, env(safe-area-inset-top)) 28px 42px;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    text-align: center;
  }

  .site-nav .nav-cta {
    min-width: 190px;
    padding: 12px 18px;
    line-height: 1;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .section-heading,
  .split-section,
  .contact-section,
  .project-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .site-header.is-scrolled {
    padding: 16px 18px;
  }

  .brand strong {
    max-width: 150px;
  }

  .hero {
    min-height: 94svh;
    padding: 120px 20px 70px;
  }

  .portfolio-hero {
    min-height: auto;
    padding: 130px 20px 64px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .portfolio-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.45rem);
  }

  .section {
    padding: 78px 20px;
  }

  .service-grid,
  .project-grid,
  .portfolio-grid,
  .gallery-grid,
  .metric-row,
  .form-row,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .nav-socials {
    justify-content: center;
  }

  .language-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 4px 0;
    width: 100%;
    margin: 0 auto;
  }

  .language-switcher a {
    display: inline-flex;
    min-width: auto;
    min-height: 28px;
    padding: 0;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .language-switcher a.is-active {
    background: transparent;
    color: var(--gold);
  }

  .language-short {
    display: none;
  }

  .language-full {
    display: inline;
  }

  .service-card {
    min-height: 210px;
  }

  .site-footer {
    padding-top: 38px;
    padding-bottom: 38px;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}
