:root {
  --black: #070707;
  --panel: #111111;
  --panel-2: #171717;
  --pink: #d94b82;
  --pink-light: #f08caf;
  --gold: #c99b45;
  --gold-light: #f1cd7a;
  --white: #ffffff;
  --muted: #d6d6d6;
  --line: rgba(201, 155, 69, 0.55);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 75, 130, 0.12), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(201, 155, 69, 0.12), transparent 22%),
    var(--black);
  font-family: "DM Sans", sans-serif;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  border-left: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 52px 44px 34px;
  background:
    linear-gradient(90deg, rgba(6,6,6,0.98) 0%, rgba(6,6,6,0.84) 47%, rgba(6,6,6,0.22) 100%),
    radial-gradient(circle at 75% 30%, rgba(217,75,130,0.18), transparent 30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--pink));
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.logo-mark {
  display: flex;
  align-items: baseline;
  font-family: "Playfair Display", serif;
  font-size: clamp(62px, 9vw, 104px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.08em;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,0.35));
}

.logo-letter {
  display: inline-block;
}

.logo-letter.gold {
  background: linear-gradient(180deg, #fff0b9 0%, #d8a74c 45%, #8c5b16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-letter.pink {
  background: linear-gradient(180deg, #ffd0df 0%, #df5f91 50%, #9f2552 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sparkles {
  color: var(--gold-light);
  font-size: 26px;
  margin-left: 8px;
  animation: shimmer 2.8s ease-in-out infinite;
}

.logo-name {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.36em;
  color: var(--white);
}

.script-intro {
  margin: 0 0 6px;
  color: var(--pink-light);
  font-family: "Sacramento", cursive;
  font-size: 42px;
  line-height: 1;
}

h1 {
  max-width: 520px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
}

h1 span {
  display: block;
  color: var(--pink);
}

.hero-description {
  max-width: 510px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.portrait-wrap {
  position: relative;
  align-self: end;
  min-height: 480px;
  z-index: 2;
}

.portrait-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 24px;
  right: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,69,0.28), rgba(217,75,130,0.08) 55%, transparent 72%);
  filter: blur(8px);
}

.portrait-wrap img {
  position: absolute;
  right: -26px;
  bottom: 0;
  width: min(430px, 48vw);
  height: 510px;
  object-fit: cover;
  object-position: 52% 38%;
  border-radius: 48% 48% 0 0 / 34% 34% 0 0;
  filter: contrast(1.06) saturate(1.07) brightness(0.94);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px 34px;
  background: #0b0b0b;
}

.action-button {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(217,75,130,0.16);
}

.pink-button {
  background: linear-gradient(135deg, #e45b91, #b92d65);
}

.dark-button {
  background: linear-gradient(145deg, #171717, #090909);
}

.action-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 23px;
}

.action-button strong,
.action-button small {
  display: block;
}

.action-button strong {
  font-size: 18px;
}

.action-button small {
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.section-card {
  margin: 22px 30px;
  padding: 28px;
  border: 1px solid rgba(201,155,69,0.65);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(23,23,23,0.97), rgba(8,8,8,0.97));
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-heading span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading h2 {
  margin: 0;
  color: var(--pink-light);
  font-size: 23px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-item {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(201,155,69,0.30);
}

.service-item:nth-child(4n) {
  border-right: 0;
}

.service-icon {
  color: var(--pink);
  font-size: 34px;
}

.service-item h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-item span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--pink);
  font-weight: 800;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial blockquote {
  position: relative;
  margin: 0;
  padding: 28px 34px;
  text-align: center;
  border: 1px solid rgba(201,155,69,0.62);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
}

.quote-mark {
  position: absolute;
  left: 18px;
  top: 3px;
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-size: 70px;
}

.testimonial p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

.testimonial footer {
  margin-top: 12px;
  color: var(--pink-light);
}

.connect-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.connect-buttons a,
.connect-buttons button {
  padding: 14px 10px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.connect-buttons a:hover,
.connect-buttons button:hover {
  transform: translateY(-2px);
  background: var(--pink);
}

.site-footer {
  margin-top: 34px;
  padding: 34px 24px 28px;
  text-align: center;
  background: linear-gradient(180deg, #c93a75, #e15b91);
  border-top: 3px solid var(--gold);
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-script {
  margin-top: 4px;
  font-family: "Sacramento", cursive;
  font-size: 30px;
}

.footer-copy {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.84;
}

@keyframes shimmer {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.16); opacity: 1; }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    border: 0;
  }

  .hero {
    min-height: 720px;
    grid-template-columns: 1fr;
    padding: 32px 22px 0;
    text-align: left;
  }

  .hero-copy {
    z-index: 4;
  }

  .logo-wrap {
    align-items: flex-start;
  }

  .logo-mark {
    font-size: 76px;
  }

  .logo-name {
    font-size: 10px;
  }

  .script-intro {
    font-size: 38px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-description {
    max-width: 92%;
    font-size: 15px;
  }

  .portrait-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 410px;
    min-height: 0;
    opacity: 0.92;
  }

  .portrait-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #070707 0%, transparent 38%);
  }

  .portrait-wrap img {
    right: -56px;
    width: 360px;
    height: 430px;
    object-position: 50% 36%;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .section-card {
    margin: 18px 14px;
    padding: 22px 16px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(201,155,69,0.26);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .connect-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connect-buttons button {
    grid-column: 1 / -1;
  }

  .section-heading h2 {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: 42px;
  }

  .portrait-wrap {
    width: 66%;
  }
}
.quick-actions .action-button.gold-button {
  background: linear-gradient(135deg, #d8b15b, #b8892d) !important;
  border-color: #d8b15b !important;
  color: #ffffff !important;
}

.quick-actions .action-button.gold-button:hover {
  background: linear-gradient(135deg, #e2c06f, #c59638) !important;
  border-color: #e2c06f !important;
}/* =========================
   SITE NAVIGATION
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: rgba(7, 7, 7, 0.96);
  border-bottom: 1px solid rgba(201, 155, 69, 0.55);
  backdrop-filter: blur(12px);
}

.nav-logo {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--pink-light);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-button {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #d8b15b, #b8892d);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 155, 69, 0.24);
}

@media (max-width: 900px) {
@media (max-width: 900px) {

    .site-header{
        position: relative;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle{
        display:block;
    }

    .nav-button{
        display:none;
    }

    .main-nav{
        display:none;
        width:100%;
        flex-direction:column;
        margin-top:20px;
        gap:18px;
        text-align:center;
    }

    .main-nav.show{
        display:flex;
    }

}
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    padding: 14px 16px;
  }

  .main-nav {
    width: 100%;
    gap: 10px 14px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }
}/* Active Navigation Link */

.main-nav a.active {
    color: var(--pink);
}

.main-nav a.active::after {
    width: 100%;
}/* ===========================
   HAMBURGER MENU
=========================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    transition: .3s;
}

.menu-toggle:hover {
    color: var(--pink);
}@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
    gap: 18px;
    text-align: center;
  }

  .main-nav.show {
    display: flex;
  }

  .nav-button {
    display: none;
  }
}/* =========================
   PORTFOLIO
========================= */

.portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(201, 155, 69, 0.65);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.portfolio-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid rgba(201, 155, 69, 0.45);
}

.portfolio-content {
  padding: 26px;
}

.portfolio-content h3 {
  margin: 0 0 14px;
  color: var(--pink-light);
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.portfolio-content p {
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-services {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.9;
}

.portfolio-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.portfolio-buttons a {
  padding: 13px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.portfolio-buttons a:first-child {
  background: transparent;
}

.portfolio-buttons a:last-child {
  background: linear-gradient(135deg, #d8b15b, #b8892d);
}

.portfolio-buttons a:hover {
  transform: translateY(-2px);
  background: var(--pink);
  border-color: var(--pink);
}

@media (max-width: 620px) {
  .portfolio-buttons {
    flex-direction: column;
  }

  .portfolio-buttons a {
    width: 100%;
  }
}/* =========================
   PRICING PAGE
========================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  border: 1px solid rgba(201, 155, 69, 0.55);
  border-radius: 18px;
  background: linear-gradient(145deg, #171717, #0b0b0b);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border: 2px solid var(--pink);
  transform: translateY(-8px);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  margin: 8px 0 14px;
  color: var(--pink-light);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  text-align: center;
}

.price {
  margin-bottom: 20px;
  color: var(--muted);
  text-align: center;
}

.price strong {
  display: block;
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 36px;
}

.pricing-card ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.45;
}

.pricing-button {
  display: block;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, #d8b15b, #b8892d);
  color: white;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  background: var(--pink);
  border-color: var(--pink);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  border: 1px solid rgba(201, 155, 69, 0.35);
  text-align: left;
}

.pricing-table th {
  background: rgba(217, 75, 130, 0.18);
  color: var(--pink-light);
}

.pricing-table td {
  color: var(--muted);
}

@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 520px) {
  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
}