:root {
      --rose:       #d4688a;
      --rose-light: #e8a0b8;
      --rose-pale:  #f5d0de;
      --rose-deep:  #b04f70;
      --blush:      #fce8f0;
      --white:      #fdfafb;
      --cream:      #faf5f7;
      --dark:       #2a1a20;
      --gray:       #9a8590;
      --light-gray: #c8b8be;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* noise overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }

    /* ── NAV ─────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.4rem 4rem;
      background: linear-gradient(to bottom, rgba(253,250,251,0.98) 0%, transparent 100%);
      transition: backdrop-filter 0.4s, background 0.4s, box-shadow 0.4s;
    }

    nav.scrolled {
      background: rgba(253,250,251,0.97);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(212,104,138,0.12);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--rose);
      text-decoration: none;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-logo span { color: var(--dark); }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }

    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--rose); }

    .nav-cta {
      background: var(--rose);
      color: white;
      padding: 0.65rem 1.8rem;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s;
      font-family: 'Jost', sans-serif;
      border-radius: 30px;
    }

    .nav-cta:hover {
      background: var(--rose-deep);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(212,104,138,0.35);
    }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 1.5px; background: var(--dark); transition: all 0.3s; display: block; }

    /* ── HERO ─────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--cream);
    }

    /* decorative petal circles */
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(212,104,138,0.13) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -150px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,160,184,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-deco-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 680px; height: 680px;
      border: 1px solid rgba(212,104,138,0.1);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-deco-ring-2 {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 460px; height: 460px;
      border: 1px solid rgba(212,104,138,0.07);
      border-radius: 50%;
      pointer-events: none;
    }

    /* floating petal shapes */
    .petal {
      position: absolute;
      border-radius: 50% 0 50% 0;
      opacity: 0.12;
      animation: floatPetal 8s ease-in-out infinite;
    }
    .petal-1 { width: 80px; height: 80px; background: var(--rose); top: 15%; left: 8%; animation-delay: 0s; }
    .petal-2 { width: 50px; height: 50px; background: var(--rose-light); top: 65%; right: 10%; animation-delay: 2s; }
    .petal-3 { width: 35px; height: 35px; background: var(--rose); top: 30%; right: 18%; animation-delay: 4s; border-radius: 0 50% 0 50%; }
    .petal-4 { width: 60px; height: 60px; background: var(--rose-pale); bottom: 20%; left: 15%; animation-delay: 1.5s; border-radius: 0 50% 0 50%; }

    @keyframes floatPetal {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-18px) rotate(8deg); }
    }

    .hero-inner {
      position: relative;
      text-align: center;
      padding: 0 2rem;
      animation: heroReveal 1.2s ease-out both;
      z-index: 2;
    }

    @keyframes heroReveal {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      font-weight: 500;
    }

    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      width: 50px;
      height: 1px;
      background: var(--rose-light);
    }

    .hero-brand {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 10vw, 8rem);
      font-weight: 700;
      line-height: 0.9;
      color: var(--dark);
      letter-spacing: -0.01em;
    }

    .hero-brand em {
      font-style: italic;
      color: var(--rose);
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.2vw, 1.45rem);
      color: var(--gray);
      font-style: italic;
      margin: 1.8rem 0 2.8rem;
      letter-spacing: 0.02em;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--rose);
      color: white;
      padding: 1rem 2.8rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      font-family: 'Jost', sans-serif;
      border-radius: 30px;
    }

    .btn-primary:hover {
      background: var(--rose-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(212,104,138,0.35);
    }

    .btn-outline {
      border: 1.5px solid var(--rose-light);
      color: var(--rose);
      padding: 1rem 2.8rem;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      font-family: 'Jost', sans-serif;
      border-radius: 30px;
    }

    .btn-outline:hover {
      border-color: var(--rose);
      background: rgba(212,104,138,0.06);
    }

    /* ── INFO STRIP ─────────────────────── */
    .info-strip {
      background: var(--rose);
      padding: 2rem 4rem;
      display: flex;
      justify-content: center;
      gap: 5rem;
      flex-wrap: wrap;
    }

    .info-strip-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .info-strip-item i {
      color: white;
      font-size: 1.3rem;
      opacity: 0.85;
    }

    .info-strip-item p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
    }

    .info-strip-item strong {
      display: block;
      color: white;
      font-weight: 600;
      margin-bottom: 0.1rem;
    }

    /* ── SHARED SECTION STYLES ──────────── */
    section {
      padding: 7rem 2rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 0.8rem;
      text-align: center;
      font-weight: 600;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 700;
      text-align: center;
      color: var(--dark);
      letter-spacing: 0.02em;
      line-height: 1.1;
    }

    .section-desc {
      text-align: center;
      color: var(--gray);
      font-size: 1rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.75;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
    }

    .rose-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--rose), transparent);
      margin: 1.2rem auto 1.5rem;
    }

    /* ── SERVICES / MENU ───────────────── */
    #services {
      background: var(--cream);
    }

    .menu-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    .menu-card {
      background: white;
      border: 1px solid rgba(212,104,138,0.12);
      border-radius: 16px;
      padding: 2.2rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .menu-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--rose-pale), var(--rose), var(--rose-pale));
    }

    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(212,104,138,0.1);
    }

    .menu-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .menu-card-title i {
      color: var(--rose);
      font-size: 0.95rem;
    }

    .menu-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 0;
      border-bottom: 1px dashed rgba(212,104,138,0.15);
      gap: 1rem;
    }

    .menu-item:last-child { border-bottom: none; }

    .menu-item-name {
      font-size: 0.92rem;
      color: var(--dark);
      font-weight: 400;
    }

    .menu-item-dots {
      flex: 1;
      height: 1px;
      background: repeating-linear-gradient(to right, transparent, transparent 3px, rgba(212,104,138,0.2) 3px, rgba(212,104,138,0.2) 6px);
      margin: 0 0.8rem;
    }

    .menu-item-price {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--rose);
      white-space: nowrap;
    }

    /* featured item */
    .menu-item.featured .menu-item-name { font-weight: 600; color: var(--rose-deep); }
    .menu-item.featured .menu-item-price { font-size: 1.1rem; }

    /* ── PORTFOLIO ─────────────────────── */
    #portfolio {
      background: white;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      aspect-ratio: 1 / 1;
      cursor: pointer;
      background: var(--blush);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .portfolio-item:hover img { transform: scale(1.07); }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(176,79,112,0.7) 0%, transparent 60%);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 1.2rem;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .portfolio-item:hover .portfolio-overlay { opacity: 1; }

    .portfolio-overlay span {
      color: white;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* placeholder when no image */
    .portfolio-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: linear-gradient(135deg, var(--blush) 0%, var(--rose-pale) 100%);
      color: var(--rose-light);
      border-radius: 12px;
    }

    .portfolio-placeholder i { font-size: 2rem; }
    .portfolio-placeholder span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

    /* ── TESTIMONIALS ──────────────────── */
    #testimonials {
      background: var(--blush);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .testimonial-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid rgba(212,104,138,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .testimonial-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(212,104,138,0.1);
    }

    .stars {
      color: var(--rose);
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }

    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .author-avatar {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--rose-pale), var(--rose-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--rose-deep);
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--dark);
    }

    .author-sub {
      font-size: 0.75rem;
      color: var(--light-gray);
      margin-top: 0.1rem;
    }

    /* ── CONTACT ───────────────────────── */
    #contact {
      background: white;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .contact-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .contact-info h2 em { font-style: italic; color: var(--rose); }

    .contact-info > p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: var(--gray);
      font-size: 1.15rem;
      margin-bottom: 3rem;
      font-weight: 300;
    }

    .contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
    }

    .icon-box {
      width: 42px; height: 42px;
      border: 1.5px solid rgba(212,104,138,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 10px;
    }

    .icon-box i { color: var(--rose); font-size: 0.95rem; }

    .contact-list p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }
    .contact-list strong { color: var(--dark); display: block; margin-bottom: 0.2rem; }

    .contact-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }

    .btn-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      background: #25D366;
      color: white;
      padding: 1rem 2rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      border-radius: 30px;
    }

    .btn-whatsapp:hover {
      background: #1ebe59;
      transform: translateY(-2px);
    }

    .btn-maps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      border: 1.5px solid rgba(212,104,138,0.3);
      color: var(--rose);
      padding: 1rem 2rem;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      border-radius: 30px;
    }

    .btn-maps:hover {
      border-color: var(--rose);
      background: rgba(212,104,138,0.06);
    }

    .map-placeholder {
      position: relative;
      height: 420px;
      background: var(--cream);
      border: 1px solid rgba(212,104,138,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 20px;
    }

    /* ── FOOTER ─────────────────────────── */
    footer {
      background: var(--dark);
      padding: 3rem 2rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--rose-light);
      letter-spacing: 0.04em;
    }

    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

    .footer-social { display: flex; gap: 1rem; }

    .social-link {
      width: 38px; height: 38px;
      border: 1px solid rgba(212,104,138,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s;
      border-radius: 50%;
    }

    .social-link:hover {
      border-color: var(--rose);
      color: var(--rose-light);
    }

    /* ── LIGHTBOX ───────────────────────── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(42,26,32,0.96);
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
    }

    .lightbox.active { opacity: 1; pointer-events: all; }

    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
      border: 1px solid rgba(212,104,138,0.25);
    }

    .lightbox-close {
      position: absolute;
      top: 2rem; right: 2rem;
      width: 44px; height: 44px;
      border: 1.5px solid rgba(212,104,138,0.35);
      background: transparent;
      color: var(--rose-light);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      border-radius: 50%;
    }

    .lightbox-close:hover { background: var(--rose); color: white; border-color: var(--rose); }

    /* ── REVEAL ─────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ─────────────────────── */
    @media (max-width: 1024px) {
      .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
      .map-placeholder { height: 300px; }
      .menu-wrapper { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        gap: 2.5rem;
        z-index: 999;
      }
      .nav-links.open { display: flex; }
      .nav-links a { font-size: 1.1rem; }
      .hamburger { display: flex; z-index: 1001; }
      .nav-cta { display: none; }
      .info-strip { gap: 2rem; padding: 2rem 1.5rem; }
      section { padding: 5rem 1.5rem; }
    }

    @media (max-width: 520px) {
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
      .menu-card { padding: 1.6rem; }
    }
    /* ── ABOUT ──────────────────────────── */
    .about-section {
      position: relative;
      background: var(--cream);
      overflow: hidden;
    }

    .about-bg-shape {
      position: absolute;
      top: -180px; right: -180px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(212,104,138,0.09) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-bg-shape-2 {
      position: absolute;
      bottom: -120px; left: -120px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(232,160,184,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 6rem;
      align-items: center;
    }

    .about-photo-col {
      display: flex;
      justify-content: center;
    }

    .about-photo-frame {
      position: relative;
      width: 340px;
      flex-shrink: 0;
    }

    .about-photo-glow {
      position: absolute;
      inset: -20px;
      background: radial-gradient(ellipse at center, rgba(212,104,138,0.2) 0%, transparent 70%);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      filter: blur(20px);
      animation: morphGlow 6s ease-in-out infinite;
    }

    @keyframes morphGlow {
      0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; transform: scale(1); }
      50% { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; transform: scale(1.05); }
    }

    .about-photo-border {
      position: absolute;
      inset: -3px;
      border-radius: 38% 62% 55% 45% / 45% 38% 62% 55%;
      background: linear-gradient(135deg, var(--rose-light), var(--rose-pale), var(--rose), var(--rose-light));
      background-size: 300% 300%;
      animation: gradientShift 5s ease infinite, morphBorder 6s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes morphBorder {
      0%, 100% { border-radius: 38% 62% 55% 45% / 45% 38% 62% 55%; }
      50% { border-radius: 55% 45% 38% 62% / 62% 55% 45% 38%; }
    }

    .about-photo {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: top center;
      border-radius: 38% 62% 55% 45% / 45% 38% 62% 55%;
      display: block;
      animation: morphPhoto 6s ease-in-out infinite;
      box-shadow:
        0 30px 80px rgba(42,26,32,0.15),
        0 10px 30px rgba(212,104,138,0.12);
    }

    @keyframes morphPhoto {
      0%, 100% { border-radius: 38% 62% 55% 45% / 45% 38% 62% 55%; }
      50% { border-radius: 55% 45% 38% 62% / 62% 55% 45% 38%; }
    }

    .about-badge {
      position: absolute;
      bottom: -12px;
      right: -16px;
      z-index: 2;
      background: white;
      border: 1.5px solid rgba(212,104,138,0.2);
      border-radius: 20px;
      padding: 0.9rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      box-shadow: 0 12px 40px rgba(42,26,32,0.1), 0 4px 16px rgba(212,104,138,0.1);
    }

    .badge-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--rose);
      line-height: 1;
    }

    .badge-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray);
      line-height: 1.4;
    }

    .about-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.05;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .about-title em {
      font-style: italic;
      color: var(--rose);
    }

    .about-highlight {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-style: italic;
      color: var(--dark);
      line-height: 1.6;
      margin-bottom: 1.2rem;
      font-weight: 400;
    }

    .about-highlight strong {
      color: var(--rose-deep);
      font-style: normal;
      font-weight: 600;
    }

    .about-body {
      font-size: 0.92rem;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .about-body strong {
      color: var(--dark);
      font-weight: 600;
    }

    .about-credentials {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem;
      margin-top: 2rem;
    }

    .credential-item {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      background: white;
      border: 1px solid rgba(212,104,138,0.15);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--dark);
      letter-spacing: 0.03em;
      transition: all 0.3s;
    }

    .credential-item:hover {
      border-color: var(--rose-light);
      box-shadow: 0 4px 16px rgba(212,104,138,0.1);
      transform: translateY(-2px);
    }

    .credential-item i {
      color: var(--rose);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .about-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
      }
      .about-photo-col { order: -1; }
      .about-photo-frame { width: 260px; margin: 0 auto; }
      .about-credentials { margin-left: auto; margin-right: auto; max-width: 340px; }
    }

    @media (max-width: 520px) {
      .about-photo-frame { width: 220px; }
      .about-credentials { grid-template-columns: 1fr; }
      .about-badge { right: -8px; bottom: -8px; padding: 0.7rem 1rem; }
      .badge-number { font-size: 1.8rem; }
    }
