:root {
  --ink: #151210;
  --ink-soft: #2d261f;
  --taupe: #a89278;
  --taupe-deep: #6f604f;
  --champagne: #f5efe3;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --mist: #f4f6f8;
  --gold: #d9ae5c;
  --gold-light: #f1d38a;
  --stone: #c4b5a4;
  --line: rgba(245, 239, 227, 0.16);
  --line-dark: rgba(45, 38, 31, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --max: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(135deg, #fffaf1 0%, #f7efe2 52%, #eef3f6 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes button-shine {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }

  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  height: 72px;
  margin: 0 auto;
  color: var(--ink);
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 72px;
  content: "";
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(217, 174, 92, 0.25);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 174, 92, 0.4);
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(45, 38, 31, 0.78);
  font-size: 0.94rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--gold);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(45, 38, 31, 0.16);
  border-radius: 8px;
}

.nav-toggle svg,
.btn svg,
.service-card > svg,
.metric svg,
.check-list svg,
.icon-list svg,
.why-card svg,
.project-card svg,
.instagram-link svg,
.site-footer svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.section-band,
.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(58px, 7vw, 88px) 0 clamp(36px, 5vw, 54px);
}

.hero-copy {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98) 0%, rgba(247, 239, 226, 0.96) 50%, rgba(226, 213, 195, 0.92) 100%),
    linear-gradient(90deg, rgba(217, 174, 92, 0.12), rgba(244, 246, 248, 0.3));
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  position: absolute;
  top: 72px;
  right: 0;
  left: 0;
  z-index: -1;
  height: 820px;
  content: "";
  background:
    linear-gradient(rgba(45, 38, 31, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 38, 31, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(#000, transparent 78%);
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(45, 38, 31, 0.76);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

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

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn::after,
.service-whatsapp::after {
  position: absolute;
  inset: -20% auto -20% -40%;
  width: 38%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.48), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn:hover::after,
.btn:focus-visible::after,
.service-whatsapp:hover::after,
.service-whatsapp:focus-visible::after {
  animation: button-shine 760ms ease;
}

.btn-primary {
  color: #1e1711;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 44px rgba(217, 174, 92, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
  border-color: rgba(45, 38, 31, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div {
  min-height: 74px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(45, 38, 31, 0.12);
  border-radius: 8px;
}

.hero-stats dt {
  margin-bottom: 6px;
  color: #b98523;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(45, 38, 31, 0.68);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-logo {
  width: min(92vw, 560px);
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(217, 174, 92, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: gentle-float 6s ease-in-out infinite;
}

.metric {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--champagne);
  background: rgba(21, 18, 16, 0.84);
  border: 1px solid rgba(217, 174, 92, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.metric svg {
  color: var(--gold);
}

.metric-top {
  top: 52px;
  right: 12px;
}

.metric-bottom {
  bottom: 58px;
  left: 0;
}

.section {
  padding: clamp(74px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.result-copy p,
.contact-copy p,
.urgency-box p {
  color: rgba(45, 38, 31, 0.72);
  font-size: 1.03rem;
  line-height: 1.75;
}

.pain-solution-section {
  padding-top: clamp(64px, 8vw, 104px);
}

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

.pain-card,
.solution-card,
.proof-card,
.why-card,
.project-card,
.urgency-box {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(45, 38, 31, 0.08);
}

.pain-card,
.solution-card {
  padding: clamp(22px, 4vw, 34px);
}

.pain-card h3,
.solution-card h3 {
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

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

.icon-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(45, 38, 31, 0.78);
  line-height: 1.55;
}

.problem-list svg {
  color: #b95c45;
}

.solution-list svg {
  color: #b98523;
}

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

.proof-card {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.proof-card strong {
  color: #b98523;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.proof-card span {
  color: rgba(45, 38, 31, 0.72);
  font-weight: 800;
  line-height: 1.35;
}

.service-carousel {
  position: relative;
}

.service-grid {
  display: flex;
  gap: 16px;
  padding: 4px 2px 18px;
  margin: -4px -2px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc((100% - 32px) / 3);
  overflow: hidden;
  min-height: 250px;
  padding: 0 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(45, 38, 31, 0.08);
  scroll-snap-align: start;
}

.service-card-image {
  width: calc(100% + 48px);
  height: auto;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0 -24px 22px;
  object-fit: cover;
  border-bottom: 1px solid rgba(45, 38, 31, 0.1);
}

.service-card > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--gold);
}

.service-card p {
  color: rgba(45, 38, 31, 0.68);
  line-height: 1.65;
}

.service-whatsapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  padding: 11px 14px;
  color: #1e1711;
  background: linear-gradient(135deg, rgba(241, 211, 138, 0.92), rgba(217, 174, 92, 0.92));
  border: 1px solid rgba(185, 133, 35, 0.2);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.service-whatsapp:hover,
.service-whatsapp:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.service-whatsapp svg {
  width: 18px;
  height: 18px;
  margin: 0;
  color: currentColor;
}

.carousel-button {
  position: absolute;
  top: clamp(96px, 9vw, 112px);
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(45, 38, 31, 0.14);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(45, 38, 31, 0.18);
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--gold);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.carousel-button svg {
  width: 24px;
  height: 24px;
}

.carousel-button-prev {
  left: -24px;
}

.carousel-button-next {
  right: -24px;
}

.has-js .service-carousel .reveal {
  opacity: 1;
  transform: translateY(0);
}

.traffic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding-top: clamp(24px, 5vw, 60px);
}

.traffic-copy p:not(.eyebrow) {
  color: rgba(45, 38, 31, 0.72);
  font-size: 1.03rem;
  line-height: 1.75;
}

.traffic-whatsapp {
  margin-top: 26px;
}

.traffic-visual {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(45, 38, 31, 0.14);
}

.traffic-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.traffic-visual figcaption {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
}

.traffic-visual strong {
  color: #b98523;
  font-size: 1.22rem;
  line-height: 1.25;
}

.traffic-visual span {
  color: rgba(45, 38, 31, 0.68);
  line-height: 1.55;
}

.why-section {
  padding-top: clamp(48px, 7vw, 90px);
}

.why-carousel {
  position: relative;
}

.why-carousel .carousel-button-prev {
  left: 8px;
}

.why-carousel .carousel-button-next {
  right: 8px;
}

.why-grid {
  display: flex;
  gap: 16px;
  padding: 4px 2px 18px;
  margin: -4px -2px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.why-grid::-webkit-scrollbar {
  display: none;
}

.why-card {
  flex: 0 0 calc((100% - 32px) / 3);
  display: grid;
  overflow: hidden;
  align-content: start;
  gap: 0;
  padding: 0;
  scroll-snap-align: start;
}

.why-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(45, 38, 31, 0.1);
}

.why-card-body {
  display: grid;
  gap: 10px;
  padding: 20px 22px 22px;
}

.why-card-body svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.why-card h3 {
  margin: 0;
  font-size: 1.14rem;
}

.why-card p {
  margin: 0;
  color: rgba(45, 38, 31, 0.68);
  line-height: 1.55;
}

.projects-section {
  padding-top: clamp(44px, 7vw, 86px);
}

.project-carousel {
  position: relative;
}

.project-grid {
  display: flex;
  gap: 16px;
  padding: 4px 2px 18px;
  margin: -4px -2px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 calc((100% - 32px) / 3);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  background: #fff7e6;
  border-color: rgba(217, 174, 92, 0.55);
  outline: none;
  transform: translateY(-2px);
}

.project-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(45, 38, 31, 0.1);
}

.project-card-body {
  display: grid;
  min-height: 154px;
  gap: 10px;
  align-content: start;
  padding: 18px 20px;
}

.project-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.project-card-description {
  color: rgba(45, 38, 31, 0.72);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

.project-card svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.urgency-section {
  padding-top: clamp(38px, 6vw, 82px);
}

.urgency-box {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 234, 216, 0.94)),
    var(--paper);
}

.urgency-box h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.urgency-box p {
  max-width: 780px;
  margin-bottom: 6px;
}

.urgency-box .btn {
  width: fit-content;
}

.diagnostic-proof {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(45, 38, 31, 0.12);
}

.diagnostic-proof-copy {
  max-width: 780px;
}

.diagnostic-proof-copy h3 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.traffic-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(45, 38, 31, 0.1);
}

.traffic-step {
  display: grid;
  min-height: 118px;
  place-items: center;
  gap: 12px;
  padding: 18px 12px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf1, #f4ead8);
  border: 1px solid rgba(217, 174, 92, 0.28);
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
}

.traffic-step svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.traffic-line {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 174, 92, 0.2), var(--gold));
}

.traffic-metric {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid rgba(45, 38, 31, 0.12);
}

.traffic-metric strong {
  color: #b98523;
  font-size: 1.3rem;
}

.traffic-metric span {
  color: rgba(45, 38, 31, 0.68);
  line-height: 1.55;
}

.process-band {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(244, 246, 248, 0.95)),
    var(--mist);
  border-top: 1px solid rgba(217, 174, 92, 0.2);
  border-bottom: 1px solid rgba(217, 174, 92, 0.2);
}

.process-band .section-heading p:not(.eyebrow) {
  color: rgba(45, 38, 31, 0.72);
}

.timeline-carousel {
  position: relative;
}

.timeline-carousel .carousel-button-prev {
  left: 8px;
}

.timeline-carousel .carousel-button-next {
  right: 8px;
}

.timeline {
  display: flex;
  gap: 16px;
  padding: 4px 2px 18px;
  margin: -4px -2px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.timeline-item {
  flex: 0 0 calc((100% - 32px) / 3);
  overflow: hidden;
  min-height: 260px;
  padding: 0 22px 24px;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  scroll-snap-align: start;
}

.timeline-image {
  width: calc(100% + 44px);
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 -22px 22px;
  object-fit: cover;
  border-bottom: 1px solid rgba(45, 38, 31, 0.1);
}

.timeline-item span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.timeline-item p {
  color: rgba(45, 38, 31, 0.68);
  line-height: 1.65;
}

.result-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(45, 38, 31, 0.82);
}

.check-list svg {
  color: var(--gold);
}

.result-whatsapp {
  margin-top: 28px;
}

.result-showcase {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.result-showcase img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.result-showcase figcaption {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.94);
}

.result-showcase figcaption strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.result-showcase figcaption span {
  color: rgba(45, 38, 31, 0.68);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-photo {
  overflow: hidden;
  margin: 0 0 28px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(45, 38, 31, 0.1);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 0;
  color: var(--ink);
  font-weight: 850;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: #b98523;
  outline: none;
  transform: translateX(3px);
}

.instagram-link svg {
  color: var(--gold);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.briefing-column {
  display: grid;
  gap: 18px;
}

.briefing-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(45, 38, 31, 0.1);
}

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

.briefing-form label span {
  color: rgba(45, 38, 31, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.briefing-form input,
.briefing-form select,
.briefing-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f1e7;
  border: 1px solid rgba(45, 38, 31, 0.12);
  border-radius: 8px;
  outline: none;
}

.briefing-form textarea {
  min-height: 120px;
  resize: vertical;
}

.briefing-form input:focus,
.briefing-form select:focus,
.briefing-form textarea:focus {
  border-color: rgba(217, 174, 92, 0.8);
  box-shadow: 0 0 0 4px rgba(217, 174, 92, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--taupe-deep);
  font-size: 0.92rem;
  line-height: 1.45;
}

.briefing-followup {
  display: grid;
  gap: 8px;
  padding: 0 4px;
}

.briefing-followup p {
  margin: 0;
  color: rgba(45, 38, 31, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.briefing-followup .contact-links,
.briefing-followup .instagram-link {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px max(16px, calc((100% - var(--max)) / 2));
  color: rgba(45, 38, 31, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 234, 216, 0.9)),
    var(--paper);
  border-top: 1px solid rgba(217, 174, 92, 0.24);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

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

.footer-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(217, 174, 92, 0.28);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(241, 211, 138, 0.3);
  border-color: rgba(217, 174, 92, 0.5);
  outline: none;
  transform: translateY(-2px);
}

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

.has-js .reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

.is-interactive-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  will-change: transform;
}

.is-interactive-card:hover,
.is-interactive-card:focus-within {
  border-color: rgba(217, 174, 92, 0.42);
  box-shadow: 0 24px 64px rgba(45, 38, 31, 0.14);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
}

.is-interactive-card:hover svg,
.is-interactive-card:focus-within svg {
  transform: translateY(-1px) scale(1.06);
}

.is-interactive-card svg {
  transition: transform 180ms ease;
}

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

  .hero-logo {
    animation: none;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .is-interactive-card {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .result-section,
  .contact-section,
  .traffic-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .service-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .project-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .why-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .timeline-item {
    flex-basis: calc((100% - 16px) / 2);
  }

}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(217, 174, 92, 0.22);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .hero-stats,
  .traffic-panel,
  .pain-solution-grid,
  .proof-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    padding-right: 46px;
  }

  .project-grid {
    padding-right: 46px;
  }

  .why-grid {
    padding-right: 46px;
  }

  .timeline {
    padding-right: 46px;
  }

  .service-card {
    flex-basis: min(86vw, 340px);
  }

  .project-card {
    flex-basis: min(86vw, 340px);
  }

  .why-card {
    flex-basis: min(86vw, 340px);
  }

  .timeline-item {
    flex-basis: min(86vw, 340px);
  }

  .carousel-button {
    width: 42px;
    height: 42px;
  }

  .carousel-button-prev {
    left: 6px;
  }

  .carousel-button-next {
    right: 6px;
  }

  .traffic-line {
    width: 2px;
    height: 30px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(217, 174, 92, 0.2), var(--gold));
  }

  .hero-stats,
  .hero-visual {
    display: none;
  }

  .hero {
    width: min(100% - 24px, var(--max));
    padding-top: 40px;
  }

  .hero-actions {
    display: grid;
  }

  .urgency-box .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .metric {
    position: static;
    width: min(100%, 300px);
    margin-top: 10px;
  }

  .section {
    width: min(100% - 24px, var(--max));
  }

  .process-band {
    width: 100%;
  }

  .service-card,
  .timeline-item {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    line-height: 1.05;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero-logo {
    width: min(88vw, 300px);
  }

  .briefing-form {
    padding: 20px;
  }
}

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