:root {
  --ink: #1f2526;
  --muted: #65706f;
  --line: #d8ddd7;
  --paper: #f7f4ed;
  --paper-2: #ebe7dc;
  --forest: #173f35;
  --forest-2: #27594d;
  --clay: #a95437;
  --gold: #c99b4f;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(31, 37, 38, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 244, 237, 0.9);
  border-bottom: 1px solid rgba(31, 37, 38, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(31, 37, 38, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.nav-cta,
.button,
.inquiry-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
}

.nav-cta:hover,
.button:hover,
.inquiry-form button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(26px, 3.4vw, 44px) clamp(20px, 5vw, 72px) 40px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 62px);
}

h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-width: 190px;
  padding: 0 22px;
}

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

.button.secondary {
  color: var(--forest);
  border: 1px solid rgba(23, 63, 53, 0.28);
  background: rgba(255, 253, 248, 0.62);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 34px 0 0;
}

.trust-strip div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.trust-strip dt {
  font-size: 24px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.hero-main-img {
  width: min(78%, 540px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  top: 44px;
  left: 0;
  max-width: 250px;
  padding: 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 700;
}

.image-stack {
  position: absolute;
  right: 9%;
  bottom: 0;
  left: 4%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack img:first-child {
  aspect-ratio: 1;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  grid-template-rows: 1fr 0.74fr;
  gap: 14px;
  min-height: 560px;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-product {
  grid-row: 1 / 3;
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 63, 53, 0.92);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.belief,
.social-proof,
.contact,
.studio,
.studio-strip,
.base-section,
.visual-statement,
.instagram-section,
.section,
.process,
.clients {
  padding-inline: clamp(20px, 5vw, 72px);
}

.visual-statement {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(280px, 1fr) minmax(180px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 74px;
  padding-bottom: 74px;
}

.visual-statement img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(31, 37, 38, 0.1);
}

.visual-statement div {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.visual-statement .eyebrow {
  color: var(--gold);
}

.visual-statement p:last-child {
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 19px;
}

.belief,
.social-proof {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-top: 82px;
  padding-bottom: 82px;
  color: var(--white);
  background: var(--forest);
}

.belief .eyebrow,
.social-proof .eyebrow {
  color: var(--gold);
}

.belief p:last-child,
.social-proof p:last-child {
  color: rgba(255, 253, 248, 0.78);
  font-size: 20px;
}

.clients {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.clients p {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-list span,
.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(23, 63, 53, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.client-list span {
  padding: 0 14px;
}

.section,
.process {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  max-width: 840px;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(31, 37, 38, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(31, 37, 38, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-2);
}

.product-card div {
  padding: 20px;
}

.product-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.feature-card {
  grid-column: span 2;
}

.tag {
  margin-bottom: 12px;
  padding: 0 12px;
}

.image-led-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(240px, 32vw);
  gap: 16px;
}

.image-tile {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(31, 37, 38, 0.1);
}

.image-tile.tall {
  grid-row: span 2;
}

.image-tile.wide {
  grid-column: span 2;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.image-tile:hover img {
  transform: scale(1.025);
}

.image-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(31, 37, 38, 0.02) 38%, rgba(31, 37, 38, 0.76) 100%);
}

.image-tile div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.image-tile span {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.city-wall img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--paper-2);
  box-shadow: 0 8px 20px rgba(31, 37, 38, 0.07);
}

.case-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.case-note strong {
  color: var(--forest);
}

.case-note span {
  color: var(--muted);
}

.instagram-section {
  padding-top: 86px;
  padding-bottom: 86px;
  background: var(--white);
}

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

.reel-card,
.instagram-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.reel-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(31, 37, 38, 0.05) 38%, rgba(31, 37, 38, 0.82) 100%);
}

.play-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
}

.reel-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.reel-card strong,
.reel-card small,
.instagram-cta-card span,
.instagram-cta-card strong,
.instagram-cta-card small {
  display: block;
}

.reel-card strong {
  font-size: 20px;
}

.reel-card small {
  color: rgba(255, 253, 248, 0.72);
}

.instagram-cta-card {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(169, 84, 55, 0.94), rgba(23, 63, 53, 0.94)),
    url("assets/sample-closeup.webp") center / cover;
}

.instagram-cta-card span {
  color: #f3d48b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-cta-card strong {
  font-size: 26px;
  line-height: 1.08;
}

.instagram-cta-card small {
  color: rgba(255, 253, 248, 0.7);
}

.base-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
  color: var(--white);
  background:
    linear-gradient(rgba(23, 63, 53, 0.82), rgba(23, 63, 53, 0.86)),
    url("assets/milan-public-molds.webp") center / cover;
}

.base-copy {
  max-width: 820px;
}

.base-copy .eyebrow {
  color: var(--gold);
}

.base-copy p:last-child {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 20px;
}

.base-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(14px);
}

.base-panel div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.base-panel div:last-child {
  border-bottom: 0;
}

.base-panel span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.base-panel strong {
  font-size: 18px;
  line-height: 1.25;
}

.process {
  background: var(--paper-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
  background: rgba(31, 37, 38, 0.12);
  border: 1px solid rgba(31, 37, 38, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.steps li {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--clay);
  font-weight: 800;
}

.steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.studio {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

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

.studio-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
}

.studio-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.studio-points div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.studio-points strong {
  color: var(--forest);
}

.studio-points span {
  color: var(--muted);
}

.studio-strip {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
}

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

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(23, 63, 53, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.social-proof {
  background: var(--clay);
}

.social-proof .eyebrow {
  color: #f3d48b;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--white);
}

.contact > div > p:last-child {
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form .wide,
.inquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 37, 38, 0.16);
  border-radius: 4px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.inquiry-form button {
  border: 0;
  color: var(--white);
  background: var(--forest);
  cursor: pointer;
  font: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.72);
  background: var(--ink);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 620px;
  }

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

  .image-led-grid,
  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .steps li:last-child {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .belief,
  .social-proof,
  .section-heading,
  .section-heading.compact,
  .base-section,
  .visual-statement,
  .studio,
  .studio-strip,
  .contact {
    grid-template-columns: 1fr;
  }

  .belief,
  .social-proof {
    align-items: start;
  }

  .studio-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .visual-statement img {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-cta {
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  h1 {
    font-size: 44px;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-product {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-place,
  .hero-detail {
    aspect-ratio: 1;
  }

  .hero-note {
    position: static;
    grid-column: 1 / -1;
    max-width: none;
  }

  .hero-main-img {
    width: 100%;
  }

  .floating-note,
  .image-stack {
    position: static;
    margin-top: 14px;
  }

  .image-stack {
    grid-template-columns: 1fr 1fr;
  }

  .clients {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .image-led-grid,
  .reel-grid,
  .steps,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .image-led-grid {
    grid-auto-rows: auto;
  }

  .image-tile,
  .image-tile.tall,
  .image-tile.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .reel-card,
  .instagram-cta-card {
    min-height: 420px;
  }

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

  .case-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-card,
  .steps li:last-child {
    grid-column: auto;
  }

  .steps li {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 34px;
  }

  .footer {
    display: block;
  }

  .footer p {
    margin-top: 12px;
  }
}
