/* ==========================================
   PhotoStar Studio — Shared Stylesheet
   Used by index.html and order.html
   ========================================== */

/* ── SHARED BASE (variables, reset, nav shell) ── */
  :root {
    --coral:   #ff5f4b;
    --yellow:  #ffce3d;
    --sky:     #3ecfef;
    --purple:  #9b5de5;
    --mint:    #00d4a0;
    --white:   #ffffff;
    --offwhite:#faf8f5;
    --ink:     #0f0e0d;
    --gray:    #6b6560;
    --light:   #f0ede8;
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--offwhite);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--ink);
  }
  .nav-logo {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--ink);
  }
  .nav-logo span { color: var(--coral); }


/* ==========================================
   HOMEPAGE STYLES (index.html)
   ========================================== */
  .nav-cta {
    background: var(--coral);
    color: white;
    border: none; cursor: pointer;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 10px 22px;
    border-radius: 100px;
    transition: transform 0.2s, background 0.2s;
  }
  .nav-cta:hover { background: var(--ink); transform: scale(1.04); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    background: var(--offwhite);
    position: relative;
    overflow: hidden;
  }

  .hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
  }
  .blob1 { width: 600px; height: 600px; background: var(--coral); top: -100px; left: -200px; }
  .blob2 { width: 500px; height: 500px; background: var(--sky); bottom: -100px; right: -100px; }
  .blob3 { width: 300px; height: 300px; background: var(--yellow); top: 40%; left: 40%; }

  .hero-left {
    padding: 80px 60px 80px 72px;
    z-index: 2;
    animation: slideIn 0.9s ease both;
  }
  @keyframes slideIn {
    from { opacity:0; transform: translateX(-30px); }
    to   { opacity:1; transform: translateX(0); }
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    border: 2px solid var(--ink);
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(46px, 5.5vw, 76px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .hero h1 .accent { color: var(--coral); }
  .hero h1 .underlined {
    position: relative;
    display: inline-block;
  }
  .hero h1 .underlined::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 5px;
    background: var(--yellow);
    border-radius: 4px;
  }

  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray);
    max-width: 460px;
    margin-bottom: 40px;
  }

  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--coral);
    color: white;
    border: 2.5px solid var(--ink);
    border-radius: 100px;
    padding: 16px 36px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

  .price-pill {
    background: white;
    border: 2.5px solid var(--ink);
    border-radius: 100px;
    padding: 14px 24px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
    display: flex; align-items: center; gap: 8px;
  }
  .price-pill .price-num { color: var(--coral); font-size: 20px; }

  .hero-right {
    position: relative;
    height: 100vh;
    z-index: 2;
    display: grid;
    place-items: center;
    animation: slideIn2 0.9s 0.2s ease both;
    opacity: 0;
  }
  @keyframes slideIn2 {
    from { opacity:0; transform: translateX(30px); }
    to   { opacity:1; transform: translateX(0); }
  }

  .hero-photo-stack {
    position: relative;
    width: 340px;
    height: 420px;
  }
  .hero-card {
    position: absolute;
    width: 280px;
    height: 340px;
    border-radius: 20px;
    border: 3px solid var(--ink);
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--ink);
    background: var(--light);
  }
  .hero-card img { width: 100%; height: 100%; object-fit: cover; }
  .hero-card.c1 { top: 0; left: 0; transform: rotate(-6deg); background: var(--sky); }
  .hero-card.c2 { top: 40px; left: 50px; transform: rotate(3deg); background: var(--coral); }
  .hero-card.c3 { top: 20px; left: 25px; transform: rotate(-1deg); }

  .hero-card .card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--ink);
    color: white;
    padding: 10px 16px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 13px;
  }

  .floating-badge {
    position: absolute;
    background: var(--yellow);
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    padding: 10px 16px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 3px 3px 0 var(--ink);
    white-space: nowrap;
  }
  .fb1 { top: 20px; right: 0; }
  .fb2 { bottom: 30px; left: -20px; background: var(--mint); }

  /* ── STATS BAND ── */
  .stats-band {
    background: var(--ink);
    color: white;
    padding: 28px 48px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--coral);
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--yellow);
    line-height: 1;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    letter-spacing: 0.05em;
  }

  /* ── HOW IT WORKS ── */
  .how {
    padding: 100px 48px;
    background: white;
  }
  .section-eyebrow {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 60px;
    max-width: 600px;
  }
  .section-title span { color: var(--coral); }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .step {
    background: var(--offwhite);
    border: 2.5px solid var(--ink);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .step:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
  .step-num {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.12;
    position: absolute;
    top: 20px; right: 24px;
  }
  .step-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
  }
  .step h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
  }
  .step p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--gray);
  }
  .step.highlight {
    background: var(--coral);
    color: white;
  }
  .step.highlight p { color: rgba(255,255,255,0.85); }
  .step.highlight .step-num { color: white; }

  /* ── BEFORE / AFTER SLIDER ── */
  .before-after {
    padding: 100px 48px;
    background: var(--offwhite);
  }

  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .ba-pair {
    border: 2.5px solid var(--ink);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--ink);
    background: white;
  }

  .ba-header {
    background: var(--ink);
    color: white;
    padding: 14px 24px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ba-pill {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
  }
  .ba-pill.before-pill { background: var(--light); color: var(--ink); }
  .ba-pill.after-pill  { background: var(--coral); color: white; }

  /* Drag Slider */
  .slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
  }
  .slider-before {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
  }
  .slider-after-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
  }
  .slider-after-clip img {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
  }
  .slider-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.35);
    pointer-events: none;
    z-index: 4;
  }
  .slider-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--ink);
    box-shadow: 0 3px 14px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    font-size: 16px;
    pointer-events: none;
  }
  .slider-label {
    position: absolute;
    bottom: 14px;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    pointer-events: none;
    z-index: 6;
  }
  .lbl-before { left: 12px; background: var(--coral); color: white; }
  .lbl-after  { right: 12px; background: rgba(255,255,255,0.92); color: var(--ink); border: 1.5px solid rgba(0,0,0,0.15); }
  .slider-hint {
    position: absolute;
    top: 14px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 6;
    transition: opacity 0.4s;
  }

  .ba-caption {
    padding: 14px 20px;
    font-size: 14px;
    font-style: italic;
    color: var(--gray);
    border-top: 2px solid var(--light);
    text-align: center;
  }

  /* ── ORDER ── */
  .order {
    padding: 100px 48px 120px;
    background: white;
  }

  .order-inner { max-width: 980px; margin: 0 auto; }

  .step-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .step-badge {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--coral);
    border: 2.5px solid var(--ink);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 17px;
    color: white;
    flex-shrink: 0;
  }
  .step-heading {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 22px;
  }

  .stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 7px;
    margin-bottom: 24px;
  }

  .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 14px;
    border: 2px solid var(--light);
    border-radius: 10px;
    transition: all 0.18s;
    user-select: none;
    background: var(--offwhite);
  }
  .check-item:hover {
    border-color: var(--coral);
    background: #fff5f3;
  }
  .check-item.checked {
    border-color: var(--coral);
    background: #fff0ed;
  }

  .custom-check {
    width: 18px; height: 18px;
    border: 2px solid #ccc;
    border-radius: 5px;
    flex-shrink: 0;
    display: grid; place-items: center;
    transition: all 0.18s;
  }
  .check-item.checked .custom-check {
    background: var(--coral);
    border-color: var(--coral);
  }
  .checkmark { display: none; font-size: 11px; color: white; font-weight: 800; }
  .check-item.checked .checkmark { display: block; }
  .check-name { font-size: 16px; font-weight: 400; line-height: 1.2; }

  .settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 7px;
    margin-bottom: 24px;
  }

  /* Upload */
  .upload-zone {
    border: 2.5px dashed #ccc;
    border-radius: 20px;
    padding: 64px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: var(--offwhite);
    margin-bottom: 52px;
  }
  .upload-zone:hover, .upload-zone.dragover {
    border-color: var(--coral);
    background: #fff5f3;
  }
  .upload-emoji { font-size: 56px; display: block; margin-bottom: 20px; }
  .upload-zone h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .upload-zone p { font-size: 15px; color: var(--gray); }
  .upload-zone input[type="file"] { display: none; }
  #preview-img {
    display: none;
    max-width: 200px; max-height: 220px;
    margin: 0 auto 20px;
    border-radius: 14px;
    border: 3px solid var(--ink);
    object-fit: cover;
  }

  /* Summary + CTA */
  .summary-row {
    background: var(--offwhite);
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .summary-left { font-size: 16px; color: var(--gray); }
  .summary-left strong {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--coral);
    margin-left: 6px;
  }
  .summary-right {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
    padding: 22px;
    background: var(--coral);
    color: white;
    border: 2.5px solid var(--ink);
    border-radius: 100px;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .cta-btn:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }

  .cta-fine {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
  }

  /* ── WHY ── */
  .why {
    padding: 100px 48px;
    background: var(--ink);
    color: white;
  }
  .why .section-eyebrow { color: var(--yellow); }
  .why .section-title { color: white; }
  .why .section-title span { color: var(--yellow); }

  .why-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .why-card {
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 36px 30px;
    background: rgba(255,255,255,0.05);
    transition: background 0.2s, border-color 0.2s;
  }
  .why-card:hover { background: rgba(255,255,255,0.09); border-color: var(--yellow); }
  .why-card-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--yellow);
    flex-shrink: 0;
  }
  .why-card-icon svg { width: 22px; height: 22px; fill: var(--ink); }
  .why-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--yellow);
  }
  .why-card p { font-size: 15px; font-weight: 300; line-height: 1.65; color: #ffffff !important; }

  /* ── FOOTER ── */
  footer {
    background: var(--offwhite);
    border-top: 3px solid var(--ink);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.03em;
  }
  .footer-logo span { color: var(--coral); }
  footer p { font-size: 13px; color: var(--gray); }

  @media (max-width: 820px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 40px; }
    .hero-left { padding: 110px 24px 20px; }
    .hero-right {
      height: auto;
      min-height: 380px;
      padding: 20px 0 60px;
      opacity: 1;
      animation: none;
    }
    .hero-photo-stack { width: 280px; height: 340px; }
    .hero-card { width: 230px; height: 280px; }
    .hero-card.c2 { top: 34px; left: 42px; }
    .hero-card.c3 { top: 16px; left: 20px; }
    nav { padding: 14px 24px; }
    .steps, .why-cards, .ba-grid { grid-template-columns: 1fr; }
    .how, .before-after, .order, .why { padding: 64px 24px; }
  }

  /* ── EMBEDDED SLIDESHOW ── */
  .dp-slideshow {
    position: relative;
    overflow: hidden;
    background: #080706;
  }
  .dp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.77,0,0.175,1), opacity 0.1s;
  }
  .dp-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.77,0,0.175,1), opacity 0.1s;
  }
  .dp-slide.exiting {
    opacity: 1;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
  }
  .dp-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-color: #1a1a2e;
  }
  .dp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.8) 100%);
  }

  .dp-progress-bar {
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    background: var(--coral);
    z-index: 10;
    width: 0%;
  }
  .dp-flash-overlay {
    position: absolute; inset: 0;
    background: white; opacity: 0;
    z-index: 9; pointer-events: none;
    transition: opacity 0.12s ease;
  }
  .dp-flash-overlay.on { opacity: 0.7; }
  .dp-dots {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 7px; z-index: 10;
  }
  .dp-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all 0.3s;
  }
  .dp-dot.active { background: var(--yellow); width: 22px; border-radius: 3px; }
  .dp-counter {
    position: absolute;
    top: 18px; right: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    z-index: 10;
  }





/* ==========================================
   ORDER PAGE STYLES (order.html)
   ========================================== */
  .nav-back {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
  }
  .nav-back:hover { color: var(--coral); }

  /* ── MAIN ── */
  main {
    max-width: 640px;
    margin: 0 auto;
    padding: 140px 24px 100px;
  }

  .page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    border: 2px solid var(--ink);
    margin-bottom: 24px;
  }

  h1 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  h1 .accent { color: var(--coral); }

  .page-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
  }

  form {
    background: white;
    border: 2.5px solid var(--ink);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .field { margin-bottom: 24px; }
  .field:last-of-type { margin-bottom: 0; }

  label {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
  }
  label .req { color: var(--coral); }
  label .opt {
    color: var(--gray);
    font-weight: 400;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--offwhite);
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 14px 16px;
    transition: border-color 0.2s;
  }
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    outline: none;
    border-color: var(--coral);
  }
  textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

  .file-drop {
    border: 2.5px dashed var(--light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: var(--offwhite);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
  }
  .file-drop:hover { border-color: var(--coral); background: #fff5f3; }
  .file-drop input[type="file"] { display: none; }
  .file-drop-label {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .file-drop-hint {
    font-size: 12px;
    color: var(--gray);
  }
  .file-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mint);
    display: none;
  }

  .order-summary {
    background: var(--offwhite);
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
    color: var(--ink);
    display: none;
  }
  .order-summary.visible { display: block; }
  .order-summary strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
  }

  .price-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--offwhite);
    border: 2px solid var(--ink);
    border-radius: 100px;
    padding: 12px 20px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 28px;
    width: fit-content;
  }
  .price-note .price-num { color: var(--coral); font-size: 18px; }

  .btn-submit {
    width: 100%;
    background: var(--coral);
    color: white;
    border: 2.5px solid var(--ink);
    border-radius: 100px;
    padding: 18px 36px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .btn-submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform:none; box-shadow: 4px 4px 0 var(--ink); }

  .form-note {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
  }

  .status-box {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    display: none;
  }
  .status-box.success {
    background: #e9fbf5;
    border: 2px solid var(--mint);
    color: #046a4e;
    display: block;
  }
  .status-box.error {
    background: #fff0ee;
    border: 2px solid var(--coral);
    color: #a3311f;
    display: block;
  }

  footer {
    text-align: center;
    padding: 40px 24px;
    font-size: 13px;
    color: var(--gray);
  }
  footer a { color: var(--gray); }

  @media (max-width: 640px) {
    main { padding: 120px 18px 80px; }
    form { padding: 28px 20px; }
    nav { padding: 16px 20px; }
  }
