/* ============================================================
   SAVISPACE — STYLE
   palette: warm cream + pink pastel + soft peach
   typography: Fraunces (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* COLORS */
  --bg:          #FFF6EA;
  --bg-soft:     #FFFEFC;
  --bg-card:     #FFFFFF;
  --pink-deep:   #FF8FAB;
  --pink:        #FFB3C9;
  --pink-soft:   #FFC9D9;
  --pink-pastel: #FFE0EC;
  --pink-mist:   #FFF0F5;
  --peach:       #FFD8C0;
  --peach-soft:  #FFE9D9;
  --lemon:       #FFF1A8;
  --lavender:    #E8DEF8;
  --ink:         #2D1810;
  --ink-soft:    #5A4538;
  --ink-mute:    #8B7466;
  --line:        #F0E5D6;
  --shadow-soft: 0 4px 20px rgba(45, 24, 16, 0.06);
  --shadow-lift: 0 12px 40px rgba(255, 143, 171, 0.18);

  /* TYPOGRAPHY */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* SPACING */
  --rad-sm:   12px;
  --rad-md:   20px;
  --rad-lg:   32px;
  --rad-xl:   48px;
  --rad-pill: 999px;

  /* CONTAINER */
  --container: 1200px;
  --gutter: 24px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Selection */
::selection { background: var(--pink-deep); color: var(--bg-soft); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-mist);
  padding: 8px 16px;
  border-radius: var(--rad-pill);
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section__header .section__subtitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--rad-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg-soft);
}
.btn--primary:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg-soft);
}

.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(255, 246, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav__brand-mark {
  color: var(--pink-deep);
  font-style: normal;
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__menu a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--pink-deep); }

.nav__cta {
  background: var(--ink);
  color: var(--bg-soft) !important;
  padding: 10px 20px;
  border-radius: var(--rad-pill);
  transition: all 0.25s;
}
.nav__cta:hover {
  background: var(--pink-deep);
  color: var(--bg-soft) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__menu.is-open { transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px clamp(20px, 5vw, 56px) 80px;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.blob--1 { width: 400px; height: 400px; background: var(--pink-pastel); top: -100px; left: -100px; }
.blob--2 { width: 350px; height: 350px; background: var(--peach); bottom: -100px; right: 10%; }
.blob--3 { width: 250px; height: 250px; background: var(--lemon); top: 30%; right: -50px; }

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--rad-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.hero__badge .dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero__title-highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero__title-highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 30%;
  background: var(--pink-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-3deg);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__subtitle strong {
  color: var(--ink);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "SOFT" 80;
}
.stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 4px;
}
.stat__sep {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.hero__illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  justify-self: center;
  animation: float 6s ease-in-out infinite;
}
.hero__illustration .flower {
  transform-origin: center;
  animation: spin-slow 14s linear infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 40px;
  }
  .hero__cta { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }
  .hero__illustration { order: -1; max-width: 280px; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--bg-soft);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  padding: 100px clamp(20px, 5vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}

.about__illustration {
  width: 100%;
  max-width: 380px;
  justify-self: center;
}

.about__bio {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 24px 0;
  line-height: 1.7;
}

.about__tools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.tools__label {
  font-size: 0.9rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.tools__list {
  display: flex;
  gap: 10px;
}
.tool-chip {
  padding: 8px 18px;
  background: var(--pink-pastel);
  color: var(--ink);
  border-radius: var(--rad-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-card);
  border-radius: var(--rad-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s;
}
.highlight:hover { transform: translateX(8px); }
.highlight__icon {
  font-size: 1.5rem;
  color: var(--pink-deep);
  flex-shrink: 0;
}
.highlight strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.highlight p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }
  .about__tools { justify-content: center; }
  .about__illustration { max-width: 260px; }
  .highlight { text-align: left; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px clamp(20px, 5vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border-radius: var(--rad-lg);
  border: 1.5px solid var(--line);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-pastel) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-lift);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--pink-pastel);
  color: var(--pink-deep);
  border-radius: var(--rad-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  font-variation-settings: "SOFT" 80;
}
.service-card__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-card__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.service-card__sub span {
  font-size: 0.78rem;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: var(--rad-pill);
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  padding: 100px clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--pink-mist) 100%);
}

.portfolio__controls {
  max-width: var(--container);
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.search-box__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  font-size: 1.2rem;
}
.search-box input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-pill);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box input:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px var(--pink-pastel);
}
.search-box input::placeholder { color: var(--ink-mute); }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.chip {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-pill);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--pink-soft); color: var(--ink); }
.chip--active {
  background: var(--ink);
  color: var(--bg-soft);
  border-color: var(--ink);
}

.portfolio__gallery {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lift); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(255, 254, 252, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--rad-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.portfolio__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-mute);
}
.portfolio__empty p { font-size: 1.05rem; }
.portfolio__empty strong { color: var(--ink); }

.portfolio__cta {
  text-align: center;
  margin-top: 56px;
}
.portfolio__cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ============================================================
   PRICELIST
   ============================================================ */
.pricelist {
  padding: 100px clamp(20px, 5vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}

.pricelist__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--rad-pill);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid var(--line);
}
.tab {
  padding: 12px 32px;
  border-radius: var(--rad-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: all 0.25s;
}
.tab--active {
  background: var(--ink);
  color: var(--bg-soft);
}

.panel { display: none; }
.panel--active { display: block; animation: fade-in 0.4s ease; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel__note {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.price-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--rad-md);
  border: 1.5px solid var(--line);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}
.price-card:hover {
  border-color: var(--pink-soft);
  background: var(--pink-mist);
  transform: translateY(-3px);
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 80;
}
.price-card__detail {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 16px;
  flex: 1;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink-deep);
  font-variation-settings: "SOFT" 100;
}

.pricelist__note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-mute);
  font-size: 0.92rem;
  font-style: italic;
}

/* ============================================================
   TEMPLATES
   ============================================================ */
.templates {
  padding: 100px clamp(20px, 5vw, 56px);
  background: var(--ink);
  color: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.templates__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.templates__content .section__label {
  background: rgba(255, 143, 171, 0.2);
  color: var(--pink-soft);
}
.templates__content .section__title {
  color: var(--bg-soft);
}
.templates__content .section__title em {
  color: var(--pink-soft);
}
.templates__content p {
  font-size: 1.05rem;
  color: rgba(255, 254, 252, 0.7);
  margin: 20px 0 32px;
  line-height: 1.7;
}
.templates__content .btn--primary {
  background: var(--pink-deep);
  color: var(--bg-soft);
}
.templates__content .btn--primary:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.templates__visual {
  position: relative;
  height: 400px;
}
.template-card {
  position: absolute;
  width: 200px;
  height: 260px;
  background: linear-gradient(135deg, var(--pink-pastel), var(--peach));
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform 0.4s;
}
.template-card--1 { top: 0; left: 50px; transform: rotate(-8deg); background: linear-gradient(135deg, var(--pink-soft), var(--pink-deep));}
.template-card--2 { top: 60px; left: 180px; transform: rotate(4deg); background: linear-gradient(135deg, var(--lemon), var(--peach));}
.template-card--3 { top: 130px; left: 100px; transform: rotate(-3deg); background: linear-gradient(135deg, var(--lavender), var(--pink-pastel));}

.templates__visual:hover .template-card--1 { transform: rotate(-12deg) translateY(-8px); }
.templates__visual:hover .template-card--2 { transform: rotate(8deg) translateY(-8px); }
.templates__visual:hover .template-card--3 { transform: rotate(-6deg) translateY(-8px); }

@media (max-width: 900px) {
  .templates__inner { grid-template-columns: 1fr; }
  .templates__visual { height: 320px; max-width: 380px; margin: 0 auto; }
  .template-card { width: 160px; height: 210px; }
  .template-card--1 { left: 20px; }
  .template-card--2 { left: 130px; }
  .template-card--3 { left: 70px; top: 110px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px clamp(20px, 5vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.testimonial-item {
  aspect-ratio: 9 / 16;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s;
}
.testimonial-item:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-lift); }
.testimonial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-mute);
  font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, var(--pink-mist) 0%, var(--bg) 100%);
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact__intro p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 20px 0 32px;
  line-height: 1.7;
}

.contact__direct {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--rad-md);
  border: 1.5px solid var(--line);
}
.contact__direct-label {
  font-size: 0.85rem !important;
  color: var(--ink-mute) !important;
  margin: 0 0 12px !important;
}
.contact__direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid var(--pink-deep);
  padding-bottom: 4px;
  transition: gap 0.2s;
}
.contact__direct-link:hover { gap: 14px; }

.contact__form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group label .required { color: var(--pink-deep); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-sm);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px var(--pink-pastel);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form__disclaimer {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px clamp(20px, 5vw, 56px) 24px;
  background: var(--ink);
  color: var(--bg-soft);
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,254,252,0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__brand-mark {
  font-size: 1.5rem;
  color: var(--pink-soft);
}
.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
}
.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,254,252,0.6);
  margin-top: 6px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,254,252,0.08);
  border-radius: 50%;
  color: var(--bg-soft);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.social-link:hover {
  background: var(--pink-deep);
  transform: translateY(-3px);
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,254,252,0.5);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(45, 24, 16, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.is-open { display: flex; animation: fade-in 0.25s ease; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--rad-md);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,254,252,0.15);
  color: var(--bg-soft);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--pink-deep); }

/* ============================================================
   REVEAL ANIMATIONS (scroll-triggered)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 600px) {
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 1.6rem; }
  .pricelist__tabs { width: 100%; }
  .tab { flex: 1; padding: 12px 16px; }
  .contact__form { padding: 24px; }
  .ticker__track span { font-size: 1.1rem; }
}

@media (max-width: 400px) {
  .portfolio__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
