:root {
  --primary: #000000;
  --cream: #f2e9e4;
  --rose: #c48b9f;
  --blush: #e8d7da;
  --white: #ffffff;
  --bg: #f2e9e4;
  --bg-soft: #e8d7da;
  --text: #000000;
  --text-muted: #5f5359;
  --pink: #c48b9f;
  --pink-soft: #e8d7da;
  --border: rgba(196, 139, 159, 0.46);
  --card: rgba(255, 255, 255, 0.72);
  --card-hover: rgba(255, 255, 255, 0.9);
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  --text-on-dark: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  background: radial-gradient(circle at 12% 10%, #ffffff 0, var(--bg) 40%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(196, 139, 159, 0.28), rgba(196, 139, 159, 0));
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.orb-left {
  left: -100px;
  top: -80px;
}

.orb-right {
  right: -140px;
  bottom: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(196, 139, 159, 0.52);
}

.brand {
  text-decoration: none;
  color: var(--text-on-dark);
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), var(--pink-soft));
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--pink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

main {
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  padding: 4.6rem 2rem 3.6rem;
  border-radius: 1.25rem;
  background: linear-gradient(155deg, #000000 0%, #22171b 100%);
  border: 1px solid rgba(196, 139, 159, 0.45);
  color: var(--text-on-dark);
}

.kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pink-soft);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(1.8rem, 4.6vw, 3.2rem);
  margin: 0;
  max-width: 14ch;
}

.lead {
  max-width: 60ch;
  color: var(--text-muted);
  margin: 1.4rem 0 2rem;
}

.hero .lead {
  color: var(--blush);
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(145deg, #c48b9f 0%, #af788b 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(232, 215, 218, 0.68);
}

.section {
  padding: 2.2rem 2rem;
  margin-top: 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(196, 139, 159, 0.35);
  background: var(--cream);
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section > p {
  color: var(--text-muted);
  max-width: 72ch;
}

#about {
  background: var(--cream);
}

#services {
  background: var(--blush);
}

#work {
  background: var(--cream);
}

#pricing {
  background: var(--primary);
  color: var(--text-on-dark);
  border-color: rgba(196, 139, 159, 0.55);
}

#pricing > p {
  color: var(--blush);
}

#pricing .pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 215, 218, 0.45);
}

#pricing .pricing-card h3 {
  color: var(--white);
}

#pricing .price-range {
  color: var(--blush);
}

#hire {
  background: var(--blush);
}

.hire-box {
  margin-top: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(196, 139, 159, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

.hire-box p {
  margin: 0 0 0.6rem;
  color: var(--text-muted);
}

.hire-box p:last-child {
  margin-bottom: 0;
}

.hire-box a {
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.hire-box a:hover,
.hire-box a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
}

#contact {
  background: linear-gradient(145deg, var(--blush) 0%, var(--cream) 100%);
}

.service-grid,
.work-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.pricing-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-card,
.work-card {
  grid-column: span 6;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

.pricing-card {
  grid-column: span 6;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

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

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

.service-card h3,
.work-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.service-card p,
.work-card p {
  color: var(--text-muted);
  margin: 0;
}

.price-range {
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing-note {
  margin: 0.5rem 0 0;
  color: var(--blush);
}

.pricing-dropdown {
  margin-top: 0.65rem;
  border: 1px solid rgba(232, 215, 218, 0.35);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.55rem 0.75rem;
}

.pricing-dropdown summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blush);
}

.pricing-dropdown[open] summary {
  margin-bottom: 0.35rem;
}

.pricing-includes {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  color: var(--blush);
}

.pricing-includes li {
  margin-bottom: 0.2rem;
}

.work-grid .work-card {
  grid-column: span 4;
}

.gif-showcase {
  margin-top: 0.7rem;
  position: relative;
}

.gif-viewport {
  overflow: hidden;
  border-radius: 0.8rem;
  border: 1px solid rgba(196, 139, 159, 0.42);
  background: rgba(255, 255, 255, 0.55);
}

.gif-track {
  display: flex;
  transition: transform 0.7s ease;
}

.gif-carousel.is-second .gif-track {
  transform: translateX(-100%);
}

.gif-slide {
  min-width: 100%;
  margin: 0;
}

.gif-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.gif-slide figcaption {
  padding: 0.48rem 0.65rem 0.55rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.work-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(196, 139, 159, 0.9);
}

.contact {
  text-align: center;
  padding-bottom: 1rem;
}

.contact > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.contact-list a {
  text-decoration: none;
  color: var(--rose);
}

.portfolio-link {
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(196, 139, 159, 0.7);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease,
    box-shadow 0.25s ease;
}

.work-card .portfolio-link,
.contact-list .portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 139, 159, 0.45);
  background: rgba(196, 139, 159, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-link:hover,
.portfolio-link:focus-visible {
  color: var(--primary);
  border-color: rgba(196, 139, 159, 1);
  background: rgba(196, 139, 159, 0.22);
}

.site-footer {
  text-align: center;
  padding: 1.6rem 1rem 2.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  margin-top: 0.45rem;
}

.footer-links a {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
}

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

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

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .service-card,
  .pricing-card,
  .work-grid .work-card {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  main {
    width: min(1080px, 90vw);
  }

  .hero {
    padding-top: 4.2rem;
  }

  .brand-text {
    font-size: 1.15rem;
  }
}
