:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --primary: #9B8BB2;
  --secondary: #A3D5D3;
  --accent: #F4C4A3;
  --text: #2D2A32;
  --text-muted: #6B6577;
  --border: #E8E5ED;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(45,42,50,0.06);
  --shadow-md: 0 6px 18px rgba(45,42,50,0.08);
  --shadow-glow: 0 0 0 3px rgba(155,139,178,0.25);
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 720px; }
.section { padding: 80px 0; position: relative; }
.section--light { background: linear-gradient(180deg, var(--surface) 0%, #F5F3F7 100%); }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
h2.section__title { font-size: 2.2rem; margin-bottom: 40px; text-align: center; position: relative; }
h2.section__title::after {
  content: "✦"; position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  color: var(--primary); font-size: 0.8rem; opacity: 0.7;
}
p { color: var(--text-muted); }

/* Header */
.header { background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text); text-decoration: none; }
.logo .dot { color: var(--accent); }
.nav__list { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav a { text-decoration: none; color: var(--text); font-weight: 500; transition: var(--transition); }
.nav a:hover { color: var(--primary); }
.nav__toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 50px; font-weight: 600; text-decoration: none;
  transition: var(--transition); cursor: pointer; border: none; font-size: 1rem;
}
.btn--primary { background: var(--primary); color: white; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #8775a1; transform: translateY(-2px); box-shadow: var(--shadow-md), var(--shadow-glow); }
.btn--accent { background: var(--accent); color: #4A3D40; }
.btn--accent:hover { background: #e5b08a; transform: translateY(-2px); }
.btn--ghost { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }

/* Hero */
.hero {
  min-height: 80vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(155,139,178,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(163,213,211,0.15) 0%, transparent 50%);
}
.hero__content { position: relative; z-index: 2; max-width: 600px; }
.status-badge {
  display: inline-block; background: rgba(163,213,211,0.3); color: #2A6063; padding: 6px 14px;
  border-radius: 20px; font-size: 0.85rem; margin-bottom: 16px; border: 1px solid var(--secondary);
}
.hero__actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero__deco {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 40vw; height: 40vw;
  background: conic-gradient(from 180deg at 50% 50%, var(--primary) 0%, var(--secondary) 30%, var(--accent) 60%, transparent 100%);
  filter: blur(60px); opacity: 0.15; animation: float 15s infinite linear alternate;
}

/* Cards & Grids */
.filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.filter {
  background: var(--surface); border: 1px solid var(--border); padding: 8px 16px; border-radius: 50px;
  cursor: pointer; transition: var(--transition); font-weight: 500; color: var(--text-muted);
}
.filter.active, .filter:hover { background: var(--primary); color: white; border-color: var(--primary); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__img { height: 200px; background: #e8e5ed; position: relative; overflow: hidden; }
.commissions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card--highlight { border: 2px solid var(--accent); transform: scale(1.02); }
.card--highlight:hover { transform: scale(1.04); }
.card__body { padding: 16px; }
.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.price { color: var(--primary); font-weight: 700; font-size: 1.2rem; margin: 8px 0 12px; }
.list { list-style: none; margin: 12px 0 16px; padding-left: 0; }
.list li { position: relative; padding-left: 18px; margin-bottom: 6px; color: var(--text-muted); }
.list li::before {
  content: "✦"; position: absolute; left: 0; color: var(--secondary); font-size: 0.7rem; top: 2px;
}
.card__badge {
  position: absolute; top: 12px; right: 12px; background: var(--accent); padding: 4px 10px;
  border-radius: 10px; font-size: 0.75rem; font-weight: 700; color: #4A3D40;
}

/* Form */
.form__group { margin-bottom: 16px; }
.form__group label { display: block; margin-bottom: 6px; font-weight: 500; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); font-family: inherit; transition: var(--transition);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: var(--shadow-glow);
}
.form__note { font-size: 0.85rem; margin-top: 12px; text-align: center; }

/* Footer */
.footer { background: #F3F1F5; padding: 40px 0; margin-top: 60px; border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.socials { display: flex; gap: 12px; }
.socials a { text-decoration: none; font-size: 1.2rem; opacity: 0.7; transition: var(--transition); }
.socials a:hover { opacity: 1; transform: scale(1.1); }

/* Utilities & Animations */
.hidden { display: none !important; }
@keyframes float {
  0% { transform: translateY(-50%) rotate(0deg) scale(1); }
  100% { transform: translateY(-50%) rotate(15deg) scale(1.1); }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed; top: 70px; right: -100%; flex-direction: column; background: var(--surface);
    width: 80%; height: calc(100vh - 70px); padding: 24px; transition: var(--transition);
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  }
  .nav__list.open { right: 0; }
  .nav__toggle { display: block; }
  .hero { min-height: auto; padding: 100px 0; }
  .footer__inner { justify-content: center; text-align: center; }
}