﻿:root {
  --ink: #171312;
  --muted: #6e625d;
  --paper: #fffaf7;
  --soft: #f2e8e1;
  --rose: #b65b6f;
  --green: #526b54;
  --gold: #c89a55;
  --line: rgba(23, 19, 18, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

main {
  overflow: hidden;
}

.hero {
  border-radius: 0 0 28px 28px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 42%),
    url("studio/hero-milla-studio.jpeg") center center / cover;
  min-height: 100vh;
  padding: 30px clamp(18px, 4vw, 64px) 42px;
  position: relative;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 16px;
}

.brandLogo {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  height: 88px;
  object-fit: cover;
  width: 88px;
}

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

.brand strong {
  color: #ffffff;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  margin-top: 2px;
}

.navLinks {
  align-items: center;
  display: flex;
  gap: 8px;
}

.navLinks a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  padding: 10px 12px;
}

.navLinks a:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.heroGrid {
  align-items: end;
  display: flex;
  min-height: calc(100vh - 160px);
  margin: 24px auto 0;
  max-width: 1180px;
}

.heroCopy {
  max-width: 760px;
  padding-bottom: clamp(18px, 5vh, 58px);
}

.eyebrow,
.sectionKicker {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: none;
}

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

h1 {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2.8rem, 6.4vw, 5.65rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 860px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  margin-top: 34px;
  max-width: 780px;
}

.heroPill {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: flex;
  gap: 14px;
  max-width: 760px;
  padding: 11px 18px;
}

.heroPill span {
  background: #22df6a;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(34, 223, 106, 0.9);
  flex: 0 0 auto;
  height: 10px;
  width: 10px;
}

.heroPill p {
  color: #ffffff;
  font-size: clamp(0.94rem, 1.45vw, 1.08rem);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.heroActions,
.contactActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primaryButton,
.secondaryButton {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
}

.primaryButton {
  background: #ffffff;
  color: #171312;
}

.secondaryButton {
  background: rgba(255, 250, 247, 0.82);
  border: 1px solid var(--line);
  color: var(--ink);
}

.primaryButton.dark {
  background: #fffaf7;
  color: var(--ink);
}

.secondaryButton.dark {
  background: transparent;
  border-color: rgba(255, 250, 247, 0.36);
  color: #fffaf7;
}

.heroStats {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 620px;
  padding-top: 22px;
}

.heroStats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.heroStats strong {
  color: #ffffff;
  display: block;
  font-size: 1.18rem;
  margin-bottom: 4px;
}

.socialDock {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.socialDock a,
.floatingWhatsapp {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.floatingWhatsapp {
  background: #26d366;
  border: 0;
  bottom: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  left: 24px;
  position: absolute;
}

.heroVisual {
  min-height: 590px;
  position: relative;
}

.heroPhoto {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(23, 19, 18, 0.2);
  height: min(72vh, 680px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.resultCard {
  background: #fffaf7;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  bottom: 30px;
  box-shadow: 0 20px 60px rgba(23, 19, 18, 0.2);
  left: -54px;
  padding: 10px;
  position: absolute;
  width: min(260px, 56%);
}

.resultCard img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.resultCard p {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 10px 4px 4px;
}

.intro,
.services,
.results,
.contact,
.featureBand {
  padding: clamp(54px, 8vw, 98px) clamp(18px, 4vw, 64px);
}

.intro {
  align-items: end;
  background: var(--ink);
  color: #fffaf7;
  display: grid;
  gap: 30px;
  grid-template-columns: 0.85fr 1fr;
}

.intro > * {
  margin: 0 auto;
  max-width: 1180px;
}

.intro p:last-child {
  color: rgba(255, 250, 247, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.sectionHeader {
  margin: 0 auto 34px;
  max-width: 1180px;
}

.services {
  background: #fffaf7;
}

.serviceGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.serviceCard {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 132px;
  padding: 18px;
}

.serviceCard span {
  background: var(--green);
  border-radius: 50%;
  display: block;
  height: 10px;
  margin-bottom: 30px;
  width: 10px;
}

.serviceCard:nth-child(3n) span {
  background: var(--rose);
}

.serviceCard:nth-child(4n) span {
  background: var(--gold);
}

.featureBand {
  align-items: center;
  background: #e8ddd5;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: 0.86fr 1fr;
}

.featureImage,
.featureCopy {
  margin: 0 auto;
  max-width: 580px;
  width: 100%;
}

.featureImage img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.featureCopy p:not(.sectionKicker),
.featureCopy li {
  color: #4b403b;
  font-size: 1.02rem;
  line-height: 1.72;
}

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

.featureCopy li {
  border-top: 1px solid rgba(23, 19, 18, 0.16);
  padding-top: 12px;
}

.results {
  background: #fffaf7;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.gallery figure {
  margin: 0;
  position: relative;
}

.gallery img {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.gallery figcaption {
  background: rgba(23, 19, 18, 0.78);
  border-radius: 6px;
  bottom: 10px;
  color: #fffaf7;
  font-size: 0.86rem;
  font-weight: 800;
  left: 10px;
  padding: 8px 10px;
  position: absolute;
  right: 10px;
}

.contact {
  background: var(--green);
  color: #fffaf7;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: 0.9fr 1.1fr;
}

.contactCopy,
.addressList {
  margin: 0 auto;
  max-width: 580px;
  width: 100%;
}

.contactCopy p:not(.sectionKicker) {
  color: rgba(255, 250, 247, 0.76);
  font-size: 1.04rem;
  line-height: 1.72;
}

.addressList {
  display: grid;
  gap: 14px;
}

.addressList article {
  border: 1px solid rgba(255, 250, 247, 0.22);
  border-radius: 8px;
  padding: 22px;
}

.addressList span {
  color: rgba(255, 250, 247, 0.55);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.addressList h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.addressList p {
  color: rgba(255, 250, 247, 0.76);
  line-height: 1.6;
  margin-bottom: 14px;
}

.addressList a {
  color: #fffaf7;
  display: block;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.addressList a + a {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .heroGrid,
  .intro,
  .featureBand,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .heroVisual {
    min-height: auto;
  }

  .resultCard {
    left: 16px;
  }

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

@media (max-width: 640px) {
  .hero {
    background-position: 58% center;
    padding-top: 18px;
  }

  .topbar {
    align-items: center;
  }

  .brandLogo {
    height: 72px;
    width: 72px;
  }

  .navLinks {
    display: none;
  }

  .heroGrid {
    margin-top: 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .heroPill {
    display: none;
  }

  .heroActions,
  .contactActions {
    flex-direction: column;
  }

  .primaryButton,
  .secondaryButton {
    width: 100%;
  }

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

  .heroPhoto {
    height: auto;
  }

  .resultCard {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 12px;
    width: 100%;
  }

  .resultCard img {
    aspect-ratio: 16 / 10;
  }

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