:root {
  --bg: #f7f2ea;
  --surface: #fffdf8;
  --surface-alt: #eee4d8;
  --ink: #171717;
  --muted: #6f6a62;
  --line: rgba(23, 23, 23, 0.12);
  --gold: #b68646;
  --gold-soft: #ead8bd;
  --charcoal: #202020;
  --shadow: 0 28px 80px rgba(23, 23, 23, 0.1);
  --radius: 10px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(182, 134, 70, 0.12), transparent 30%);
  pointer-events: none;
}

body.modal-open {
  overflow: hidden;
}

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

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

section {
  scroll-margin-top: 96px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.86);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 72px;
  max-width: 250px;
  display: block;
  object-fit: contain;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav-toggle {
  display: none;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.btn,
.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--surface);
}

.btn-full {
  width: 100%;
}

.hero {
  min-height: calc(92vh - 78px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.9fr);
  gap: 76px;
  align-items: center;
}

.hero-copy {
  animation: fadeUp 720ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.45rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  position: relative;
}

.title-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 720;
}

.title-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.title-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  z-index: -1;
  height: 0.12em;
  border-radius: 999px;
  background: rgba(182, 134, 70, 0.34);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
}

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

.hero-visual {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 620px;
  animation: fadeUp 820ms 120ms ease both;
}

.visual-stack {
  position: relative;
  min-height: 560px;
}

.stack-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(23, 23, 23, 0.14);
  animation: stackFloat 7s ease-in-out infinite;
}

.stack-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58));
}

.stack-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--surface);
}

.stack-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.12;
}

.stack-card-main {
  z-index: 2;
  right: 46px;
  top: 72px;
  width: 390px;
  height: 480px;
}

.stack-card-back {
  z-index: 1;
  left: 4px;
  top: 8px;
  width: 300px;
  height: 360px;
  transform: rotate(-4deg);
  animation-delay: 500ms;
}

.stack-card-front {
  z-index: 3;
  left: 62px;
  bottom: 2px;
  width: 300px;
  height: 230px;
  transform: rotate(3deg);
  animation-delay: 950ms;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-head {
  max-width: none;
  display: block;
  text-align: center;
}

.portfolio-section .section-head {
  max-width: none;
  display: flex;
  justify-content: center;
}

.portfolio-section h2 {
  width: max-content;
  max-width: calc(100vw - 36px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  white-space: nowrap;
}

.portfolio-summary {
  max-width: 520px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.portfolio-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding-left: max(36px, calc((100vw - var(--max)) / 2));
}

.portfolio-track {
  display: flex;
  width: max-content;
  overflow: visible;
  padding: 6px 0 34px;
  scroll-snap-type: none;
  scrollbar-width: none;
  will-change: transform;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
}

.portfolio-track.is-looping {
  animation: carouselLoop var(--carousel-duration, 34s) linear infinite;
}

.portfolio-carousel:hover .portfolio-track,
.portfolio-carousel:focus-within .portfolio-track {
  animation-play-state: paused;
}

.portfolio-track:focus {
  outline: none;
}

.portfolio-track:focus-visible {
  box-shadow: 0 0 0 4px rgba(182, 134, 70, 0.12);
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.project {
  position: relative;
  flex: 0 0 clamp(360px, 38vw, 570px);
  min-height: 520px;
  margin-right: 22px;
  display: flex;
  align-items: end;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line), 0 24px 64px rgba(23, 23, 23, 0.08);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project::before {
  content: "";
  position: absolute;
  inset: 0 0 150px;
  background: var(--image) center/cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0 0 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 var(--line), 0 32px 84px rgba(23, 23, 23, 0.12);
}

.project:hover::before {
  transform: scale(1.035);
  filter: saturate(0.92);
}

.project-orange {
  --image: url("assets/img/concert.png");
}

.project-fuwalab {
  --image: url("assets/img/fuwalab.png");
}

.project-roselia {
  --image: url("assets/img/roselia.png");
}

.project-frost {
  --image: url("assets/img/frost.png");
}

.project-green {
  --image: url("assets/img/menu_smash_burger.png");
}

.project-bethune-event {
  --image: url("assets/img/bethuneevent.png");
}

.project-barber {
  --image: url("assets/img/cartevisite.png");
}

.project-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 150px;
  padding: 24px 26px;
  align-self: end;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.project small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project h3 {
  margin-bottom: 7px;
  font-size: 1.45rem;
  font-weight: 720;
}

.project p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

.image-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(18px);
  cursor: zoom-out;
}

.modal-frame {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
  animation: modalIn 180ms ease both;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  max-height: 78vh;
  overflow: auto;
}

.modal-gallery-item {
  display: block;
  min-height: 260px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.modal-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-gallery-item.is-expanded {
  grid-column: 1 / -1;
  min-height: auto;
  cursor: zoom-out;
}

.modal-gallery-item.is-expanded img {
  max-height: 76vh;
  object-fit: contain;
  background: #111;
}

.modal-frame figcaption {
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--surface);
  background: rgba(23, 23, 23, 0.52);
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.offers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 134, 70, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(238, 228, 216, 0.46));
}

.offers .section {
  width: min(1500px, calc(100% - 48px));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 22px;
  align-items: stretch;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.offer-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.04);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 134, 70, 0.5);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(23, 23, 23, 0.11);
}

.offer-card.featured {
  transform: translateY(-14px);
  border-color: rgba(182, 134, 70, 0.75);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 237, 223, 0.98));
  box-shadow: 0 34px 95px rgba(182, 134, 70, 0.18);
}

.offer-card.featured:hover {
  transform: translateY(-20px);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-icon {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.offer-kicker {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card h3 {
  min-height: 64px;
  margin-bottom: 18px;
  padding-right: 60px;
  font-size: 1.58rem;
  font-weight: 720;
  line-height: 1.04;
}

.price {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 2.32rem;
  font-weight: 760;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.offer-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.offer-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-size: 0.95rem;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.offer-card .btn {
  margin-top: auto;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.1);
}

.offer-card.featured .btn {
  background: var(--gold);
  border-color: var(--gold);
}

.offer-card.featured .btn:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.custom-offer {
  background:
    linear-gradient(180deg, rgba(32, 32, 32, 0.96), rgba(32, 32, 32, 0.9));
  color: var(--surface);
}

.custom-offer:hover {
  border-color: rgba(234, 216, 189, 0.42);
  background:
    linear-gradient(180deg, rgba(32, 32, 32, 0.98), rgba(32, 32, 32, 0.92));
  box-shadow: 0 34px 100px rgba(23, 23, 23, 0.18);
}

.custom-offer .offer-kicker,
.custom-offer .price span,
.custom-offer ul {
  color: rgba(255, 253, 248, 0.68);
}

.custom-offer .price {
  color: var(--surface);
  border-top-color: rgba(255, 253, 248, 0.16);
}

.custom-offer .btn {
  color: var(--ink);
  background: var(--gold-soft);
}

.custom-offer .btn:hover {
  color: var(--surface);
  background: var(--gold);
}

.urgency {
  padding: 88px 0;
  color: var(--surface);
  background: var(--charcoal);
}

.urgency-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 48px;
  align-items: center;
}

.urgency .eyebrow {
  color: var(--gold-soft);
}

.urgency p {
  color: rgba(255, 253, 248, 0.68);
}

.deadline-box {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.deadline-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 720;
  line-height: 1.04;
}

.deadline-box p {
  margin-bottom: 0;
  color: var(--surface);
  font-size: 1.05rem;
  font-weight: 650;
}

.deadline-note {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
}

.pulse-dot {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(182, 134, 70, 0.42);
  animation: pulse 2.2s infinite;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: start;
}

.contact-intro,
form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.04);
}

.contact-intro {
  padding: 34px;
}

.contact-intro p {
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-points span {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 650;
}

form {
  padding: 34px;
}

.contact-form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form-logo img {
  width: auto;
  height: 132px;
  max-width: min(420px, 100%);
  display: block;
  object-fit: contain;
}

.form-grid {
  display: grid;
  gap: 17px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.optional {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  background: #fffaf4;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(182, 134, 70, 0.78);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(182, 134, 70, 0.12);
}

footer {
  padding: 34px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  text-align: center;
}

footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

.legal-back:hover {
  color: var(--ink);
}

.legal-document {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.04);
}

.legal-document h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 4.2rem);
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-document strong {
  color: var(--ink);
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(182, 134, 70, 0.42);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(182, 134, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(182, 134, 70, 0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.975);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes stackFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes carouselLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--carousel-distance, 0px) * -1), 0, 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;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .urgency-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, calc(100vw - 36px));
  }

  .offer-card.featured,
  .offer-card.featured:hover {
    transform: none;
  }

  .hero-visual {
    max-width: 620px;
  }

  .visual-stack {
    max-width: 620px;
  }

  .portfolio-track {
    padding-left: 18px;
  }

  .project {
    flex-basis: min(68vw, 500px);
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-inner {
    width: min(100%, calc(100% - 28px));
    min-height: 76px;
    padding: 9px 0;
    gap: 12px;
  }

  .brand-logo {
    height: 58px;
    max-width: 205px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(23, 23, 23, 0.16);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 253, 248, 0.74);
    box-shadow: 0 14px 34px rgba(23, 23, 23, 0.08);
    cursor: pointer;
  }

  .nav-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 26px 70px rgba(23, 23, 23, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links {
    width: 100%;
    display: grid;
    gap: 4px;
    color: var(--ink);
    font-size: 1rem;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    white-space: normal;
  }

  .nav-links a:hover {
    background: var(--surface-alt);
  }

  .nav-cta {
    width: 100%;
    min-height: 50px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 62px 0 58px;
    gap: 42px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .split-head {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 82vw);
    grid-template-columns: none;
    gap: 16px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 18px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .offer-card {
    scroll-snap-align: start;
  }

  .portfolio-section h2 {
    width: auto;
    white-space: normal;
  }

  .offer-card h3 {
    min-height: auto;
  }

  .portfolio-track {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .visual-stack {
    min-height: 500px;
  }

  .stack-card-main {
    right: 0;
    top: 58px;
    width: 76%;
    height: 390px;
  }

  .stack-card-back {
    left: 0;
    width: 54%;
    height: 260px;
  }

  .stack-card-front {
    left: 6%;
    width: 58%;
    height: 190px;
  }

  .project {
    flex-basis: 84vw;
    margin-right: 16px;
    min-height: 390px;
  }

  .project::before,
  .project::after {
    bottom: 132px;
  }

  .project-content {
    max-width: 100%;
    min-height: 132px;
    padding: 18px 18px;
  }

  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .modal-gallery-item {
    min-height: 220px;
  }

  .section {
    padding: 74px 0;
  }

  .urgency {
    padding: 74px 0;
  }

  .contact-intro,
  form,
  .deadline-box {
    padding: 24px;
  }
}
