:root {
  --primary: #352019;
  --secondary: #bbafa1;
  --background: #f6ebda;
  --surface: #f7f7f7;
  --text: #111010;
  --text-muted: rgba(17, 16, 16, 0.66);
  --accent: #bbafa1;
  --white: #f7f7f7;
  --line: rgba(17, 16, 16, 0.18);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-editorial: "Editor's Note", "Lora", serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --container: min(100% - 2rem, 76rem);
  --section-space: clamp(5rem, 18vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

html,
body {
  width: 100%;
  min-width: 0;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 3.8vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.review-modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img,
video,
iframe { display: block; max-width: 100%; height: auto; }

h1,
h2,
h3,
p,
a,
span,
div {
  min-width: 0;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

h1 { font-size: clamp(2.5rem, 12vw, 3.35rem); }
h2 { font-size: clamp(2.25rem, 9.8vw, 3.1rem); }
h3 { font-size: clamp(1.55rem, 7vw, 2rem); }

em {
  color: var(--primary);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

.hero em { color: var(--secondary); }

::selection { background: var(--secondary); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--primary);
}

.skip-link:focus { top: 0.75rem; }

.header,
.header.scrolled {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(247, 247, 247, 0.12);
  background: var(--primary);
  color: var(--white);
  backdrop-filter: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav {
  display: flex;
  min-width: 0;
  height: 4.75rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  position: relative;
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s var(--ease);
}

.header .brand-logo-light { opacity: 1; }
.header .brand-logo-brown { opacity: 0; }

.brand > span { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.16em; }
.brand small { display: block; margin-top: 0.35rem; font-family: var(--font-display); font-size: 0.56rem; letter-spacing: 0.08em; }

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.7rem;
  place-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  margin: 0.2rem 0;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.25rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.25rem) rotate(-45deg); }

.menu {
  position: fixed;
  top: 4.75rem;
  right: 0;
  left: 0;
  z-index: 101;
  display: flex;
  width: 100%;
  height: calc(100dvh - 4.75rem);
  padding: 2rem 1rem max(1.5rem, env(safe-area-inset-bottom));
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}

.menu.open { transform: translateY(0); }

.menu a {
  display: flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(247, 247, 247, 0.12);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 8vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.menu .mobile-menu-cta {
  min-height: 3.75rem;
  margin-top: 1rem;
  padding-inline: 1rem;
  border: 0;
  border-bottom: 1px solid rgba(247, 247, 247, 0.7);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.header-cta { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: auto;
  padding: 6rem 0 2.5rem;
  align-items: center;
  background: var(--primary);
  color: var(--white);
}

.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-copy { width: min(100%, 38rem); min-width: 0; }
.hero h1 { max-width: 11ch; font-size: clamp(2rem, 8vw, 3.25rem); }
.hero-text { max-width: 34rem; margin: 1.5rem 0 0; color: rgba(247, 247, 247, 0.78); }
.hero .button-light { background: var(--white); color: var(--primary); }
.hero .text-link { border-color: rgba(247, 247, 247, 0.35); color: rgba(247, 247, 247, 0.86); }

.actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button,
.text-link {
  display: inline-flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
}

.button { padding: 0.75rem 1rem; border: 1px solid transparent; }
.button-light { background: var(--primary); color: var(--white); }
.text-link { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }

.section { padding-block: var(--section-space); }
.about-grid { display: grid; gap: 2rem; }
.about-grid > div { max-width: 38rem; }
.about-grid p { margin: 0; }
.about-grid p + p { margin-top: 1rem; color: var(--text-muted); }

.services { padding-top: clamp(1.25rem, 4vw, 2.5rem); padding-bottom: clamp(1.5rem, 5vw, 3rem); background: var(--surface); }
.work { padding-top: clamp(1.5rem, 5vw, 3rem); }
.services-head { margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.work-head { margin-bottom: 2.75rem; }
.service {
  display: grid;
  min-height: 6.75rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
  cursor: pointer;
  touch-action: manipulation;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service-number { padding-top: 0.35rem; color: var(--text-muted); font-family: var(--font-display); font-size: 0.68rem; }
.service-main { display: grid; gap: 0.65rem; }
.service h3 { overflow-wrap: normal; }
.service-main p { max-width: 34rem; margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
.service-action { grid-column: 2; justify-self: start; padding-top: 0.35rem; border-bottom: 1px solid currentColor; font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1.4; white-space: nowrap; transition: transform 0.25s var(--ease); }

.project-grid {
  display: grid;
  grid-auto-columns: minmax(17rem, 90%);
  grid-auto-flow: column;
  gap: 1rem;
  padding-bottom: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.1rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--secondary) transparent;
  scrollbar-width: thin;
}
.project-grid:focus-visible { outline-offset: 0.4rem; }
[data-carousel] { position: relative; }
.project { min-width: 0; scroll-snap-align: start; }
.project-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--primary);
  overflow: clip;
}
.project:nth-child(3n + 2) .project-media { background: var(--secondary); }
.project:nth-child(3n) .project-media { background: var(--text); }
.project-media video { width: 100%; height: 100%; object-fit: cover; }
.identity-showcase { margin-top: clamp(5rem, 12vw, 8rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.identity-grid { grid-auto-columns: minmax(14rem, 78%); }
.identity-media { aspect-ratio: 9 / 16; background: var(--surface); }
.identity-media img { width: 100%; height: 100%; object-fit: cover; }
.project-controls {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0.75rem;
  left: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  pointer-events: none;
  transform: translateY(-50%);
}
.project-controls button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(246, 235, 218, 0.62);
  border-radius: 50%;
  background: rgba(53, 32, 25, 0.82);
  box-shadow: 0 0.35rem 1.2rem rgba(17, 16, 16, 0.16);
  color: var(--background);
  font-family: var(--font-display);
  font-size: 1.1rem;
  pointer-events: auto;
  backdrop-filter: blur(0.35rem);
  transition: color 0.25s var(--ease), background 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.project-controls button:disabled { opacity: 0; pointer-events: none; }

.behance-link {
  display: flex;
  width: 100%;
  min-height: 3.75rem;
  margin-top: 2.5rem;
  padding: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--background);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.reviews { padding-block: var(--section-space); background: #fff; color: var(--text); overflow: hidden; }
.reviews-head { display: block; }
.reviews-intro { position: relative; max-width: 44rem; }
.reviews h2 { position: relative; z-index: 1; max-width: 14ch; }
.reviews-quote { position: absolute; z-index: 0; top: 0.25rem; right: 0; color: rgba(53, 32, 25, 0.06); font-family: var(--font-editorial); font-size: clamp(9rem, 28vw, 15rem); font-style: italic; line-height: 0.8; pointer-events: none; }
.reviews-subtitle { position: relative; z-index: 1; max-width: 34rem; margin: 1.5rem 0 0; color: var(--text-muted); }
.reviews-carousel { width: 100%; margin: clamp(3.5rem, 10vw, 6rem) auto 0; }
.reviews-stage { overflow: hidden; }
.reviews-track {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 1rem;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.review-card { position: relative; display: flex; height: 26rem; padding: 1.35rem; flex-direction: column; border: 1px solid rgba(53, 32, 25, 0.18); border-top: 0.18rem solid var(--primary); border-radius: 0.6rem; background: #fff; box-shadow: 0 0.8rem 2rem rgba(53, 32, 25, 0.035); scroll-snap-align: start; scroll-snap-stop: always; }
.review-card-head { display: grid; min-height: 3.25rem; grid-template-columns: 2.65rem minmax(0, 1fr); align-items: center; gap: 0.65rem; }
.review-avatar { display: grid; width: 2.65rem; height: 2.65rem; place-items: center; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; }
.review-user { display: grid; gap: 0.05rem; }
.review-user strong { display: -webkit-box; overflow: hidden; color: var(--text); font-family: var(--font-display); font-size: 0.78rem; font-weight: 500; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.review-user small { color: var(--text-muted); font-size: 0.65rem; }
.review-card-stars { margin-top: 1rem; color: #f5b301; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.14em; }
.review-card-content { margin: 1rem 0 0; }
.review-card-text { display: -webkit-box; margin: 0; overflow: hidden; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; font-style: normal; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 6; }
.review-card-more-row { display: flex; min-height: 2.2rem; padding-top: 0.65rem; align-items: flex-start; }
.review-more { padding: 0 0 0.15rem; border: 0; border-bottom: 1px solid var(--primary); background: transparent; color: var(--primary); font-family: var(--font-display); font-size: 0.7rem; cursor: pointer; }
.review-card-footer { display: grid; margin-top: auto; padding-top: 0.9rem; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 0.75rem; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.65rem; }
.review-card-footer a { color: var(--primary); font-family: var(--font-display); font-size: 0.68rem; font-weight: 500; white-space: nowrap; }
.reviews-navigation { display: grid; grid-template-columns: 2.75rem minmax(0, auto) 2.75rem; width: fit-content; max-width: 100%; margin: 2rem auto 0; align-items: center; gap: 0.85rem; }
.reviews-navigation > button { width: 2.75rem; height: 2.75rem; padding: 0; border: 1px solid var(--primary); border-radius: 50%; background: transparent; color: var(--primary); cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
.reviews-dots { display: flex; min-height: 2.75rem; align-items: center; justify-content: center; gap: 0.45rem; }
.reviews-dot { width: 0.6rem; height: 0.6rem; padding: 0; border: 1px solid rgba(53, 32, 25, 0.48); border-radius: 50%; background: transparent; cursor: pointer; transition: background 0.35s var(--ease), transform 0.35s var(--ease); }
.reviews-dot.is-active { background: var(--primary); transform: scale(1.08); }
.reviews-count { grid-column: 1 / -1; color: var(--text-muted); font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.12em; text-align: center; }
.reviews-link { display: flex; width: 100%; min-height: 3.75rem; margin: clamp(2.5rem, 8vw, 4rem) auto 0; padding: 0.85rem 1rem; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid var(--primary); background: var(--primary); color: var(--background); font-family: var(--font-display); font-size: 0.9rem; }

.review-modal { width: min(calc(100% - 2rem), 43rem); max-height: min(90dvh, 48rem); padding: 0; border: 1px solid rgba(53, 32, 25, 0.3); border-radius: 0.7rem; background: #fff; color: var(--text); }
.review-modal::backdrop { background: rgba(17, 16, 16, 0.66); backdrop-filter: blur(0.15rem); }
.review-modal-panel { position: relative; max-height: min(90dvh, 48rem); padding: clamp(1.5rem, 6vw, 3rem); overflow-y: auto; }
.review-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; display: grid; width: 2.5rem; height: 2.5rem; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--primary); font-size: 1.35rem; cursor: pointer; }
.review-modal-head { display: grid; padding-right: 2.75rem; grid-template-columns: 3rem minmax(0, 1fr); align-items: center; gap: 0.8rem; }
.review-modal-avatar { display: grid; width: 3rem; height: 3rem; place-items: center; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-display); font-size: 0.76rem; font-weight: 600; }
.review-modal-head h3 { font-size: clamp(1.05rem, 4.5vw, 1.35rem); letter-spacing: -0.02em; line-height: 1.2; }
.review-modal-head div > span { color: var(--text-muted); font-size: 0.7rem; }
.review-modal-stars { display: block; margin-top: 1.5rem; color: #f5b301; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.14em; }
.review-modal blockquote { margin: 1.25rem 0 2rem; color: var(--text); font-family: var(--font-body); font-size: clamp(1rem, 4vw, 1.2rem); font-style: normal; line-height: 1.6; }
.review-modal-footer { display: grid; padding-top: 1rem; gap: 0.75rem; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.7rem; }
.review-modal-footer a { color: var(--primary); font-family: var(--font-display); font-size: 0.72rem; font-weight: 500; }

.home-about { padding-block: clamp(4rem, 14vw, 7rem); background: var(--text); color: var(--white); }
.home-about-grid { display: grid; gap: clamp(2.5rem, 9vw, 6rem); }
.home-about .about-index { color: rgba(247, 247, 247, 0.58); }
.home-about h2 { color: var(--white); }
.home-about-copy { max-width: 38rem; }
.home-about-copy p { margin: 0; color: rgba(247, 247, 247, 0.72); }
.home-about-copy p + p { margin-top: 1rem; }
.home-about-button { max-width: 22rem; margin-top: 2rem; background: var(--white); color: var(--primary); }

.contact { padding-block: clamp(5.5rem, 22vw, 8rem); background: var(--surface); color: var(--text); text-align: left; }
.contact h2 { max-width: 17ch; }
.contact .button { max-width: 32rem; margin-top: 2rem; }

.footer { padding: 4.5rem 0 max(5.5rem, calc(env(safe-area-inset-bottom) + 4.5rem)); background: var(--text); color: rgba(247, 247, 247, 0.75); }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand { color: var(--white); }
.footer-brand small { display: block; }
.footer nav,
.footer-contact { display: grid; gap: 0.25rem; }
.footer nav a,
.footer-contact a,
.footer-bottom a { display: flex; min-height: 2.75rem; align-items: center; }
.footer-contact a { gap: 0.75rem; overflow-wrap: anywhere; }
.footer-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(247, 247, 247, 0.28);
  border-radius: 50%;
}
.footer-icon img { width: 0.95rem; height: 0.95rem; }
.footer-bottom { display: grid; gap: 1rem; margin-top: 3.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(247, 247, 247, 0.12); font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.04em; }

.floating-whatsapp {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 247, 247, 0.14);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0.5rem 1.5rem rgba(17, 16, 16, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.floating-whatsapp.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.floating-whatsapp img { width: 1.6rem; height: 1.6rem; }

/* Página Sobre */
.about-page { background: var(--surface); }
.about-hero { padding: clamp(9rem, 24vw, 12rem) 0 clamp(6rem, 18vw, 10rem); background: var(--text); color: var(--white); }
.about-intro-grid,
.history-grid { display: grid; gap: clamp(2.5rem, 8vw, 6rem); }
.about-index,
.founder-number {
  margin: 0 0 1.5rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.about-hero .about-index { color: rgba(247, 247, 247, 0.62); }
.about-hero h1 { max-width: 8ch; color: var(--white); }
.about-lead,
.about-copy { max-width: 40rem; }
.about-lead p,
.about-copy p,
.founder-bio p { margin: 0; }
.about-lead p:first-child { color: var(--white); font-size: clamp(1.2rem, 4.5vw, 1.5rem); line-height: 1.45; }
.about-lead p + p,
.about-copy p + p,
.founder-bio p + p { margin-top: 1.25rem; }
.about-lead p + p { color: rgba(247, 247, 247, 0.7); }
.about-copy p { color: var(--text-muted); }
.about-section { padding-block: clamp(6rem, 18vw, 10rem); border-top: 1px solid var(--line); }
.history-section { background: var(--surface); }
.founders-section { padding-block: 0; border-top: 0; }
.since { margin: 1.25rem 0 0; color: var(--secondary); font-family: var(--font-editorial); font-size: clamp(1.4rem, 5vw, 2rem); font-style: italic; }
.founders-heading { display: flex; margin-bottom: clamp(4rem, 12vw, 8rem); align-items: baseline; justify-content: space-between; gap: 2rem; }
.founders-section > .container { width: 100%; max-width: none; }
.founders-heading { width: min(100% - 2rem, 76rem); margin-inline: auto; }
.founders-heading .about-index { margin: 0; }
.founders-heading h2 { color: var(--primary); font-size: clamp(1rem, 4vw, 1.35rem); font-weight: 600; letter-spacing: 0.12em; }
.founders-heading h2 span { color: var(--secondary); }
.founder { padding: clamp(2.5rem, 8vw, 5rem) max(2rem, calc((100vw - 76rem) / 2)); background: var(--text); color: var(--white); }
.founder-intro { display: grid; max-width: 44rem; grid-template-columns: clamp(7.5rem, 28vw, 11rem) minmax(0, 1fr); align-items: center; gap: clamp(1.25rem, 5vw, 3rem); }
.founder-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.founder-title h3 { color: var(--white); font-size: clamp(1.5rem, 6vw, 2.4rem); letter-spacing: -0.035em; }
.founder .founder-number { color: rgba(247, 247, 247, 0.5); }
.founder-role { margin: 0 0 0.35rem; color: var(--white); font-family: var(--font-display); font-size: clamp(0.9rem, 3.8vw, 1.2rem); font-style: normal; line-height: 1.35; }
.founder-bio { max-width: 38rem; margin-top: clamp(2.5rem, 8vw, 4rem); }
.founder-bio p { color: rgba(247, 247, 247, 0.7); }
.about-page .contact { padding-block: clamp(3rem, 9vw, 4.5rem); }

.reveal { opacity: 0; transform: translateY(1rem); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 47.99rem) {
  .about-hero { padding-bottom: 2.75rem; }
  .about-lead p + p { margin-top: 0.5rem; }
  .history-section { padding-block: 2.75rem; }
  .home-about { padding-block: 2.75rem; }
  .reviews { padding-block: 2.75rem; }
  .contact { padding-block: 3rem; }
  .about-page .contact { padding-block: 2.5rem; }
}

@media (min-width: 30rem) {
  :root { --container: min(100% - 2.5rem, 76rem); }
  .actions { grid-template-columns: minmax(0, 14rem) minmax(0, 13rem); align-items: center; }
  .text-link { width: auto; }
}

@media (min-width: 48rem) {
  :root { --container: min(100% - 4rem, 76rem); --section-space: clamp(7rem, 12vw, 9rem); }
  body { font-size: 1.0625rem; }
  h1 { font-size: clamp(4rem, 8.5vw, 5.5rem); }
  h2 { font-size: clamp(3.5rem, 7vw, 4.6rem); }
  .nav { height: 5.25rem; }
  .menu { top: 5.25rem; height: calc(100dvh - 5.25rem); }
  .brand-mark { width: 2.5rem; height: 2.5rem; }
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero h1 { max-width: 12ch; font-size: clamp(3rem, 5.5vw, 4rem); }
  .about-grid { gap: 3rem; }
  .service { grid-template-columns: 3.5rem minmax(0, 1fr) max-content; min-height: 7.5rem; padding-block: 1.5rem; }
  .service-action { grid-column: 3; grid-row: 1; justify-self: end; }
  .project-grid { grid-auto-columns: 55%; gap: 1.5rem; }
  .identity-grid { grid-auto-columns: 42%; }
  .reviews-track { grid-auto-columns: calc((100% - 1.25rem) / 2); gap: 1.25rem; }
  .review-card { height: 25rem; }
  .review-modal-footer { display: flex; align-items: center; justify-content: space-between; }
  .behance-link { width: min(100%, 36rem); margin-left: auto; gap: 2rem; }
  .contact { text-align: center; }
  .contact h2,
  .contact .button { margin-right: auto; margin-left: auto; }
  .footer-grid { grid-template-columns: 1.2fr 0.7fr 1fr; gap: 3rem; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .about-intro-grid,
  .history-grid { grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr); align-items: start; }
  .home-about-grid { grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr); align-items: start; }
  .founder-intro { grid-template-columns: 12rem minmax(0, 1fr); }
}

@media (min-width: 64rem) {
  :root { --container: min(100% - 5rem, 76rem); }
  h1 { font-size: clamp(4.75rem, 6.3vw, 6.75rem); }
  h2 { font-size: clamp(4rem, 5vw, 5.5rem); }
  .header.scrolled .nav { height: 4.75rem; }
  .menu-toggle { display: none; }
  .menu {
    position: static;
    z-index: auto;
    display: flex;
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 2.2vw, 2.25rem);
    background: transparent;
    color: inherit;
    transform: none;
    transition: none;
  }
  .menu a { position: relative; width: auto; min-width: 2.75rem; min-height: 2.75rem; padding: 0 0.375rem; border: 0; font-size: 0.8rem; font-weight: 500; letter-spacing: 0; }
  .menu a::after,
  .footer nav a::after { content: ""; position: absolute; right: 100%; bottom: 0.35rem; left: 0; height: 1px; background: currentColor; transition: right 0.25s var(--ease); }
  .mobile-menu-cta { display: none !important; }
  .header-cta { display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.5rem; border-bottom: 1px solid currentColor; font-family: var(--font-display); font-size: 0.8rem; }
  .hero { min-height: calc(100svh - 5.25rem); padding: 8.5rem 0 4rem; }
  .about-grid { grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr); gap: 6rem; align-items: end; }
  .service { grid-template-columns: 4rem minmax(15rem, 0.8fr) minmax(16rem, 1.2fr) max-content; min-height: 8rem; align-items: start; padding-block: 1.4rem; }
  .service-action { grid-column: 4; }
  .project-grid { grid-auto-columns: 38%; }
  .identity-grid { grid-auto-columns: 28%; }
  .reviews-track { grid-auto-columns: calc((100% - 2.5rem) / 3); }
  .footer { padding-bottom: 2rem; }
  .footer-grid { grid-template-columns: 1.5fr 0.6fr 1fr; }
}

@media (min-width: 80rem) {
  :root { --container: min(100% - 6rem, 80rem); }
}

@media (hover: hover) and (pointer: fine) {
  .button,
  .behance-link,
  .reviews-link,
  .floating-whatsapp,
  .project-media { transition: transform 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease); }
  .button:hover { transform: translateY(-0.2rem); }
  .project:hover .project-media { transform: scale(0.985); }
  .project-controls button:not(:disabled):hover { background: var(--primary); color: var(--white); }
  .service:hover { background: rgba(247, 247, 247, 0.36); }
  .service:hover .service-action { transform: translateX(0.2rem); }
  .behance-link:hover { background: var(--text); color: var(--background); }
  .reviews-link:hover { background: var(--text); color: var(--background); }
  .reviews-navigation > button:hover { background: var(--primary); color: var(--white); transform: scale(1.03); }
  .reviews-dot:hover { border-color: var(--primary); transform: scale(1.15); }
  .floating-whatsapp:hover { transform: translateY(-0.15rem); background: var(--text); }
  .menu a:hover::after,
  .footer nav a:hover::after { right: 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;
  }
  .reveal { opacity: 1; transform: none; }
}
