:root {
  --black: #0f0f0f;
  --ink: #1b1a18;
  --white: #f7f6f4;
  --paper: #fffcf8;
  --beige: #d8cfc4;
  --grey: #b7b7b7;
  --gold: #b89b72;
  --olive: #3f4a38;
  --line: rgba(15, 15, 15, 0.14);
  --shadow: 0 24px 70px rgba(15, 15, 15, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--black);
  animation: loaderOut 1.2s ease 0.5s forwards;
  pointer-events: none;
}

.loader img {
  width: 132px;
  animation: logoLift 0.9s ease forwards;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 246, 244, 0.92);
  box-shadow: 0 12px 38px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: cinematic 16s ease-in-out infinite alternate;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.44) 46%, rgba(15, 15, 15, 0.1)),
    linear-gradient(0deg, rgba(15, 15, 15, 0.76), transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
}

h2 {
  font-size: clamp(2.45rem, 4.8vw, 5.8rem);
}

h3 {
  font-size: clamp(1.6rem, 2.1vw, 2.25rem);
}

.hero-subtitle {
  max-width: 680px;
  margin: 26px 0 34px;
  color: rgba(247, 246, 244, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-highlight {
  max-width: 620px;
  margin: -18px 0 32px;
  color: rgba(247, 246, 244, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

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

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(247, 246, 244, 0.08);
  backdrop-filter: blur(10px);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-floats {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 54px;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.hero-floats span {
  padding: 9px 13px;
  border: 1px solid rgba(247, 246, 244, 0.28);
  border-radius: 999px;
  color: rgba(247, 246, 244, 0.82);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: rgba(15, 15, 15, 0.32);
  animation: floatTag 4.5s ease-in-out infinite;
}

.hero-floats span:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-floats span:nth-child(3) {
  animation-delay: 1.6s;
}

.marquee {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(247, 246, 244, 0.12);
  border-bottom: 1px solid rgba(247, 246, 244, 0.12);
}

.marquee div {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 18px 0;
  animation: scrollText 24s linear infinite;
}

.marquee span {
  text-transform: uppercase;
  color: rgba(247, 246, 244, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.section-soft {
  background: linear-gradient(135deg, var(--white), #eee9e2);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(27, 26, 24, 0.68);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.split-heading > div,
.split-heading h2 {
  max-width: 850px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.lead {
  font-size: 1.25rem;
  color: var(--black);
}

.about-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(27, 26, 24, 0.72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.stats div {
  padding: 22px 14px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.stats span {
  color: rgba(27, 26, 24, 0.62);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.image-stack {
  position: relative;
  min-height: 660px;
}

.image-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack .portrait {
  top: 0;
  right: 0;
  width: 75%;
  height: 610px;
}

.image-stack .detail {
  left: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1 / 1;
  border: 10px solid var(--paper);
}

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

.editorial-card {
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 430px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-card div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
}

.editorial-card span,
.timeline-item span,
.resource-card span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.editorial-card p,
.timeline-item p,
.why-grid p,
.inquiry p {
  color: rgba(247, 246, 244, 0.7);
}

.service-grid,
.resource-grid,
.why-grid,
.business-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.resource-card,
.business-card,
.package-card,
.why-grid div {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.74);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-card:hover,
.resource-card:hover,
.business-card:hover,
.package-card:hover,
.why-grid div:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 155, 114, 0.6);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card p,
.resource-card p,
.business-card p {
  color: rgba(27, 26, 24, 0.68);
}

.service-card ul {
  display: grid;
  gap: 7px;
  padding: 20px 0;
  margin: 18px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card li {
  color: rgba(27, 26, 24, 0.78);
  font-size: 0.92rem;
}

.service-card a,
.resource-card a,
.business-card a {
  color: var(--black);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.business-card span,
.package-card span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.business-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-action {
  margin-top: 28px;
}

.launch-intro {
  max-width: 820px;
  margin: -26px 0 34px;
  color: rgba(247, 246, 244, 0.72);
}

.package-card {
  background: rgba(247, 246, 244, 0.06);
  border-color: rgba(247, 246, 244, 0.14);
}

.package-card h3 {
  margin: 16px 0 22px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-card li {
  color: rgba(247, 246, 244, 0.72);
}

.package-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.launch-note {
  margin: 26px 0 0;
  color: rgba(247, 246, 244, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.resource-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 15, 15, 0.22);
}

.resource-actions a:hover {
  border-color: var(--gold);
}

.shop-intro {
  max-width: 860px;
  margin: clamp(42px, 7vw, 84px) 0 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.shop-intro h3 {
  max-width: 780px;
}

.shop-intro p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(27, 26, 24, 0.68);
}

.shop-grid {
  align-items: stretch;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 246, 244, 0.18);
}

.timeline-item {
  min-height: 300px;
  padding: 30px;
  background: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.portfolio-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.portfolio-grid figure:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.portfolio-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portfolio-grid .tall {
  grid-row: span 2;
}

.portfolio-grid .wide {
  grid-column: span 2;
}

.website-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  margin: -24px 0 clamp(34px, 5vw, 64px);
}

.website-copy {
  max-width: 780px;
  color: rgba(27, 26, 24, 0.68);
}

.website-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.website-points span {
  padding: 9px 12px;
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 999px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mockup-stack {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: 18px;
}

.browser-mockup {
  position: static;
  width: 100%;
  min-height: 400px;
  border: 1px solid rgba(15, 15, 15, 0.16);
  background: var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(247, 246, 244, 0.14);
}

.mockup-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beige);
}

.mockup-top small {
  position: absolute;
  left: 50%;
  color: rgba(247, 246, 244, 0.52);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.mockup-site-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 11px 18px;
  color: var(--white);
  background: #0f0f0f;
}

.mockup-site-nav strong {
  margin-right: auto;
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 500;
}

.mockup-site-nav i {
  color: var(--gold);
  font-style: normal;
}

.mockup-site-nav span {
  color: rgba(247, 246, 244, 0.7);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mockup-hero {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 14px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.86), rgba(15, 15, 15, 0.4)),
    url("hero-laptop.jpg") center 36% / cover;
}

.mockup-hero p,
.mockup-hero em {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.18em;
}

.mockup-hero strong {
  max-width: 390px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  line-height: 0.94;
  font-weight: 600;
}

.mockup-hero b {
  align-self: flex-start;
  padding: 8px 12px;
  color: var(--black);
  background: var(--white);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--paper);
}

.mockup-grid article {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 15px;
  border-right: 1px solid rgba(15, 15, 15, 0.12);
  background: #f7f6f4;
}

.mockup-grid article:last-child {
  border-right: 0;
}

.mockup-grid small {
  color: var(--gold);
  font-size: 0.5rem;
  font-weight: 800;
}

.mockup-grid strong {
  font-family: var(--serif);
  font-size: 0.82rem;
}

.mockup-grid article span {
  color: rgba(27, 26, 24, 0.62);
  font-size: 0.48rem;
}

.phone-mockup {
  position: static;
  width: 190px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
  border: 10px solid var(--black);
  border-radius: 30px;
  color: var(--white);
  background: #0f0f0f;
  box-shadow: var(--shadow);
  z-index: 2;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(247, 246, 244, 0.35);
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 14px 16px;
}

.phone-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.phone-nav b {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.phone-nav span {
  font-size: 0.42rem;
}

.phone-photo {
  width: 100%;
  min-height: 94px;
  background:
    linear-gradient(0deg, rgba(15, 15, 15, 0.12), rgba(15, 15, 15, 0.12)),
    url("creator-phone.jpg") center 27% / cover;
}

.phone-screen em {
  color: var(--gold);
  font-size: 0.44rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-screen strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

.phone-screen p {
  margin: 0;
  color: rgba(247, 246, 244, 0.7);
  font-size: 0.78rem;
}

.phone-screen a {
  align-self: flex-start;
  padding: 8px 10px;
  color: var(--black);
  background: var(--white);
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: auto;
}

.phone-services span {
  padding: 8px 6px;
  border: 1px solid rgba(247, 246, 244, 0.18);
  color: rgba(247, 246, 244, 0.72);
  font-size: 0.42rem;
  text-align: center;
}

.phone-mockup span {
  color: rgba(247, 246, 244, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.website-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.website-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.82);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.website-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 155, 114, 0.6);
  box-shadow: var(--shadow);
}

.website-card span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.website-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.35rem);
}

.website-card p {
  color: rgba(27, 26, 24, 0.68);
}

.website-card a {
  color: var(--black);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.template-showcase {
  background: var(--paper);
}

.template-intro {
  max-width: 860px;
  margin: -28px 0 34px;
  color: rgba(27, 26, 24, 0.68);
}

.showcase-gallery {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}

.showcase-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 15, 15, 0.16);
  background: #0f0f0f;
}

.showcase-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.showcase-panel:hover img {
  transform: scale(1.012);
}

.showcase-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.showcase-details span {
  min-width: 0;
  padding: 20px 24px;
  color: #f7f6f4;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.showcase-details span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

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

.template-card {
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.78);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.template-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 155, 114, 0.6);
  box-shadow: var(--shadow);
}

.device-pair {
  position: relative;
  min-height: 315px;
  margin-bottom: 24px;
}

.template-laptop {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  min-height: 265px;
  padding: 10px;
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 12px;
  background: #171614;
  box-shadow: 0 20px 44px rgba(15, 15, 15, 0.18);
}

.template-bar {
  height: 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(247, 246, 244, 0.14);
}

.template-screen {
  min-height: 229px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  color: var(--white);
  border-radius: 6px;
  overflow: hidden;
}

.template-screen::before {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  border-bottom: 1px solid currentColor;
  opacity: 0.34;
  box-shadow:
    0 22px 0 -8px currentColor,
    86px 22px 0 -8px currentColor,
    172px 22px 0 -8px currentColor;
}

.template-screen::after {
  content: "Enquire";
  align-self: flex-start;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.template-screen span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.template-screen strong {
  max-width: 330px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.9;
  font-weight: 600;
}

.template-screen p {
  margin: 0;
  color: rgba(247, 246, 244, 0.74);
  font-size: 0.78rem;
}

.template-screen div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.template-screen i {
  position: relative;
  min-height: 46px;
  border: 1px solid rgba(247, 246, 244, 0.15);
  background: rgba(247, 246, 244, 0.12);
  overflow: hidden;
}

.template-screen i::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 3px;
  background: currentColor;
  opacity: 0.45;
  box-shadow: 0 -10px 0 currentColor;
}

.template-screen i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 26px;
  height: 18px;
  background: rgba(247, 246, 244, 0.18);
}

.template-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 31%;
  min-width: 120px;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px 12px;
  border: 8px solid var(--black);
  border-radius: 26px;
  color: var(--white);
  background: #26211d;
  box-shadow: 0 20px 48px rgba(15, 15, 15, 0.18);
}

.template-phone::before {
  content: "";
  display: block;
  width: 100%;
  height: 62px;
  margin-top: 14px;
  border: 1px solid rgba(247, 246, 244, 0.14);
  background: rgba(247, 246, 244, 0.11);
}

.template-phone::after {
  content: "CTA";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74%;
  min-height: 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.template-phone span {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(247, 246, 244, 0.28);
  transform: translateX(-50%);
}

.template-phone strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 0.95;
}

.template-phone i {
  display: block;
  width: 100%;
  height: 18px;
  border: 1px solid rgba(247, 246, 244, 0.13);
  background: rgba(247, 246, 244, 0.1);
}

.template-phone i:last-child {
  width: 68%;
}

.template-card h3 {
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
}

.template-card p {
  color: rgba(27, 26, 24, 0.68);
}

.template-brand .template-screen {
  background:
    linear-gradient(120deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.36)),
    url("assets/hero-laptop.png") center / cover;
}

.template-brand .template-screen div {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.template-brand .template-screen i:first-child {
  min-height: 64px;
  background:
    linear-gradient(rgba(15, 15, 15, 0.18), rgba(15, 15, 15, 0.32)),
    url("assets/about-laptop.png") center / cover;
}

.template-beauty .template-screen,
.template-beauty .template-phone {
  background: linear-gradient(135deg, #fff8f2, #d8cfc4 52%, #b89b72);
  color: var(--black);
}

.template-beauty .template-screen p,
.template-beauty .template-screen span {
  color: rgba(15, 15, 15, 0.68);
}

.template-beauty .template-screen div {
  grid-template-columns: repeat(4, 1fr);
}

.template-beauty .template-screen i {
  border-radius: 999px 999px 10px 10px;
  background: rgba(15, 15, 15, 0.08);
}

.template-build .template-screen,
.template-build .template-phone {
  background:
    linear-gradient(135deg, rgba(15, 15, 15, 0.92), rgba(104, 98, 91, 0.76)),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(247, 246, 244, 0.08) 10px 12px);
}

.template-build .template-screen div {
  grid-template-columns: 1fr 1fr;
}

.template-build .template-screen i {
  min-height: 34px;
  background: rgba(247, 246, 244, 0.09);
}

.template-build .template-screen i:last-child {
  grid-column: 1 / -1;
  min-height: 30px;
}

.template-finance .template-screen,
.template-finance .template-phone {
  background: linear-gradient(135deg, #101820, #506070);
}

.template-finance .template-screen div {
  grid-template-columns: repeat(3, 1fr);
}

.template-finance .template-screen i {
  background: linear-gradient(180deg, rgba(247, 246, 244, 0.18), rgba(247, 246, 244, 0.05));
}

.template-finance .template-screen i::after {
  width: 8px;
  height: 26px;
  top: auto;
  bottom: 8px;
  box-shadow: 14px -9px 0 rgba(247, 246, 244, 0.18), 28px -18px 0 rgba(247, 246, 244, 0.18);
}

.template-shop .template-screen,
.template-shop .template-phone {
  background: linear-gradient(135deg, #1b1a18, #3f4a38);
}

.template-shop .template-screen div {
  grid-template-columns: repeat(4, 1fr);
}

.template-shop .template-screen i {
  min-height: 54px;
  background:
    linear-gradient(180deg, rgba(247, 246, 244, 0.22) 0 46%, rgba(247, 246, 244, 0.08) 46% 100%);
}

.template-food .template-screen,
.template-food .template-phone {
  background: linear-gradient(135deg, #1a1110, #8a5b45);
}

.template-food .template-screen div {
  grid-template-columns: 1fr;
}

.template-food .template-screen i {
  min-height: 22px;
  background: linear-gradient(90deg, rgba(247, 246, 244, 0.2), transparent);
}

.template-food .template-screen i::after {
  border-radius: 50%;
}

.template-holiday .template-screen,
.template-holiday .template-phone {
  background: linear-gradient(135deg, #f4efe7, #44605a);
  color: var(--black);
}

.template-holiday .template-screen p,
.template-holiday .template-screen span {
  color: rgba(15, 15, 15, 0.7);
}

.template-holiday .template-screen div {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.template-holiday .template-screen i:first-child {
  min-height: 62px;
  background: linear-gradient(135deg, rgba(68, 96, 90, 0.4), rgba(255, 252, 248, 0.36));
}

.template-travel .template-screen,
.template-travel .template-phone {
  background: linear-gradient(135deg, #15222b, #b89b72);
}

.template-travel .template-screen div {
  grid-template-columns: 1fr 1fr;
}

.template-travel .template-screen i {
  border-radius: 18px;
  background: rgba(247, 246, 244, 0.12);
}

.template-sales .template-screen,
.template-sales .template-phone {
  background: linear-gradient(135deg, #0f0f0f, #b89b72);
}

.template-sales .template-screen div {
  grid-template-columns: 1fr 1fr 0.72fr;
}

.template-sales .template-screen::after {
  content: "Buy Now";
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.email-capture {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.email-capture label {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.email-capture div {
  display: flex;
  gap: 10px;
  width: min(520px, 100%);
}

.email-capture input,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 15, 15, 0.2);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 252, 248, 0.88);
}

.studio-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.studio-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.studio-panel p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(27, 26, 24, 0.68);
}

.why-grid div {
  color: var(--white);
  background: rgba(247, 246, 244, 0.06);
  border-color: rgba(247, 246, 244, 0.14);
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.testimonial-track blockquote {
  flex: 0 0 min(560px, 84vw);
  min-height: 230px;
  display: flex;
  align-items: end;
  margin: 0;
  padding: 34px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  background: var(--white);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.insta-grid img:hover {
  transform: translateY(-5px);
  filter: saturate(1.04);
}

.faq-list {
  max-width: 920px;
  margin-left: auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 700px;
  margin: 0 0 24px;
  color: rgba(27, 26, 24, 0.68);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  color: rgba(247, 246, 244, 0.82);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: var(--white);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(27, 26, 24, 0.78);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.inquiry-form label:has(textarea),
.inquiry-form button {
  grid-column: 1 / -1;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #050505;
}

.footer img {
  width: 74px;
}

.footer p,
.footer a {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer div {
  display: flex;
  gap: 18px;
}

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

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

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoLift {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
}

@keyframes cinematic {
  to {
    transform: scale(1.11) translate3d(-1.5%, -1%, 0);
  }
}

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

@keyframes scrollText {
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1120px) {
  .service-grid,
  .resource-grid,
  .why-grid,
  .business-grid,
  .package-grid,
  .template-grid,
  .website-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-cards,
  .about-grid,
  .studio-panel,
  .website-feature,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .mockup-stack {
    min-height: 500px;
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .image-stack {
    min-height: 560px;
  }

  .image-stack .portrait {
    width: 78%;
    height: 510px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(15, 15, 15, 0.86), rgba(15, 15, 15, 0.32)),
      linear-gradient(0deg, rgba(15, 15, 15, 0.84), transparent 64%);
  }

  .hero-floats {
    display: none;
  }

  .split-heading,
  .email-capture {
    align-items: stretch;
    flex-direction: column;
  }

  .editorial-card {
    grid-template-columns: 1fr;
  }

  .editorial-card img {
    height: 320px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .browser-mockup {
    width: 100%;
  }

  .portfolio-grid .wide,
  .portfolio-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .hero-actions,
  .email-capture div {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .showcase-gallery {
    gap: 18px;
    margin-top: 30px;
  }

  .showcase-panel img {
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    object-position: center;
  }

  .showcase-details {
    grid-template-columns: 1fr;
  }

  .showcase-details span {
    padding: 14px 16px;
    font-size: 0.66rem;
  }

  .showcase-details span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .stats,
  .service-grid,
  .resource-grid,
  .website-grid,
  .business-grid,
  .package-grid,
  .template-grid,
  .why-grid,
  .timeline,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack img,
  .image-stack .portrait,
  .image-stack .detail {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    margin-bottom: 14px;
    border: 0;
  }

  .portfolio-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .mockup-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .browser-mockup,
  .phone-mockup {
    position: static;
    width: 100%;
  }

  .browser-mockup {
    min-height: 0;
  }

  .phone-mockup {
    width: min(250px, 76%);
    min-height: 240px;
    margin: 0 auto;
  }

  .footer div {
    flex-wrap: wrap;
    justify-content: center;
  }
}
