:root {
  --bg: #fff1ea;
  --paper: #ffffff;
  --cream: #ffe1d3;
  --rose: #efaaa0;
  --rose-strong: #c85f56;
  --sage: #6f955d;
  --sage-dark: #4d6f43;
  --lavender: #cfc0ea;
  --peach: #f1a06f;
  --text: #352823;
  --muted: #7a6760;
  --line: #e9c2b7;
  --shadow: 0 24px 60px rgba(128, 68, 58, 0.16);
}

* {
  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;
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 214, 207, 0.55), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(231, 223, 243, 0.7), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.decor {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.55;
}

.decor-1 {
  width: 260px;
  height: 260px;
  left: -110px;
  top: 160px;
  background: var(--rose);
}

.decor-2 {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: 160px;
  background: var(--lavender);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 243, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 220, 212, 0.7);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 45% 50% 42%;
  background: linear-gradient(135deg, var(--rose), var(--peach));
  color: #7e4a42;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(215, 143, 131, 0.22);
}

.brand-small,
.eyebrow {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.brand-main {
  display: block;
  font-size: 1.16rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-strong), #b96f65);
  color: white;
  box-shadow: 0 14px 28px rgba(185, 111, 101, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c97f74, #a85f56);
}

.btn-secondary {
  background: rgba(255,255,255,0.78);
  border-color: var(--line);
  color: var(--text);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.03rem;
}

.hero {
  padding: 76px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
}

.hero h1,
.section h2 {
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  margin: 16px 0 24px;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
}

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

.hero-visual {
  position: relative;
}

.hero-card,
.studio-image {
  border-radius: 48% 42% 44% 38% / 36% 43% 46% 44%;
  min-height: 500px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 8px solid rgba(255,255,255,0.72);
}

.hero-card img,
.studio-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
}

.image-placeholder {
  display: none;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(246,214,207,0.52)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.22) 0 12px, rgba(255,241,232,0.38) 12px 24px);
}

.soft-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(240, 220, 212, 0.9);
  box-shadow: var(--shadow);
  color: var(--muted);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.badge-top {
  right: 28px;
  top: 22px;
}

.badge-bottom {
  left: -18px;
  bottom: 46px;
}

.section {
  padding: 86px 0;
}

.white {
  background: rgba(255,255,255,0.72);
}

.section h2 {
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  margin-bottom: 20px;
}

.section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.approach-card {
  padding: 38px;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--cream), #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.illustration {
  display: inline-flex;
  font-size: 3rem;
  margin-bottom: 16px;
}

.illustration.small {
  font-size: 2.5rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pill-row span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--muted);
  font-weight: 750;
}

.services-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(246, 214, 207, 0.5), transparent 26%),
    radial-gradient(circle at 12% 85%, rgba(143, 167, 131, 0.22), transparent 24%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.card {
  background: rgba(255,255,255,0.84);
  padding: 30px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 220, 212, 0.78);
}

.card:nth-child(2n) {
  background: rgba(255, 241, 232, 0.82);
}

.icon {
  display: inline-flex;
  font-size: 1.75rem;
  margin-bottom: 18px;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246,214,207,0.58);
}

.card h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin: 0 0 12px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.price {
  margin-top: 18px !important;
  color: #a86158 !important;
  font-weight: 850;
  font-size: 1.12rem !important;
}

.studio-section {
  background: linear-gradient(135deg, var(--cream), var(--lavender));
}

.studio-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.studio-image-wrap {
  position: relative;
}

.studio-image-wrap::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: -34px;
  top: -28px;
  background: var(--rose);
  border-radius: 55% 45% 50% 42%;
  opacity: 0.7;
}

.studio-copy h2 {
  font-size: clamp(2.05rem, 4vw, 3.45rem);
}

.info-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.info-list div {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(240, 220, 212, 0.82);
  border-radius: 28px;
  padding: 18px 20px;
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list strong {
  margin-bottom: 4px;
}

.info-list span {
  color: var(--muted);
}

.quote-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(246,214,207,0.55), transparent 32%),
    var(--bg);
}

.quote-section h2 {
  color: #7d4b45;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-section .btn {
  margin-top: 0;
}

.contact-box {
  margin: 34px auto 0;
  max-width: 420px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(128, 82, 70, 0.08);
}

.contact-box p {
  margin: 4px 0;
  font-size: 0.98rem;
}



.site-footer {
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255,247,243,0.8);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .studio-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

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

  .hero-card,
  .studio-image,
  .hero-card img,
  .studio-image img,
  .image-placeholder {
    min-height: 380px;
  }

  .badge-bottom {
    left: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 2.58rem;
  }

  .section {
    padding: 62px 0;
  }

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

  .soft-badge {
    display: none;
  }

  .hero-card,
  .studio-image {
    border-radius: 36px;
  }

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