/* Jojo Amour Studio — static site */

:root {
  --rose: #b91d5a;
  --rose-dark: #8f1545;
  --rose-deep: #6b1034;
  --gold: #c9a27e;
  --gold-dark: #a67f5a;
  --blush: #f9e6ec;
  --blush-50: #fdf8f9;
  --blush-100: #f9e6ec;
  --blush-200: #f3d0db;
  --white: #ffffff;
  --ink: #4a2030;
  --ink-soft: rgba(74, 32, 48, 0.72);
  --shadow-soft: 0 18px 50px rgba(185, 29, 90, 0.1);
  --shadow-gold: 0 8px 28px rgba(201, 162, 126, 0.35);
  --radius: 1.5rem;
  --header-h: 4.25rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --max: 70rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--blush-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--blush-200);
  color: var(--rose-dark);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(185, 29, 90, 0.1);
  background: rgba(253, 248, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: env(safe-area-inset-top);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--rose);
  margin: 0;
  white-space: nowrap;
}

.brand-sub {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--rose);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(185, 29, 90, 0.2);
  background: transparent;
  color: var(--rose);
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top));
  z-index: 90;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(107, 16, 52, 0.28);
  border: none;
  cursor: pointer;
}

.nav-mobile-panel {
  position: relative;
  background: var(--blush-50);
  border-bottom: 1px solid rgba(185, 29, 90, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 1.25rem 1.5rem;
  animation: slide-down 0.3s ease;
}

.nav-mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  border-bottom: 1px solid rgba(185, 29, 90, 0.06);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-mobile-panel a[aria-current="page"] {
  color: var(--rose);
}

.nav-mobile-panel .btn-primary {
  margin-top: 1rem;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }

  .brand-logo {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .header-inner {
    padding: 0.75rem 2rem;
  }
}

/* ——— Buttons ——— */
.btn-primary,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s, transform 0.2s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  color: var(--rose);
  border: 1px solid rgba(185, 29, 90, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--rose);
}

.btn-light {
  background: var(--white);
  color: var(--rose);
}

.btn-light:hover {
  background: var(--blush-100);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .cta-stack {
    flex-direction: row;
    max-width: none;
    width: auto;
    justify-content: center;
  }
}

/* ——— Typography helpers ——— */
.eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--rose);
  letter-spacing: -0.01em;
}

.gold-line {
  width: 4rem;
  height: 1px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section {
  padding: 3.5rem 1.25rem;
}

.section-narrow {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.section-wide {
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 2rem;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(100dvh, 45rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 126, 0.35), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(185, 29, 90, 0.12), transparent 35%),
    linear-gradient(165deg, #fdf8f9 0%, #f9e6ec 45%, #f3d0db 100%);
  text-align: center;
  padding: 3rem 1.25rem 4rem;
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
  pointer-events: none;
}

.hero-logo-bg img {
  width: min(70vmin, 32rem);
  height: auto;
  animation: soft-float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero-logo {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-gold);
  animation: fade-up 0.8s ease-out both;
}

.hero-title {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 1;
  color: var(--rose);
  font-weight: 400;
  animation: fade-up 0.9s ease-out 0.12s both;
}

.hero-studio {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  animation: fade-up 0.9s ease-out 0.18s both;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 28rem;
  margin-inline: auto;
  animation: fade-up 0.9s ease-out 0.28s both;
}

.hero .gold-line,
.hero .cta-stack {
  animation: fade-up 0.9s ease-out 0.28s both;
}

.hero .cta-stack {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-logo {
    width: 9rem;
    height: 9rem;
  }
}

/* ——— Service cards / panels ——— */
.band {
  background: rgba(249, 230, 236, 0.65);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.75rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, background 0.3s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
  opacity: 0.75;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.service-card h3 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--rose);
}

.service-card p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-card .from-price {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
}

.service-card .from-price strong {
  font-size: 1.15rem;
  color: var(--rose);
  font-weight: 600;
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rose);
  transition: gap 0.25s;
}

.service-card:hover .more {
  gap: 0.7rem;
}

/* ——— Price list ——— */
.price-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(185, 29, 90, 0.1);
}

@media (min-width: 640px) {
  .price-row {
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 1rem;
  }
}

.price-row:first-child {
  border-top: 1px solid rgba(185, 29, 90, 0.1);
}

.price-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rose);
  font-weight: 500;
}

.price-meta {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.price-amount {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
}

.price-duration {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--gold-dark);
  text-align: left;
}

@media (min-width: 640px) {
  .price-amount,
  .price-duration {
    text-align: right;
  }
}

/* ——— Highlights / lists ——— */
.feature-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.two-col {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.care-block h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose);
  font-weight: 500;
}

.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rose);
}

.faq-item p {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ——— Page hero (inner) ——— */
.page-hero {
  text-align: center;
  padding: 3rem 1.25rem 1rem;
  background:
    radial-gradient(circle at 70% 0%, rgba(201, 162, 126, 0.25), transparent 45%),
    linear-gradient(180deg, #fdf8f9, transparent);
}

.page-hero p.lead {
  max-width: 32rem;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--blush-100), var(--blush-200));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-placeholder {
  text-align: center;
  padding: 1rem;
  color: var(--rose);
  opacity: 0.45;
}

.gallery-placeholder span {
  display: block;
  font-family: var(--font-script);
  font-size: 1.75rem;
}

.gallery-placeholder small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.gallery-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.25rem;
  padding-bottom: max(3.5rem, env(safe-area-inset-bottom));
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 162, 126, 0.5), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
}

.cta-band p {
  margin: 1rem auto 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.cta-band .btn-light {
  margin-top: 1.75rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
  }
}

.panel {
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.panel-light {
  background: rgba(255, 255, 255, 0.88);
}

.panel-rose {
  background: var(--rose);
  color: var(--white);
}

.panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.panel-rose h2 {
  color: var(--white);
}

.panel-light h2 {
  color: var(--rose);
}

.contact-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-meta li span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-meta li a,
.contact-meta li p {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--ink);
  word-break: break-word;
}

.contact-meta li a:hover {
  color: var(--rose);
}

.panel-rose > p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.18);
}

.form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-opacity='.7' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form select option {
  color: var(--ink);
  background: var(--white);
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form .btn-light {
  width: 100%;
  margin-top: 0.25rem;
}

.form-hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(185, 29, 90, 0.1);
  background: linear-gradient(180deg, var(--blush-100), var(--blush-200));
  padding-bottom: env(safe-area-inset-bottom);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 3rem 1.25rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 3.5rem 2rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer-tagline {
  margin: 1rem 0 0;
  max-width: 16rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer-col .eyebrow {
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--rose);
}

.footer-col p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(185, 29, 90, 0.1);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(74, 32, 48, 0.45);
}

/* ——— Animations ——— */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes slide-down {
  from {
    transform: translateY(-12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-title,
  .hero-studio,
  .hero-subtitle,
  .hero .gold-line,
  .hero .cta-stack,
  .hero-logo-bg img,
  .reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
