:root {
  --black: #11100f;
  --black-2: #1b1917;
  --cream: #f4efe7;
  --cream-2: #e8dfd3;
  --white: #fffdf8;
  --orange: #df7541;
  --orange-dark: #b84f20;
  --gray: #736d66;
  --line: rgba(17, 16, 15, .14);
  --light-line: rgba(255, 253, 248, .16);
  --radius: 22px;
  --container: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: white; }

.container { width: var(--container); margin: auto; }
.section { padding: 110px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-white { background: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-heading > div { max-width: 720px; }
.section-heading p:last-child { max-width: 460px; color: var(--gray); }
.section-dark .section-heading p:last-child { color: rgba(255, 253, 248, .62); }

h1, h2, h3 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.06; }
h1 { font-size: clamp(3.3rem, 7vw, 7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.5rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.9rem); letter-spacing: -.025em; }
p { margin: 0; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; color: var(--orange-dark); font-size: .74rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #eea078; }
.lead { color: var(--gray); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.section-dark .lead, .hero .lead, .page-hero .lead { color: rgba(255, 253, 248, .68); }

.skip-link { position: fixed; left: 14px; top: -70px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: var(--orange); color: white; }
.skip-link:focus { top: 14px; }

.header { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--white); transition: background .3s, box-shadow .3s; }
.header.scrolled { background: rgba(17, 16, 15, .94); box-shadow: 0 12px 40px rgba(0, 0, 0, .18); backdrop-filter: blur(14px); }
.header-inner { width: var(--container); height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--light-line); }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.logo-mark { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-size: .78rem; }
.logo { position: relative; width: 214px; height: 58px; flex: 0 0 214px; gap: 0; }
.logo::before { content: ''; display: block; width: 100%; height: 100%; background: url('assets/brand/wesley-studio-logo.svg') center / contain no-repeat; }
.logo > span { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { position: relative; font-size: .86rem; font-weight: 600; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--orange); transition: right .25s; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav .contact-link { padding: 9px 17px; border: 1px solid rgba(255, 255, 255, .38); border-radius: 99px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--light-line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 99px; background: var(--orange); color: white; font-weight: 700; cursor: pointer; transition: transform .25s, background .25s; }
.button:hover { transform: translateY(-3px); background: var(--orange-dark); }
.button-outline { border-color: currentColor; background: transparent; color: inherit; }
.button-outline:hover { background: var(--black); color: var(--white); }
.section-dark .button-outline:hover { background: var(--white); color: var(--black); }
.text-link { display: inline-block; margin-top: 24px; border-bottom: 1px solid currentColor; font-weight: 700; }

.hero { min-height: 100vh; overflow: hidden; background: var(--black); color: var(--white); }
.hero-grid { width: var(--container); min-height: 100vh; margin: auto; padding: 140px 0 70px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 6vw; }
.hero h1 em { color: #efa176; font-weight: 500; }
.hero .lead { max-width: 630px; margin: 27px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-stats { display: flex; gap: 34px; margin-top: 52px; color: rgba(255, 253, 248, .5); font-size: .8rem; }
.hero-stats strong { display: block; color: white; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.hero-art { position: relative; height: min(72vh, 740px); min-height: 520px; }
.hero-photo { position: absolute; inset: 0 0 0 10%; overflow: hidden; border-radius: 220px 220px 16px 16px; background: #302c28; }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17, 16, 15, .5)); }
.hero-photo img { height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.08); }
.hero-badge { position: absolute; left: 0; bottom: 9%; z-index: 2; display: grid; place-items: center; width: 132px; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .38); border-radius: 50%; background: rgba(17, 16, 15, .6); font-size: .7rem; letter-spacing: .12em; text-align: center; text-transform: uppercase; backdrop-filter: blur(8px); }
.hero-number { position: absolute; z-index: 2; right: -12px; top: 10%; color: rgba(255, 255, 255, .22); font-family: Georgia, serif; font-size: 8rem; line-height: 1; }

.ticker { overflow: hidden; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); background: var(--black); color: white; }
.ticker-row { display: flex; width: max-content; animation: move 28s linear infinite; }
.ticker span { padding: 20px 26px; font-family: Georgia, serif; font-size: 1.25rem; white-space: nowrap; }
.ticker span::after { content: '✦'; margin-left: 48px; color: var(--orange); font-size: .72rem; }
@keyframes move { to { transform: translateX(-50%); } }

.services { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 320px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, color .3s; }
.service-card:hover { background: var(--black); color: white; }
.service-card small { color: var(--orange); font-weight: 700; letter-spacing: .14em; }
.service-card h3 { margin: 55px 0 16px; }
.service-card p { color: var(--gray); }
.service-card:hover p { color: rgba(255, 255, 255, .62); }
.round-arrow { display: grid; place-items: center; width: 40px; height: 40px; margin-top: 24px; border: 1px solid currentColor; border-radius: 50%; }

.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); background: #292521; color: white; }
.project img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .65s; }
.project.project-contain img { padding: 18px 18px 110px; object-fit: contain; background: #34312e; }
.project::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(8, 7, 6, .9)); }
.project:hover img { transform: scale(1.05); }
.project-copy { position: absolute; inset: auto 0 0; z-index: 2; padding: 30px; }
.tag { color: #f0a47d; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.project h3 { margin-top: 10px; }
.project p { margin-top: 10px; color: rgba(255, 255, 255, .65); }
.result { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 16px; font-size: .82rem; font-weight: 700; }

.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 8vw; align-items: center; }
.portrait { position: relative; }
.portrait::before { content: ''; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--line); border-radius: 220px 220px 18px 18px; }
.portrait img { position: relative; height: 620px; object-fit: cover; border-radius: 220px 220px 18px 18px; }
.about-copy .lead { margin: 25px 0 20px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin: 28px 0 35px; padding: 0; list-style: none; }
.checks li::before { content: '✓'; margin-right: 9px; color: var(--orange); font-weight: 800; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--light-line); border-top: 1px solid var(--light-line); }
.stat { padding: 40px 24px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.stat strong { display: block; color: #f0a27a; font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 4.5rem); font-weight: 500; line-height: 1; }
.stat span { display: block; margin-top: 9px; color: rgba(255, 255, 255, .5); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

.cta { background: var(--orange); color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 76px 0; }
.cta h2 { max-width: 760px; }
.cta .button { flex: 0 0 auto; background: var(--black); }

.page-hero { position: relative; min-height: 66vh; display: flex; align-items: end; overflow: hidden; padding: 180px 0 82px; background: var(--black); color: white; }
.page-hero::before, .page-hero::after { content: ''; position: absolute; border: 1px solid var(--light-line); border-radius: 50%; }
.page-hero::before { width: 520px; height: 520px; right: -80px; top: -250px; }
.page-hero::after { width: 330px; height: 330px; right: 120px; top: -155px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; }
.page-hero .lead { max-width: 700px; margin-top: 24px; }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .34); }
.detail-card.detail-wide { grid-column: 1 / -1; }
.detail-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border-radius: 50%; background: var(--black); color: white; font-family: Georgia, serif; }
.detail-card > p { margin: 14px 0 22px; color: var(--gray); }
.benefits { margin: 0 0 25px; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.benefits li { padding: 5px 0; color: #504b46; font-size: .88rem; }
.benefits li::before { content: '•'; margin-right: 9px; color: var(--orange); }
.price { display: block; color: var(--orange-dark); font-weight: 700; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); }
.step { padding: 30px 25px; border-left: 1px solid var(--light-line); }
.step:last-child { border-right: 1px solid var(--light-line); }
.step strong { color: #eea078; font-family: Georgia, serif; font-size: 3rem; font-weight: 500; }
.step h3 { margin: 30px 0 14px; }
.step p { color: rgba(255, 255, 255, .58); font-size: .9rem; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.filter { padding: 9px 17px; border: 1px solid var(--line); border-radius: 99px; background: transparent; cursor: pointer; }
.filter:hover, .filter.active { background: var(--black); color: white; }
.project.hidden { display: none; }

.editorial-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
}
.editorial-feature-media {
  display: grid;
  place-items: center;
  min-height: 650px;
  padding: 34px;
  border: 0;
  background: #465163;
  cursor: zoom-in;
}
.editorial-feature-media img { width: 100%; height: 580px; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .28)); }
.editorial-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 76px); }
.editorial-feature-copy h3 { margin: 12px 0 20px; font-size: clamp(2.2rem, 4vw, 4rem); }
.editorial-feature-copy p { color: rgba(255, 255, 255, .64); }
.project-notes { display: grid; gap: 14px; margin: 30px 0; padding: 24px 0; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.project-notes div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; }
.project-notes small { color: rgba(255, 255, 255, .4); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-notes span { color: rgba(255, 255, 255, .82); font-size: .88rem; }
.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.editorial-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.editorial-media { display: grid; place-items: center; width: 100%; height: 430px; padding: 18px; border: 0; background: var(--cream-2); cursor: zoom-in; }
.editorial-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s; }
.editorial-media:hover img { transform: scale(1.025); }
.editorial-copy { padding: 24px; }
.editorial-copy h3 { margin: 8px 0 11px; font-size: 1.45rem; }
.editorial-copy p { color: var(--gray); font-size: .9rem; }
.editorial-copy .tag { color: var(--orange-dark); }
.editorial-link { display: inline-block; margin-top: 16px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 700; }

.orion-case { background: var(--cream-2); }
.hero-project-link { display: inline-block; margin-top: 24px; }
.website-showcase { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--black); color: white; box-shadow: 0 24px 70px rgba(17, 16, 15, .12); }
.website-shot { position: relative; min-height: 520px; overflow: hidden; background: #313b94; }
.website-shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8, 7, 6, .62)); pointer-events: none; }
.website-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s; }
.website-shot:hover img { transform: scale(1.018); }
.website-shot span { position: absolute; right: 26px; bottom: 24px; z-index: 1; padding: 11px 17px; border: 1px solid rgba(255, 255, 255, .45); border-radius: 99px; background: rgba(17, 16, 15, .68); color: white; font-size: .8rem; font-weight: 700; backdrop-filter: blur(8px); }
.website-showcase-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(34px, 5vw, 68px); }
.website-showcase-copy .tag { color: var(--orange); }
.website-showcase-copy h3 { margin: 14px 0 18px; font-size: clamp(2rem, 3.2vw, 3.35rem); }
.website-showcase-copy p { margin-bottom: 30px; color: rgba(255, 255, 255, .65); }

.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; grid-template-rows: 1fr auto; place-items: center; padding: 34px; background: rgba(8, 7, 6, .94); opacity: 0; visibility: hidden; transition: .25s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1050px, 90vw); max-height: 82vh; object-fit: contain; }
.lightbox p { margin-top: 13px; color: rgba(255, 255, 255, .72); text-align: center; }
.lightbox-close { position: absolute; top: 20px; right: 20px; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; background: transparent; color: white; font-size: 1.5rem; cursor: pointer; }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.story-photo { position: sticky; top: 115px; height: 650px; object-fit: cover; border-radius: var(--radius); }
.story-copy h2 { margin-bottom: 28px; }
.story-copy > p { margin-bottom: 21px; color: #57514b; font-size: 1.06rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { padding: 28px; border: 1px solid var(--line); border-radius: 17px; }
.value strong { display: block; margin-bottom: 12px; color: var(--orange); font-family: Georgia, serif; font-size: 2.4rem; font-weight: 500; }
.skills { display: flex; flex-wrap: wrap; gap: 10px; }
.skills span { padding: 10px 16px; border: 1px solid var(--line); border-radius: 99px; background: white; }

.contact-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 7vw; }
.form-guidance { max-width: 620px; margin-top: 14px; color: #6d655e; font-size: .92rem; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; margin-top: 28px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: .8rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid #a89f96; outline: 0; background: transparent; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--orange); }
.field.error input, .field.error textarea { border-color: #ae362f; }
.field small { display: block; min-height: 18px; margin-top: 4px; color: #ae362f; }
.form-message { display: none; grid-column: 1 / -1; padding: 13px 16px; border-radius: 9px; background: rgba(41, 125, 88, .12); color: #25704f; }
.form-message.show { display: block; }
.form-message.error { background: rgba(174, 54, 47, .1); color: #9d302a; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-card { padding: 34px; border-radius: var(--radius); background: var(--black); color: white; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--light-line); }
.contact-item small { color: rgba(255, 255, 255, .45); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.contact-item a, .contact-item p { display: block; margin-top: 6px; }
.availability { margin-top: 28px; padding: 16px; border-radius: 12px; background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .68); font-size: .85rem; }
.dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #67c58a; }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plan { position: relative; display: flex; flex-direction: column; padding: 29px 23px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255, 255, 255, .34); }
.plan.featured { border-color: var(--orange); background: var(--black); color: white; transform: translateY(-12px); box-shadow: 0 24px 70px rgba(17, 16, 15, .15); }
.plan-badge { position: absolute; right: 16px; top: -12px; padding: 5px 11px; border-radius: 99px; background: var(--orange); color: white; font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.plan > p { min-height: 55px; margin: 10px 0 20px; color: var(--gray); font-size: .83rem; }
.plan.featured > p { color: rgba(255, 255, 255, .58); }
.plan-price { margin-bottom: 20px; font-family: Georgia, serif; font-size: 2.15rem; }
.plan ul { flex: 1; margin: 0 0 24px; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan.featured ul { border-color: var(--light-line); }
.plan li { padding: 5px 0; font-size: .8rem; }
.plan li::before { content: '✓'; margin-right: 7px; color: var(--orange); font-weight: 800; }
.plan .button { width: 100%; padding-inline: 10px; }

.faq { max-width: 880px; margin: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; background: transparent; font-weight: 700; text-align: left; cursor: pointer; }
.faq-icon { display: grid; place-items: center; flex: 0 0 31px; height: 31px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s; }
.faq-answer p { padding-bottom: 22px; color: var(--gray); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 220px; }

.footer { padding: 68px 0 24px; background: var(--black); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 65px; padding-bottom: 50px; }
.footer-about p { max-width: 420px; margin-top: 18px; color: rgba(255, 255, 255, .5); }
.footer h4 { margin: 0 0 15px; color: rgba(255, 255, 255, .38); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; }
.footer-links a:hover { color: #efa176; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--light-line); color: rgba(255, 255, 255, .38); font-size: .76rem; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px 0 13px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 99px;
  background: #25d366;
  color: #082b16;
  box-shadow: 0 16px 38px rgba(12, 70, 34, .28);
  font-size: .86rem;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(12, 70, 34, .38); }
.whatsapp-float span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, .9); font-size: 1.15rem; }
.whatsapp-float strong { font-weight: 800; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { height: 580px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plan.featured { transform: none; }
  .website-showcase { grid-template-columns: 1fr; }
  .website-shot { min-height: 0; aspect-ratio: 16 / 9; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 680px); }
  .section { padding: 80px 0; }
  .header-inner { height: 72px; }
  .menu-button { display: block; position: relative; z-index: 102; }
  .nav { position: fixed; inset: 0; z-index: 101; flex-direction: column; justify-content: center; gap: 20px; background: var(--black); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .28s; }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
  .nav .contact-link { border: 0; padding: 0; }
  .menu-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero-grid { padding-top: 135px; gap: 40px; }
  .hero-art { height: 520px; min-height: 0; }
  .hero-photo { left: 5%; }
  .section-heading, .cta-inner { align-items: start; flex-direction: column; }
  .detail-grid, .projects, .values, .contact-grid, .story-grid, .about-grid { grid-template-columns: 1fr; }
  .detail-card.detail-wide { grid-column: auto; }
  .editorial-feature { grid-template-columns: 1fr; }
  .editorial-feature-media { min-height: 580px; }
  .editorial-feature-media img { height: 520px; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .portrait img, .story-photo { height: 520px; }
  .story-photo { position: static; }
  .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .logo { width: 178px; height: 50px; flex-basis: 178px; }
  h1 { font-size: 3.45rem; }
  .hero, .hero-grid { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-art { height: 480px; }
  .hero-badge { width: 105px; }
  .services, .stats, .process { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 34px; }
  .checks, .form { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-media { height: 480px; }
  .editorial-feature-media { min-height: 500px; padding: 20px; }
  .editorial-feature-media img { height: 460px; }
  .website-showcase-copy { padding: 30px 24px 36px; }
  .website-shot span { right: 16px; bottom: 15px; }
  .project-notes div { grid-template-columns: 1fr; gap: 3px; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; height: 56px; min-height: 56px; padding: 0; justify-content: center; }
  .whatsapp-float span { width: 36px; height: 36px; }
  .whatsapp-float strong { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .page-hero { min-height: 58vh; padding-top: 145px; }
  .detail-card { padding: 29px 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
