    :root {
      --plum:       #5C2D6E;
      --grape:      #7B3F8C;
      --mauve:      #A86BAD;
      --blush:      #D4A5C9;
      --petal:      #F0D4E8;
      --cream:      #FDF6FA;
      --rose:       #C4729A;
      --soft-white: #FEFCFE;
      --text-dark:  #2A1A30;
      --text-mid:   #6B4878;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--soft-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── CURSOR ── */
    body { cursor: none; }
    #cursor {
      width: 12px; height: 12px;
      background: var(--rose);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: width .2s, height .2s, background .2s;
      mix-blend-mode: multiply;
    }
    #cursor.big { width: 40px; height: 40px; background: var(--blush); }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 4rem;
      background: rgba(253,246,250,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(196,114,154,0.15);
    }

    nav img {
      width: 240px;
      height: auto;
      padding:0;
    }

    .logo-image {
      width: 240px;
      height: auto;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--plum);
      text-decoration: none;
    }
    
    .logo span { font-style: italic; color: var(--rose); }
    nav ul {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }
    nav ul a {
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color .25s;
    }
    nav ul a:hover { color: var(--plum); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 9rem 5rem 5rem 7rem;
      position: relative;
    }
    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: fadeUp 1s .3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4em;
      font-weight: 300;
      line-height: 1.05;
      color: var(--plum);
      opacity: 0;
      animation: fadeUp 1s .55s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--grape);
      display: block;
    }
    .hero-sub {
      margin-top: 1.8rem;
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-mid);
      max-width: 380px;
      opacity: 0;
      animation: fadeUp 1s .8s forwards;
    }
    .hero-cta {
      margin-top: 3rem;
      display: flex;
      gap: 1.2rem;
      opacity: 0;
      animation: fadeUp 1s 1s forwards;
    }
    .btn-primary {
      display: inline-block;
      padding: .85rem 2.2rem;
      background: var(--plum);
      color: #fff;
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: 2px solid var(--plum);
      transition: background .3s, color .3s;
    }
    .btn-primary:hover { background: transparent; color: var(--plum); }
    .btn-outline {
      display: inline-block;
      padding: .85rem 2.2rem;
      background: transparent;
      color: var(--plum);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: 2px solid var(--blush);
      transition: border-color .3s, color .3s;
    }
    .btn-outline:hover { border-color: var(--plum); }

    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-bg-panel {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, var(--petal) 0%, var(--blush) 50%, var(--mauve) 100%);
    }

    .hero-decoration {
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18vw;
      font-style: italic;
      font-weight: 300;
      color: rgba(255,255,255,0.18);
      bottom: -2rem;
      right: -1rem;
      line-height: 1;
      pointer-events: none;
      letter-spacing: -0.04em;
    }
    .hero-pill {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(253,246,250,0.92);
      backdrop-filter: blur(12px);
      border-radius:5rem;
      padding: 2.5rem 2.8rem;
      text-align: center;
      box-shadow: 0 20px 60px rgba(92,45,110,0.2);
      opacity: 0;
      animation: scaleIn 1s 1.1s forwards;
    }
    .hero-pill .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--plum);
      line-height: 1;
    }
    .hero-pill .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mauve);
      margin-top: .4rem;
    }
    .hero-badge {
      position: absolute;
      bottom: 10%;
      right: 8%;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: var(--plum);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-align: center;
      opacity: 0;
      animation: fadeIn 1s 1.4s forwards;
      box-shadow: 0 8px 30px rgba(92,45,110,0.35);
    }
    .hero-badge strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      display: block;
      letter-spacing: 0;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blush), transparent);
    }

    /* ── SECTION WRAPPER ── */
    section { padding: 7rem 7rem; }
    .section-label {
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: .8rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--plum);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; }
    .section-desc {
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 500px;
    }

    /* ── SERVICES ── */
    #services {
      background: var(--cream);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }
    .service-card {
      background: var(--soft-white);
      border: 1px solid var(--petal);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--rose), var(--mauve));
      transition: width .4s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(92,45,110,0.1); }
    .service-card:hover::before { width: 100%; }
    .service-icon {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
    }
    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--plum);
      margin-bottom: .5rem;
    }
    .service-desc {
      font-size: .85rem;
      line-height: 1.75;
      color: var(--text-mid);
      font-weight: 300;
    }
    .service-price {
      margin-top: 1.8rem;
      display: flex;
      align-items: baseline;
      gap: .3rem;
    }
    .price-from {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mauve);
    }
    .price-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--grape);
    }

    /* ── PRICING TABLE ── */
    #pricing {
      background: linear-gradient(160deg, var(--soft-white) 0%, var(--petal) 100%);
    }
    .pricing-header { max-width: 500px; }
    .pricing-table {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem 5rem;
    }
    .pricing-category { }
    .pricing-cat-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-style: italic;
      color: var(--plum);
      border-bottom: 1px solid var(--blush);
      padding-bottom: .6rem;
      margin-bottom: 1.2rem;
    }
    .pricing-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: .65rem 0;
      border-bottom: 1px dashed rgba(196,114,154,0.2);
      font-size: .9rem;
    }
    .pricing-row:last-child { border-bottom: none; }
    .pricing-item { font-weight: 400; color: var(--text-dark); }
    .pricing-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--grape);
    }
    .pricing-note {
      margin-top: .3rem;
      font-size: .75rem;
      font-weight: 300;
      color: var(--mauve);
      font-style: italic;
    }
    .pricing-cta {
      margin-top: 3.5rem;
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .pricing-disclaimer {
      font-size: .78rem;
      font-weight: 300;
      color: var(--mauve);
      max-width: 360px;
      line-height: 1.6;
    }

    /* ── INSTAGRAM ── */
    #gallery {
      background: var(--soft-white);
    }
    .gallery-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
    }
    .ig-link {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--rose);
      text-decoration: none;
      border-bottom: 1px solid var(--blush);
      padding-bottom: .2rem;
      transition: color .25s, border-color .25s;
    }
    .ig-link:hover { color: var(--plum); border-color: var(--plum); }
    /* Placeholder grid simulating an IG feed */
    .ig-widget-wrapper {
      background: var(--petal);
      border-radius: .5rem;
      padding: 2rem;
      text-align: center;
    }
    .ig-embed-note {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-style: italic;
      color: var(--grape);
      margin-bottom: .5rem;
    }
    .ig-embed-sub {
      font-size: .8rem;
      color: var(--text-mid);
      margin-bottom: 1.5rem;
    }
    /* Placeholder photo grid */
    .ig-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .ig-tile {
      aspect-ratio: 1;
      border-radius: .25rem;
      overflow: hidden;
      position: relative;
    }
    .ig-tile-bg {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      transition: transform .4s;
    }
    .ig-tile:hover .ig-tile-bg { transform: scale(1.08); }
    .ig-tile:nth-child(1) .ig-tile-bg { background: linear-gradient(135deg,#e8b4d5,#c47ab0); }
    .ig-tile:nth-child(2) .ig-tile-bg { background: linear-gradient(135deg,#c4a0d8,#9060b8); }
    .ig-tile:nth-child(3) .ig-tile-bg { background: linear-gradient(135deg,#f0cce4,#d896c3); }
    .ig-tile:nth-child(4) .ig-tile-bg { background: linear-gradient(135deg,#b87fc8,#7a3d9a); }
    .ig-tile:nth-child(5) .ig-tile-bg { background: linear-gradient(135deg,#e4b0d0,#c080a8); }
    .ig-tile:nth-child(6) .ig-tile-bg { background: linear-gradient(135deg,#d4a0cc,#a468b4); }
    .ig-tile:nth-child(7) .ig-tile-bg { background: linear-gradient(135deg,#f4d0ea,#e090cc); }
    .ig-tile:nth-child(8) .ig-tile-bg { background: linear-gradient(135deg,#c090d8,#8050b0); }
    .ig-tile-overlay {
      position: absolute;
      inset: 0;
      background: rgba(92,45,110,0.0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 500;
      transition: background .3s;
    }
    .ig-tile:hover .ig-tile-overlay { background: rgba(92,45,110,0.5); }
    .ig-connect-banner {
      margin-top: 1.5rem;
      padding: 1rem;
      background: rgba(255,255,255,0.7);
      border-radius: .4rem;
      font-size: .82rem;
      color: var(--text-mid);
      line-height: 1.6;
    }
    .ig-connect-banner strong { color: var(--plum); }

    /* ── CONTACT ── */
    #contact {
      background: var(--plum);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    #contact::before {
      content: 'R';
      font-family: 'Cormorant Garamond', serif;
      font-size: 50vw;
      font-style: italic;
      font-weight: 300;
      position: absolute;
      right: -8vw;
      top: -5vw;
      color: rgba(255,255,255,0.04);
      pointer-events: none;
      line-height: 1;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
      position: relative;
    }
    .contact-left { }
    .contact-left .section-label { color: var(--blush); }
    .contact-left .section-title { color: #fff; }
    .contact-left .section-desc { color: rgba(255,255,255,0.7); margin-top: .8rem; }
    .contact-info { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .contact-info-icon {
      font-size: 1.2rem;
      opacity: .8;
    }
    .contact-info-text { }
    .contact-info-title {
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--blush);
      margin-bottom: .2rem;
    }
    .contact-info-val {
      font-size: .95rem;
      font-weight: 300;
      color: rgba(255,255,255,.85);
    }

    .contact-info-val a {
        color:rgba(255,255,255,.85);
        text-decoration: none;
        font-weight:400;
    }

    .enhancement-details p {
        font-size: medium;
        text-decoration: wavy;
        font-style:italic;
        font-weight:lighter
    }

    /* form */
    .contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label {
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--blush);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      padding: .85rem 1rem;
      font-family: 'Jost', sans-serif;
      font-size: .9rem;
      font-weight: 300;
      outline: none;
      transition: border-color .3s, background .3s;
      border-radius: 0;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blush);
      background: rgba(255,255,255,0.13);
    }
    .form-group select option { background: var(--plum); color: #fff; }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: .5rem;
    }
    .btn-submit {
      padding: .95rem 2.5rem;
      background: var(--rose);
      color: #fff;
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      cursor: none;
      transition: background .3s, transform .2s;
    }
    .btn-submit:hover { background: var(--blush); color: var(--plum); transform: translateY(-2px); }
    .form-privacy {
      font-size: .75rem;
      color: rgba(255,255,255,.45);
      line-height: 1.6;
    }
    .form-success {
      display: none;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      padding: 1.5rem 2rem;
      font-size: .95rem;
      color: var(--petal);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      text-align: center;
      border-radius: .25rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,.45);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem 7rem;
      font-size: .75rem;
      letter-spacing: .1em;
    }
    footer .logo { color: var(--blush); font-size: 1.1rem; }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--blush); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: translate(-50%,-50%) scale(.85); }
      to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

     /* ══════════════════════════════════════════
       OFF-CANVAS MOBILE NAV
    ══════════════════════════════════════════ */

    /* Hamburger button — hidden on desktop */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 201;
      position: relative;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--plum);
      transition: transform .4s cubic-bezier(.23,1,.32,1),
                  opacity .3s,
                  width .3s;
      transform-origin: center;
    }
    /* Animate to X when open */
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Overlay behind drawer */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(42, 10, 55, 0);
      z-index: 198;
      transition: background .4s;
    }
    .nav-overlay.visible {
      display: block;
      background: rgba(42, 10, 55, 0.55);
    }

    /* Off-canvas drawer */
    .nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(80vw, 320px);
      height: 100dvh;
      background: var(--soft-white);
      z-index: 200;
      display: flex;
      flex-direction: column;
      padding: 2rem;
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.23,1,.32,1);
      box-shadow: -8px 0 40px rgba(92,45,110,0.12);
      overflow-y: auto;
    }
    .nav-drawer.open { transform: translateX(0); }

    /* Drawer header */
    .drawer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--plum);
      text-decoration: none;
      margin-bottom: 3rem;
      display: block;
    }
    .drawer-logo span { font-style: italic; color: var(--rose); }

    /* Drawer links */
    .drawer-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }
    .drawer-nav li {
      border-bottom: 1px solid rgba(196,114,154,0.12);
    }
    .drawer-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-decoration: none;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-mid);
      padding: 1.1rem 0;
      transition: color .25s, padding-left .25s;
    }
    .drawer-nav a:hover { color: var(--plum); padding-left: .5rem; }
    .drawer-nav a::after {
      content: '→';
      font-size: .75rem;
      color: var(--blush);
      transition: transform .25s;
    }
    .drawer-nav a:hover::after { transform: translateX(4px); }

    /* Drawer footer area */
    .drawer-footer {
      margin-top: auto;
      padding-top: 2rem;
      border-top: 1px solid var(--petal);
    }
    .drawer-cta {
      display: block;
      width: 100%;
      padding: .9rem;
      background: var(--plum);
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
      transition: background .3s;
    }
    .drawer-cta:hover { background: var(--grape); }
    .drawer-social {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .72rem;
      color: var(--mauve);
      letter-spacing: .1em;
    }

     /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      /* Hide desktop nav links, show hamburger */
      nav ul { display: none; }
      .nav-toggle { display: flex; }
      nav { padding: 1.1rem 1.5rem; }
      #cursor { display: none; }
      body { cursor: auto; }
      .btn-submit { cursor: pointer; }
      section { padding: 5rem 2rem; }
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 7rem 2rem 3rem; }
      .hero-right { height: 55vw; }
      .hero-title { font-size: 3.0rem; }
      .services-grid { grid-template-columns: 1fr; }
      .pricing-table { grid-template-columns: 1fr; gap: 2rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
      .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 0 2rem; }
      .photo-grid { columns: 2; padding: 0 2rem; }
      .gallery-load-more { padding: 0 2rem; }
      .ig-grid { grid-template-columns: repeat(3, 1fr); }
      #instagram { padding: 4rem 2rem; }
      .lb-placeholder { width: 90vw; height: 55vh; }
      .lb-prev { left: -2.5rem; }
      .lb-next { right: -2.5rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
        .form-row { grid-template-columns: 1fr; }
        #contact { padding: 5rem 2rem; }
    #contact::before { font-size: 80vw; }
    }

    @media (max-width: 480px) {
      .photo-grid { columns: 1; }
      .ig-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-right { height: 70vw; }
      #contact { padding: 4rem 1.5rem; }
  .btn-submit { width: 100%; justify-content: center; }
  .form-submit { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }