:root {
  --bg: #f4efe5;
  --bg-soft: #e9e1d4;
  --surface: #fffdf8;
  --surface-hover: #faf6ee;
  --text: #24231f;
  --muted: #6e6b63;
  --primary: #5f6c54;
  --primary-strong: #3f4a38;
  --secondary: #a25f46;
  --success: #3f6f51;
  --border: rgba(36, 35, 31, 0.15);
  --shadow: 0 18px 45px rgba(47, 42, 34, 0.1);
  --radius: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(36, 35, 31, 0.07) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.14;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(244, 239, 229, 0.88);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(244, 239, 229, 0.97);
}

.nav {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.brand-logo-wrap {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
}

.brand-logo-wrap::after {
  position: absolute;
  right: -9px;
  bottom: 7px;
  width: 1px;
  height: 40px;
  background: var(--border);
  content: "";
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.14em;
  line-height: 1;
}

.brand-mark::after {
  position: absolute;
  right: -9px;
  bottom: -5px;
  width: 1px;
  height: 40px;
  background: var(--border);
  content: "";
}

.brand-name,
.brand > span:last-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--text);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button-primary {
  background: var(--text);
  color: #fffdf8;
}

.button-primary:hover {
  background: var(--primary-strong);
}

.button-secondary {
  border-color: var(--text);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: var(--text);
  color: #fffdf8;
}

.button-whatsapp {
  background: var(--success);
  color: #fff;
}

.button-whatsapp:hover {
  background: #315c41;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.8rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 145px 0 92px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -25%;
  z-index: -1;
  width: 50%;
  height: 70%;
  border: 1px solid rgba(162, 95, 70, 0.14);
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(-12deg);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 78px;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.8fr);
}

.hero-grid > *,
.contact-layout > *,
.difference-grid > *,
.service-row > *,
.contact-form-area {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: var(--secondary);
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 7.2vw, 6.5rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.gradient-text {
  color: var(--secondary);
  font-style: italic;
}

.hero-description,
.page-hero p {
  max-width: 630px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  width: 14px;
  height: 1px;
  background: var(--primary);
  content: "";
}

.hero-visual {
  display: flex;
  min-height: 500px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.studio-card {
  position: relative;
  display: flex;
  width: min(100%, 460px);
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  border: 1px solid rgba(248, 245, 237, 0.08);
  border-radius: 3px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.035), transparent 27%),
    linear-gradient(145deg, #171815 0%, #11120f 58%, #0b0c0a 100%);
  box-shadow:
    0 26px 70px rgba(22, 18, 12, 0.22),
    0 3px 12px rgba(22, 18, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  color: #f8f5ed;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  animation: studio-card-float 8.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  isolation: isolate;
}

.studio-card::before {
  position: absolute;
  top: -110px;
  right: -95px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0.64;
  z-index: 2;
  pointer-events: none;
}

.studio-card::after {
  position: absolute;
  right: 55px;
  bottom: 58px;
  width: 110px;
  height: 1px;
  background: var(--secondary);
  content: "";
  opacity: 0.72;
  z-index: 3;
  pointer-events: none;
}

.studio-monogram {
  width:100px;
  height: 50px;
  position: relative;
  z-index: 4;
  align-self: flex-start;
  color: #f8f5ed;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.8rem, 8vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.17em;
  line-height: 0.72;
  text-rendering: geometricPrecision;
}

.studio-signature {
  position: relative;
  z-index: 4;
}

.studio-signature strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.studio-signature span {
  display: block;
  margin-top: 5px;
  color: rgba(248, 245, 237, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.studio-note {
  width: min(82%, 360px);
  padding: 24px 28px;
  border: 1px solid var(--border);
  background: #d8c7ae;
  box-shadow: 0 10px 24px rgba(47, 42, 34, 0.08);
}

.studio-note span {
  color: var(--secondary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-note p {
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

@keyframes studio-card-float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-soft {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
}

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

.section-heading-center {
  display: block;
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.section-heading-center h2,
.difference-grid h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-heading p,
.section-heading-center p {
  max-width: 540px;
  margin-top: 15px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  padding-bottom: 3px;
}

.text-link:hover {
  color: var(--secondary);
}

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

.card {
  position: relative;
  min-height: 275px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 4px;
  background: var(--secondary);
  content: "";
  transition: width 0.25s ease;
}

.card:hover {
  border-color: rgba(95, 108, 84, 0.45);
  background: var(--surface-hover);
  transform: translateY(-4px);
}

.card:hover::after {
  width: 100%;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary-strong);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1;
}

.card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.card-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(36, 35, 31, 0.34);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
}

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

.project-card {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-visual {
  position: relative;
  display: grid;
  height: 235px;
  place-items: center;
  background: #727c67;
  color: #f7f2e8;
  overflow: hidden;
}

.project-visual::before {
  position: absolute;
  top: -55px;
  left: -25px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.project-visual::after {
  position: absolute;
  right: 12%;
  bottom: 15%;
  width: 34%;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  content: "";
}

.project-visual span {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-style: italic;
  line-height: 1;
}

.project-visual.alt {
  background: #3f514a;
}

.project-visual.warm {
  background: #9b6757;
}

.project-visual.orange {
  background: #b57a50;
}

.project-content {
  padding: 25px 28px 29px;
}

.project-content h2,
.project-content h3 {
  margin: 10px 0 7px;
  font-size: 1.7rem;
  line-height: 1;
}

.project-content p {
  color: var(--muted);
  font-size: 0.88rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  padding: 4px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.difference-grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: 0.8fr 1.2fr;
}

.difference-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.difference-item {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  gap: 18px;
  grid-template-columns: 38px 1fr;
}

.difference-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.difference-item p {
  color: var(--muted);
  font-size: 0.86rem;
}

.check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.process-index {
  display: block;
  margin-bottom: 22px;
  color: var(--secondary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1;
}

.process-step p {
  color: var(--muted);
  font-size: 0.84rem;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 58px;
  border-radius: 2px;
  background: #24231f;
  color: #f8f5ed;
  overflow: hidden;
}

.cta-panel::after {
  position: absolute;
  right: -85px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 0.98;
}

.cta-panel p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(248, 245, 237, 0.68);
}

.cta-panel .button-primary {
  background: #f8f5ed;
  color: var(--text);
}

.page-main {
  padding-top: 80px;
}

.page-hero {
  padding: 120px 0 82px;
  text-align: center;
}

.page-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
}

.page-hero p {
  margin-inline: auto;
}

.page-hero .eyebrow {
  justify-content: center;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  align-items: center;
  gap: 42px;
  padding: 36px 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  grid-template-columns: 0.65fr 1.35fr;
}

.service-row h2 {
  font-size: 2rem;
  line-height: 1;
}

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

.service-features {
  display: grid;
  margin-top: 18px;
  gap: 8px 20px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.service-features li {
  color: var(--text);
  font-size: 0.84rem;
}

.service-features li::before {
  margin-right: 8px;
  color: var(--secondary);
  content: "+";
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 38px;
}

.filter-button {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.project-card[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 26px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-copy {
  position: sticky;
  top: 112px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #d8c7ae;
}

.contact-copy h2 {
  margin-bottom: 12px;
  font-size: 2.1rem;
  line-height: 1;
}

.contact-copy > p {
  color: #5f5a51;
}

.contact-methods {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(36, 35, 31, 0.18);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36, 35, 31, 0.18);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.73rem;
}

.contact-method strong {
  display: block;
  font-size: 0.84rem;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: opacity 0.25s ease;
}

.contact-form.is-submitting {
  opacity: 0.72;
}

.form-submit {
  position: relative;
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-submit[aria-busy="true"]::before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: form-spinner 0.75s linear infinite;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}

.form-feedback {
  display: grid;
  min-height: 100%;
  align-content: center;
  justify-items: start;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  opacity: 0;
  outline: none;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.form-feedback.is-visible {
  opacity: 1;
  transform: none;
}

.form-feedback-success {
  border-top: 4px solid var(--success);
}

.form-feedback-error {
  min-height: auto;
  margin-top: 16px;
  padding: 28px 32px;
  border-top: 4px solid var(--secondary);
}

.form-feedback-error h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.feedback-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--success);
  font-size: 1.15rem;
  font-weight: 700;
}

.form-feedback-error .feedback-icon {
  color: var(--secondary);
}

.feedback-kicker {
  margin-bottom: 8px;
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-feedback h2 {
  max-width: 520px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.form-feedback > p:not(.feedback-kicker) {
  max-width: 540px;
  margin-top: 13px;
  color: var(--muted);
}

.form-feedback > .button {
  margin-top: 28px;
}

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
  background: #faf7f0;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
  height: 52px;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 145px;
  padding: 14px 15px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(95, 108, 84, 0.11);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #969187;
}

.form-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer {
  padding: 64px 0 28px;
  background: #1f201d;
  color: #f8f5ed;
}

.site-footer .brand {
  color: #f8f5ed;
}

.site-footer .brand-mark::after {
  background: rgba(255, 255, 255, 0.2);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
}

.footer-about p {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(248, 245, 237, 0.58);
  font-size: 0.84rem;
}

.footer-column h3 {
  margin-bottom: 16px;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: rgba(248, 245, 237, 0.58);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(248, 245, 237, 0.42);
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 12px 28px rgba(47, 42, 34, 0.18);
  color: #fff;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .hero-grid,
  .difference-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: auto;
    margin-inline: auto;
  }

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #f8f4ec;
    box-shadow: var(--shadow);
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    display: block;
    padding: 13px 12px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background: var(--bg-soft);
  }

  .hero {
    padding: 118px 0 72px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    gap: 24px;
  }

  .studio-card {
    width: min(100%, 440px);
    padding: 34px;
  }

  .studio-note {
    width: min(88%, 340px);
    padding: 22px 24px;
  }

  .section {
    padding: 80px 0;
  }

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

  .section-heading .text-link {
    margin-top: 20px;
  }

  .cards-grid,
  .project-grid,
  .process-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-row {
    padding: 28px;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    display: block;
    padding: 38px 27px;
  }

  .cta-panel .button {
    width: 100%;
    margin-top: 26px;
  }

  .page-main {
    padding-top: 72px;
  }

  .page-hero {
    padding: 88px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .contact-form,
  .contact-copy,
  .form-feedback {
    padding: 27px;
  }

  .feedback-actions {
    width: 100%;
  }

  .feedback-actions .button,
  .form-feedback > .button {
    width: 100%;
  }

  .form-group-full {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 11px;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-logo-wrap::after {
    right: -7px;
    bottom: 5px;
    height: 34px;
  }

  .brand-mark {
    font-size: 1.8rem;
  }

  .brand-mark::after {
    right: -7px;
    bottom: -4px;
    height: 34px;
  }

  .brand-name,
  .brand > span:last-child {
    font-size: 0.84rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .studio-card {
    padding: 28px;
  }

  .studio-signature strong {
    font-size: 1.45rem;
  }

  .studio-signature span {
    font-size: 0.56rem;
  }

  .studio-note {
    width: min(92%, 310px);
    padding: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .studio-card {
    animation: none;
  }
}
