:root {
  --bg: #fff9fb;
  --bg-alt: #ffeef4;
  --bg-soft: #ffe2ee;
  --accent: #ff4f9a;
  --accent-soft: rgba(255, 123, 167, 0.12);
  --accent-strong: #ff2f8a;
  --text: #2d1024;
  --muted: #85627a;
  --border-subtle: rgba(221, 171, 191, 0.7);
  --shadow-soft: 0 18px 45px rgba(244, 189, 210, 0.6);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease-out;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fff7fb 0, #ffffff 40%, #ffeef4 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, #fff3f9 0, #ffeef4 100%);
}

.section-highlight {
  background: linear-gradient(135deg, #fff6fb, #ffe9f4);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  margin: 0 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: radial-gradient(circle at top, #fff5fa 0, #ffe7f1 45%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card ul li + li {
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast),
    transform 120ms ease-out, box-shadow 120ms ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0, var(--accent-strong) 100%);
  color: #140914;
  box-shadow: 0 12px 30px rgba(255, 155, 200, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(255, 155, 200, 0.4);
}

.btn-ghost {
  border-color: rgba(220, 167, 189, 0.8);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.btn-ghost:hover {
  background: #ffffff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(230, 187, 204, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

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

.logo-image {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(240, 186, 207, 0.7);
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px dashed rgba(227, 167, 193, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: lowercase;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.88rem;
}

.nav a {
  color: var(--muted);
  padding: 0.3rem 0;
}

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

.nav-cta {
  margin-left: 0.75rem;
}

.nav-login {
  padding-inline: 0.9rem;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(227, 167, 193, 0.9);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  width: 14px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 840px) {
  /* On small screens we rely on the bottom tab bar instead of the header nav */
  .nav {
    display: none;
  }

  .nav-toggle {
    display: none;
  }
}

.hero {
  padding: 4.5rem 0 4.25rem;
}

.hero-inner {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    align-items: center;
  }
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.1rem);
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.7rem 0 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta span {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-photo-card {
  position: relative;
  width: min(340px, 100%);
}

.hero-photo {
  border-radius: 26px;
  background: radial-gradient(circle at top, #ffe8f1 0, #ffb6d4 32%, #fff1f7 100%);
  border: 1px solid rgba(230, 176, 198, 0.9);
  box-shadow: 0 30px 80px rgba(232, 177, 199, 0.7);
}

.hero-photo-main {
  height: 260px;
}

.hero-photo-secondary {
  position: absolute;
  width: 58%;
  height: 140px;
  right: -18%;
  bottom: 4%;
  background: radial-gradient(circle at top left, #ffffff 0, #ffd8e9 40%, #ffe8f4 100%);
  border-radius: 22px;
  border-width: 2px;
}

.availability-pill {
  position: absolute;
  left: -10%;
  bottom: 16%;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(228, 183, 201, 0.9);
  font-size: 0.8rem;
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.availability-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2de37f;
  box-shadow: 0 0 0 4px rgba(45, 227, 127, 0.26);
}

.services-grid .service-card {
  border-radius: 20px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 140ms ease-out, color 140ms ease-out, border 140ms ease-out;
}

.filter-btn.active {
  background: var(--accent-soft);
  color: var(--text);
  border-color: rgba(255, 155, 200, 0.7);
}

.portfolio-grid {
  margin-top: 0.5rem;
}

.portfolio-item {
  margin: 0;
}

.portfolio-thumb {
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(230, 181, 201, 0.9);
  box-shadow: 0 18px 40px rgba(240, 186, 207, 0.9);
}

.portfolio-thumb.placeholder {
  background: radial-gradient(circle at top, #ffeaf4 0, #ffd4ec 40%, #fff7fb 100%);
}

.portfolio-item figcaption {
  font-size: 0.86rem;
  margin-top: 0.6rem;
  color: var(--muted);
}

.instagram-actions {
  margin-bottom: 1.5rem;
}

.instagram-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.insta-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(230, 181, 201, 0.9);
  box-shadow: 0 16px 40px rgba(240, 186, 207, 0.85);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.insta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(240, 186, 207, 0.95);
}

.insta-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}

.insta-meta {
  padding: 0.55rem 0.7rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.insta-caption {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insta-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at top left, #ffb7da, #ff4f9a);
  position: relative;
}

.insta-icon::before,
.insta-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1.5px solid #fff2f8;
}

.insta-icon::before {
  inset: 4px;
}

.insta-icon::after {
  width: 3px;
  height: 3px;
  top: 3.5px;
  right: 3.5px;
}

.instagram-note {
  margin-top: 1.4rem;
}

.pricing-grid .pricing-card {
  padding-top: 1.6rem;
}

.pricing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 600;
  font-size: 1.05rem;
}

.pricing-card.featured {
  border-color: rgba(255, 123, 167, 0.9);
  box-shadow: 0 22px 55px rgba(255, 173, 205, 0.55);
  background: radial-gradient(circle at top left, #ffe5f1, #ffffff);
}

.badge {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1a0e18;
  background: #ffe2f0;
  border-radius: 999px;
  padding: 0.18rem 0.7rem;
}

.fine-print {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.booking-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.booking-card {
  background: #ffffff;
}

.booking-highlights {
  list-style: none;
  padding-left: 0;
  margin: 1.4rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 30rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16));
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.8rem;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(221, 171, 191, 0.8);
  background: #ffffff;
  padding: 0.55rem 0.7rem;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(176, 144, 163, 0.8);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 123, 167, 0.7);
  outline-offset: 1px;
}

.form-footnote {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-status {
  min-height: 1rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.form-status--success {
  color: #94f9c5;
}

.form-status--error {
  color: #ffb3b3;
}

.about-layout {
  display: grid;
  gap: 2.3rem;
}

@media (min-width: 880px) {
  .about-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-text p + p {
  margin-top: 0.5rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-aside h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.studio-meta {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
}

.studio-meta li + li {
  margin-top: 0.65rem;
}

.studio-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
}

.studio-meta strong a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(221, 171, 191, 0.8);
  background: #ffffff;
  padding: 0.8rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 0;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.5rem;
}

.contact-list span {
  display: inline-block;
  min-width: 60px;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-list a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.mobile-tabbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(228, 183, 201, 0.9);
  box-shadow: 0 -10px 30px rgba(200, 143, 167, 0.35);
  padding: 0.35rem 0.75rem calc(env(safe-area-inset-bottom, 0) + 0.25rem);
  display: none;
}

.mobile-tabbar-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.mobile-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.mobile-tab-label {
  white-space: nowrap;
}

.mobile-tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(171, 132, 151, 0.9);
}

.mobile-tab--active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.mobile-tab--active .mobile-tab-dot {
  background: var(--accent-strong);
}

.site-footer {
  border-top: 1px solid rgba(228, 183, 201, 0.9);
  padding: 1.1rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: linear-gradient(180deg, #fff9fb 0, #ffffff 70%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.4rem;
  }
  .section {
    padding: 4rem 0;
  }
  .card {
    border-radius: 18px;
  }
  .hero-photo-main {
    height: 230px;
  }
  .hero-photo-secondary {
    right: -10%;
    bottom: 8%;
  }
}

@media (max-width: 840px) {
  .mobile-tabbar {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }
}

