:root {
  --ink: #191a17;
  --ink-soft: #2c2e29;
  --paper: #f2efe8;
  --paper-2: #e7e1d7;
  --white: #fffdf8;
  --accent: #d86b3d;
  --accent-dark: #b74f27;
  --line: rgba(25, 26, 23, 0.16);
  --line-light: rgba(255, 253, 248, 0.16);
  --muted: #6f716a;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --container: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

img {
  display: block;
}

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

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

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

::selection {
  background: var(--accent);
  color: var(--white);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 132px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #efb090;
}

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

h1,
h2,
blockquote {
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 em,
h1 em {
  font-weight: 400;
}

p {
  line-height: 1.72;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-accent {
  background: var(--accent);
  color: var(--white);
}

.button-accent:hover {
  background: var(--accent-dark);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #000;
}

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

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

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: min-height 250ms ease, background-color 250ms ease, border-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-color: rgba(25, 26, 23, 0.11);
  background: rgba(242, 239, 232, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(14, 15, 13, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.22em;
}

.brand small {
  font-size: 8px;
  letter-spacing: 0.23em;
  opacity: 0.72;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
}

.brand-mark span {
  display: block;
  border: 1.5px solid currentColor;
  border-bottom: 0;
}

.brand-mark span:nth-child(1) {
  height: 22px;
}

.brand-mark span:nth-child(2) {
  height: 31px;
}

.brand-mark span:nth-child(3) {
  height: 17px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.mobile-menu > button {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: inherit;
}

.mobile-menu-links {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.mobile-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 56px);
}

.mobile-menu-links a span {
  width: 18px;
  font-family: var(--sans);
  color: #efb090;
  font-size: 10px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-size: 14px;
}

.mobile-menu-contact span {
  margin-bottom: 7px;
  color: #9e9f98;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: heroScale 12s ease-out both;
}

@keyframes heroScale {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.82) 0%, rgba(7, 8, 7, 0.44) 50%, rgba(7, 8, 7, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.7) 0%, transparent 42%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, transparent calc(25% - 0.5px), rgba(255,255,255,0.08) 25%, transparent calc(25% + 0.5px));
  background-size: 25% 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 132px;
  padding-bottom: 72px;
}

.hero h1 {
  max-width: 1050px;
  margin-bottom: 46px;
  font-size: clamp(58px, 8.8vw, 132px);
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: #f0b18f;
}

.hero-bottom {
  display: grid;
  max-width: 980px;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 64px;
}

.hero-bottom > p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.scroll-indicator {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-indicator i {
  display: inline-flex;
  font-style: normal;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.trust-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 80px;
}

.about-heading h2 {
  max-width: 700px;
}

.about-copy {
  align-self: end;
  padding-left: 30px;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.about-copy p:not(.lead) {
  color: var(--muted);
}

.about-copy .text-link {
  margin-top: 14px;
}

.about-image-wrap {
  position: relative;
  grid-column: 1 / -1;
  min-height: 610px;
  margin-top: 22px;
  overflow: hidden;
  background: #c9c1b6;
}

.about-image-wrap > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.about-image-wrap:hover > img {
  transform: scale(1.025);
}

.image-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-family: var(--serif);
  font-size: 26px;
}

.about-image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  max-width: 400px;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.services-section {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  margin-bottom: 72px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.split-heading h2 {
  max-width: 850px;
}

.split-heading > p,
.split-heading > div + p {
  margin-bottom: 0;
  color: #a9aaa4;
}

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

.service-card {
  min-height: 410px;
  padding: 34px 28px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-4px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 98px;
  color: #b5b6b0;
}

.service-card:hover .service-top {
  color: var(--white);
}

.service-top span {
  font-family: var(--serif);
  font-size: 20px;
}

.service-card h3 {
  max-width: 220px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.service-card p {
  min-height: 104px;
  margin-bottom: 24px;
  color: #a9aaa4;
  font-size: 13px;
}

.service-card:hover p {
  color: rgba(255,255,255,0.84);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.projects-section {
  background: var(--white);
}

.projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.projects-heading h2 {
  max-width: 860px;
}

.projects-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

.project-card {
  overflow: hidden;
}

.project-wide {
  grid-column: span 8;
}

.project-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.project-small {
  grid-column: span 4;
}

.project-image-wrap {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #d4cec2;
}

.project-tall .project-image-wrap {
  height: 720px;
}

.project-small .project-image-wrap {
  height: 360px;
}

.project-image-wrap img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 350ms ease;
}

.project-card:hover .project-image-wrap img {
  transform: scale(1.045);
  filter: saturate(0.88);
}

.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0 10px;
  border-bottom: 1px solid var(--line);
}

.project-info h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.project-info p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-info > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-card:hover .project-info > span {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-8deg);
}

.manifesto-section {
  display: grid;
  min-height: 770px;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--ink-soft);
  color: var(--white);
}

.manifesto-image {
  position: relative;
  min-height: 770px;
}

.manifesto-image img {
  object-fit: cover;
}

.manifesto-content {
  display: flex;
  align-items: center;
  padding: 80px clamp(40px, 7vw, 120px);
}

.manifesto-content blockquote {
  margin-bottom: 48px;
  font-size: clamp(39px, 4.1vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.manifesto-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.manifesto-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d2d2cd;
  font-size: 13px;
}

.process-section {
  background: var(--paper-2);
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 90px 0.7fr 1.4fr 28px;
  align-items: center;
  gap: 30px;
  min-height: 145px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.process-row:hover {
  padding: 0 20px;
  background: rgba(255,255,255,0.35);
}

.process-number {
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 22px;
}

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

.process-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reasons-section {
  background: var(--accent);
  color: var(--white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.reasons-heading h2 {
  max-width: 620px;
  margin-bottom: 32px;
}

.reasons-heading > p:last-child {
  max-width: 530px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
}

.reasons-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.28);
  border-left: 1px solid rgba(255,255,255,0.28);
}

.reason-item {
  min-height: 330px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255,255,255,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

.reason-item svg {
  margin-bottom: 96px;
}

.reason-item h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.reason-item p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

.testimonial-section {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 80px;
}

.testimonial-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-label span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-quote blockquote {
  margin-bottom: 44px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 14px;
}

.testimonial-author small {
  color: var(--muted);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-grid h2 {
  max-width: 520px;
  margin-bottom: 28px;
}

.faq-intro {
  max-width: 500px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item > button span {
  font-family: var(--serif);
  font-size: 24px;
}

.faq-item > button svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.open > button svg {
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 680px;
  margin: -8px 44px 28px 0;
  color: var(--muted);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-copy h2 {
  max-width: 640px;
  margin-bottom: 32px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: #aaa9a3;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.contact-form-wrap {
  padding: 42px;
  background: var(--paper);
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 0;
}

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

.form-note {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px;
  background: var(--paper);
  color: var(--ink);
}

.form-success svg {
  color: var(--accent-dark);
}

.form-success strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 24px;
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

.spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-footer {
  padding: 56px 0 28px;
  background: #11120f;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line-light);
}

.brand-footer {
  color: var(--white);
}

.footer-top > p {
  max-width: 460px;
  margin: 0;
  color: #9c9e97;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-light);
  transition: background 180ms ease, color 180ms ease;
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  color: #777a73;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 40px, 960px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

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

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

  .reasons-grid,
  .contact-grid {
    gap: 60px;
  }

  .reasons-cards {
    grid-template-columns: 1fr;
  }

  .reason-item {
    min-height: 220px;
  }

  .reason-item svg {
    margin-bottom: 54px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 32px);
  }

  .section {
    padding: 92px 0;
  }

  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 8px;
  }

  .hero-content {
    padding-top: 118px;
  }

  .hero h1 {
    margin-bottom: 36px;
    font-size: clamp(54px, 14vw, 84px);
    line-height: 0.91;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scroll-indicator {
    display: none;
  }

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

  .trust-grid > div {
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .about-grid,
  .split-heading,
  .manifesto-section,
  .reasons-grid,
  .testimonial-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .faq-grid {
    gap: 46px;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-image-wrap,
  .about-image-wrap > img {
    min-height: 450px;
    height: 450px;
  }

  .split-heading {
    gap: 28px;
  }

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

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

  .service-top {
    margin-bottom: 66px;
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-grid {
    display: block;
  }

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

  .project-image-wrap,
  .project-tall .project-image-wrap,
  .project-small .project-image-wrap {
    height: 470px;
  }

  .manifesto-image {
    min-height: 520px;
  }

  .manifesto-content {
    padding: 80px 24px;
  }

  .process-row {
    grid-template-columns: 52px 1fr 22px;
    gap: 18px;
    padding: 28px 0;
  }

  .process-row p {
    grid-column: 2 / -1;
  }

  .reasons-grid {
    gap: 55px;
  }

  .testimonial-grid {
    gap: 50px;
  }

  .testimonial-label span {
    display: none;
  }

  .contact-form-wrap {
    padding: 30px 22px;
  }

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

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

@media (max-width: 560px) {
  .section {
    padding: 76px 0;
  }

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

  .brand small {
    font-size: 7px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7,8,7,.88), rgba(7,8,7,.33));
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 70px);
  }

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

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

  .trust-grid > div,
  .trust-grid > div:nth-child(3) {
    min-height: 100px;
    border-left: 1px solid var(--line);
  }

  .about-image-wrap,
  .about-image-wrap > img {
    min-height: 390px;
    height: 390px;
  }

  .about-image-note {
    left: 0;
    max-width: none;
  }

  .services-grid {
    border-left: 0;
  }

  .service-card {
    border-left: 1px solid var(--line-light);
  }

  .project-image-wrap,
  .project-tall .project-image-wrap,
  .project-small .project-image-wrap {
    height: 390px;
  }

  .manifesto-image {
    min-height: 420px;
  }

  .manifesto-points {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: 42px 1fr;
  }

  .process-row > svg {
    display: none;
  }

  .process-row p {
    grid-column: 2;
  }

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

  .contact-form-wrap {
    margin: 0 -16px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 50px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ajustes para la versión HTML estática */
svg { width: 1em; height: 1em; stroke-width: 1.8; }
.hero-image,
.manifesto-image img,
.project-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1), visibility .35s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero-animate {
  opacity: 0;
  transform: translateY(34px);
  animation: heroEnter .85s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-delay-1 { animation-delay: .18s; }
.hero-delay-2 { animation-delay: .3s; }
.hero-delay-3 { animation-delay: .55s; }
.hero-delay-4 { animation-delay: .9s; }
@keyframes heroEnter { to { opacity: 1; transform: translateY(0); } }

.scroll-indicator svg { animation: scrollArrow 1.7s ease-in-out infinite; }
@keyframes scrollArrow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .28s ease, opacity .28s ease;
}
.faq-answer > p { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; opacity: 1; }

.form-success[hidden] { display: none; }
.contact-form[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-animate { opacity: 1; transform: none; }
}

/* Tamaños de los iconos */
.button svg { width: 18px; height: 18px; }
.header-cta svg { width: 17px; height: 17px; }
.menu-button svg, .mobile-menu > button svg { width: 24px; height: 24px; }
.service-top svg { width: 26px; height: 26px; }
.about-image-note svg, .process-row > svg, .whatsapp-float svg { width: 22px; height: 22px; }
.project-info svg, .contact-details svg, .faq-item button svg { width: 20px; height: 20px; }
.manifesto-points svg { width: 18px; height: 18px; }
.reason-item > svg { width: 25px; height: 25px; }
.footer-socials svg { width: 19px; height: 19px; }
.form-success > svg { width: 30px; height: 30px; }
