:root {
  --bg: #fbf3f1;
  --bg-soft: #f6e7e5;
  --paper: #fffaf7;
  --paper-2: #f8efec;
  --text: #33202e;
  --muted: #765f6e;
  --line: rgba(75, 35, 59, 0.12);
  --primary: #4b233b;
  --accent: #c88d82;
  --accent-2: #d8b15f;
  --accent-soft: rgba(200, 141, 130, 0.18);
  --rose: #f7d8d0;
  --shadow: 0 22px 70px rgba(75, 35, 59, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(216, 177, 95, 0.12), transparent 20%),
    radial-gradient(circle at 8% 20%, rgba(200, 141, 130, 0.16), transparent 22%),
    linear-gradient(180deg, #fffaf7 0%, var(--bg) 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -0.035em; }
ul { list-style: none; padding: 0; margin: 0; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }

.top-ribbon {
  background: var(--primary);
  color: #fffaf7;
  font-size: 0.88rem;
}
.ribbon-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}
.ribbon-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ribbon-links a { color: #fff1eb; opacity: 0.92; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(75,35,59,0.08);
}
.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; }
.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.06; }
.brand-text strong { font-size: 1.05rem; font-weight: 800; }
.brand-text small { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }
.site-nav {
  justify-self: center;
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid rgba(75,35,59,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.52);
}
.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
}
.site-nav a:hover {
  background: var(--paper);
  color: var(--primary);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.4rem;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--primary);
  color: #fffaf7;
  box-shadow: 0 14px 34px rgba(75,35,59,0.18);
}
.button-primary:hover { background: #5d2c4a; }
.button-secondary {
  background: rgba(255,255,255,0.7);
  border-color: var(--line);
  color: var(--primary);
}
.button-secondary:hover { background: var(--paper); }
.button-full { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(216,177,95,0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 3rem;
}
.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6.25rem);
  max-width: 9ch;
}
.lead {
  margin-top: 1.45rem;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.signature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.signature-line span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(75,35,59,0.08);
  color: #6d5264;
  font-size: 0.92rem;
}
.hero-visual {
  position: relative;
  min-height: 38rem;
}
.portrait-card {
  position: absolute;
  inset: 0 1.6rem 3.2rem 2.4rem;
  border-radius: 46% 46% 28px 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #fffaf7, #f4dfdc);
  border: 1px solid rgba(75,35,59,0.08);
  box-shadow: var(--shadow);
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  max-width: 15.5rem;
  border-radius: 22px;
  padding: 1rem 1.1rem;
  background: rgba(255,250,247,0.94);
  border: 1px solid rgba(75,35,59,0.1);
  box-shadow: var(--shadow);
}
.floating-card span {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.floating-card strong { line-height: 1.55; }
.card-top { left: 0; top: 2.3rem; }
.card-bottom { right: 0; bottom: 0; }

.intro-band { padding-top: 1rem; }
.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.intro-title,
.intro-text {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  padding: 1.45rem;
  box-shadow: 0 14px 36px rgba(75,35,59,0.06);
}
.intro-title span {
  display: block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}
.intro-title h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); max-width: 16ch; }
.intro-text p { color: var(--muted); line-height: 1.8; }

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.3rem;
}
.section-heading h2,
.studio-copy h2,
.experience-copy h2,
.contact-copy h2 {
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  max-width: 13ch;
}
.section-heading p,
.service-card p,
.service-card li,
.studio-copy p,
.feature-item span,
.step-card p,
.contact-copy p,
.contact-card strong,
.footer-brand-panel p,
.footer-column a,
.footer-column span,
.form-note {
  color: var(--muted);
  line-height: 1.78;
}
.section-heading p { margin-top: 1rem; }

.services-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1.1rem;
}
.service-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: 0 16px 42px rgba(75,35,59,0.07);
}
.service-card img {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 1rem;
  background: #fff7f4;
  border: 1px solid rgba(75,35,59,0.05);
}
.service-card h3 { font-size: 1.36rem; margin-bottom: 0.75rem; }
.service-number {
  display: inline-flex;
  width: fit-content;
  padding: 0.46rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}
.wide-card {
  grid-row: span 2;
  display: grid;
  gap: 1rem;
  align-content: space-between;
}
.service-card ul { display: grid; gap: 0.65rem; margin-top: 1rem; }
.service-card li {
  position: relative;
  padding-left: 1.1rem;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.studio-section {
  background: linear-gradient(180deg, rgba(246,231,229,0.65), rgba(251,243,241,0.95));
  border-top: 1px solid rgba(75,35,59,0.06);
  border-bottom: 1px solid rgba(75,35,59,0.06);
}
.studio-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.studio-gallery {
  position: relative;
  min-height: 34rem;
}
.gallery-large {
  position: absolute;
  inset: 0 2rem 4rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fffaf7;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-large img { width: 100%; height: 100%; object-fit: cover; }
.gallery-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(18rem, 80%);
  border-radius: 22px;
  background: var(--primary);
  color: #fffaf7;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.gallery-mini span {
  color: var(--rose);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.gallery-mini strong { line-height: 1.55; }
.feature-list,
.steps,
.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}
.feature-item,
.step-card,
.contact-card,
.contact-form-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 42px rgba(75,35,59,0.06);
}
.feature-item { padding: 1rem 1.1rem; }
.feature-item strong { display: block; margin-bottom: 0.36rem; }

.experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem;
}
.step-card > span {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fffaf7;
  font-weight: 800;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }

.contact-card {
  display: block;
  padding: 1rem 1.1rem;
}
.contact-card span {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.contact-form-card {
  border-radius: var(--radius-xl);
  padding: 1.45rem;
}
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.45rem; }
.contact-form span { font-size: 0.92rem; font-weight: 800; color: var(--primary); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(75,35,59,0.13);
  background: #fffaf7;
  color: var(--text);
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(200,141,130,0.55); }

.site-footer {
  padding: 3rem 0;
  background: var(--primary);
  color: #fffaf7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
}
.footer-brand-panel,
.footer-column,
.footer-note {
  border: 1px solid rgba(255,250,247,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 1.25rem;
}
.footer-brand { margin-bottom: 0.9rem; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand .brand-text small { color: var(--rose); }
.footer-brand-panel p,
.footer-column a,
.footer-column span { color: rgba(255,250,247,0.76); }
.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}
.footer-column h3 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.footer-note {
  display: grid;
  align-content: space-between;
}
.footer-note span {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-note strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .top-ribbon { display: none; }
  .nav-row {
    grid-template-columns: auto auto;
  }
  .site-nav,
  .desktop-cta { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .site-nav.open {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(255,250,247,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open a {
    border-radius: 14px;
  }
  .hero-grid,
  .intro-layout,
  .studio-grid,
  .experience-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 31rem; }
  .services-mosaic { grid-template-columns: 1fr 1fr; }
  .wide-card { grid-row: auto; }
}

@media (max-width: 680px) {
  .section { padding: 4.4rem 0; }
  .hero-copy h1 { max-width: none; }
  .portrait-card { inset: 0 0 4.8rem 0.5rem; }
  .card-top { top: 0.9rem; left: 0; }
  .card-bottom { right: 0; bottom: 0; }
  .services-mosaic { grid-template-columns: 1fr; }
  .studio-gallery { min-height: 28rem; }
  .gallery-large { inset: 0 0 5rem 0; }
}
