/* Nanak Furnishings — black, white & grey atelier */
:root {
  --bg: #f0f0f0;
  --bg-deep: #e4e4e4;
  --surface: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #3d3d3d;
  --muted: #6e6e6e;
  --line: rgba(10, 10, 10, 0.12);
  --accent: #0a0a0a;
  --accent-hover: #2c2c2c;
  --mid: #8a8a8a;
  --soft: rgba(10, 10, 10, 0.06);
  --forest: var(--accent);
  --forest-hover: var(--accent-hover);
  --brass: var(--mid);
  --brass-soft: var(--soft);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", sans-serif;

  --nav-h: 5.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% -8%, rgba(0, 0, 0, 0.05), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(0, 0, 0, 0.04), transparent 50%),
    linear-gradient(165deg, #f7f7f7 0%, var(--bg) 45%, var(--bg-deep) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .logo,
.site-header.is-solid .logo,
.site-header.is-scrolled .nav-links a,
.site-header.is-solid .nav-links a,
.site-header.is-scrolled .menu-toggle,
.site-header.is-solid .menu-toggle {
  color: var(--ink);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--white);
  transition: color 0.35s var(--ease);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.logo-tag {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
  font-weight: 400;
  margin-top: 0.15rem;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  background: var(--forest);
  color: var(--white) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--forest-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.site-header.nav-open .menu-toggle span {
  background: transparent;
}

.site-header.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

.btn-ink:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 25, 22, 0.35) 0%, rgba(27, 25, 22, 0.15) 35%, rgba(27, 25, 22, 0.72) 100%),
    linear-gradient(90deg, rgba(27, 25, 22, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(3rem, 8vh, 5rem);
  justify-self: start;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 18vw, 11.5rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.15s forwards;
}

.hero-lead {
  max-width: 28rem;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.35s forwards;
}

.hero-content .btn-group {
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.55s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.section-copy {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 300;
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.story-visual:hover img {
  transform: scale(1.04);
}

.story-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.story-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.story-meta dd {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

/* Offerings */
.offerings {
  background:
    linear-gradient(180deg, #111 0%, #0a0a0a 55%, #1a1a1a 100%);
  color: var(--white);
}

.offerings .section-label {
  color: #b0b0b0;
}

.offerings .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-item {
  padding: 2rem 1.75rem 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-item:nth-child(3n) {
  border-right: 0;
  padding-right: 0;
}

.offer-item:nth-child(n + 4) {
  border-bottom: 0;
}

.offer-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #a3a3a3;
  margin-bottom: 1rem;
  display: block;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.offer-item p {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 300;
  font-size: 0.98rem;
  max-width: 18rem;
}

/* Featured split */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 34rem;
}

.feature-band figure {
  margin: 0;
  overflow: hidden;
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.feature-band:hover img {
  transform: scale(1.05);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, #fafafa 0%, #eeeeee 100%);
}

/* Portfolio */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
}

.page-hero .section-title {
  max-width: 18ch;
}

.work-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: end;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.work-main,
.work-stack {
  display: grid;
  gap: 1rem;
}

.work-shot {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s ease;
}

.work-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.work-main .work-shot {
  aspect-ratio: 4 / 5;
}

.work-stack .work-shot {
  aspect-ratio: 5 / 4;
}

.work-caption {
  padding: 1.25rem 0 0;
}

.work-caption h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.work-caption p {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 28rem;
}

.split-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.project-pane {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  color: var(--white);
}

.project-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-pane .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 18, 15, 0.82) 100%);
}

.project-pane .copy {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem;
}

.project-pane h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.project-pane p {
  color: rgba(255, 253, 249, 0.8);
  font-weight: 300;
  max-width: 24rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.store-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.store-card:hover {
  border-color: rgba(10, 10, 10, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.store-card .store-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.store-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.15;
}

.store-card p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
  flex: 1;
}

.store-card .store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 0.3s ease;
}

.store-card .store-link:hover {
  border-color: var(--forest);
}

.owner-line {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-details a {
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-details a:hover {
  border-color: var(--forest);
}

.detail-block h3 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.detail-block p,
.detail-block a {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
}

.contact-form {
  background:
    linear-gradient(165deg, #ffffff 0%, #f3f3f3 100%);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-row label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.75rem 0;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--forest);
}

.form-row textarea {
  min-height: 8rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--forest);
  display: none;
}

.form-status.is-visible {
  display: block;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.78)),
    url("../assets/curtains.jpg") center/cover;
  color: var(--white);
}

.cta-band .section-title {
  max-width: 16ch;
  margin-inline: auto;
}

.cta-band .section-copy {
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Footer */
.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo-mark {
  color: var(--white);
  font-size: 2.6rem;
}

.footer-brand .logo-tag {
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
}

.socials {
  display: flex;
  gap: 1.25rem;
}

.socials a:hover {
  color: var(--white);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem 0.85rem 0.9rem;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}

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

.whatsapp-float svg {
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
}

.whatsapp-float-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.whatsapp-panel {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(165deg, #ffffff 0%, #f3f3f3 100%);
  border: 1px solid var(--line);
}

.whatsapp-panel h3 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.whatsapp-panel p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
  white-space: pre-line;
  margin-bottom: 1.25rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* Mobile */
@media (max-width: 900px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .header-inner {
    width: min(100% - 1.75rem, var(--max));
  }

  .logo-mark {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .logo-tag {
    font-size: 0.46rem;
    letter-spacing: 0.14em;
    max-width: 11rem;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    width: 100%;
    z-index: 99;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.35rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s var(--ease), opacity 0.35s ease, visibility 0.35s ease;
  }

  .site-header.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--ink) !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: 0.85rem;
    justify-content: center;
    min-height: 3rem;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .site-header .logo,
  .site-header .menu-toggle {
    color: var(--ink);
  }

  body.nav-locked {
    overflow: hidden;
  }

  .hero-content {
    width: min(100% - 1.75rem, var(--max));
    padding: calc(var(--nav-h) + 1.5rem) 0 2.75rem;
  }

  .hero-brand {
    font-size: clamp(4.25rem, 20vw, 6.25rem);
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    min-height: 3rem;
  }

  .section {
    padding: clamp(3.25rem, 12vw, 5rem) 0;
  }

  .story-grid,
  .offer-list,
  .feature-band,
  .work-intro,
  .work-gallery,
  .split-projects,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    aspect-ratio: 4 / 5;
    max-height: 28rem;
  }

  .story-meta {
    gap: 1.5rem;
  }

  .offer-item {
    border-right: 0;
    padding: 1.5rem 0;
  }

  .offer-item:nth-child(n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .offer-item:last-child {
    border-bottom: 0;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-band img {
    min-height: 16rem;
    aspect-ratio: 4 / 3;
  }

  .feature-copy {
    padding: 2.25rem 1.5rem;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 2.5rem) 0 2rem;
  }

  .stores-grid {
    grid-template-columns: 1fr;
  }

  .store-card {
    padding: 1.5rem 1.25rem;
  }

  .project-pane {
    min-height: 18rem;
  }

  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
  }

  .socials {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.9rem;
    border-radius: 0;
  }

  .whatsapp-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 4.75rem;
  }

  .logo-mark {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .story-meta {
    flex-direction: column;
    gap: 1.15rem;
  }

  .hero-brand {
    font-size: clamp(3.75rem, 22vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img {
    transform: none;
  }

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