:root {
      --ink: #0a0a0a;
      --cream: #f5f0e8;
      --gold: #c8a96e;
      --gold-light: #e8d5a3;
      --rust: #b85c38;
      --sage: #6b7c6e;
      --white: #fefefe;
      --border: rgba(10,10,10,0.1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ NAV ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
      padding: 1.2rem 0;
      background: rgba(245,240,232,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: all .3s;
    }
    .nav-brand {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -.02em;
    }
    .nav-brand span { color: var(--gold); }
    .nav-link {
      font-size: .85rem;
      font-weight: 500;
      color: var(--ink) !important;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .4rem .8rem !important;
      transition: color .2s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .btn-nav {
      background: var(--ink);
      color: var(--cream);
      border: none;
      padding: .5rem 1.4rem;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      border-radius: 0;
      transition: background .25s, color .25s;
      text-decoration: none;
    }
    .btn-nav:hover { background: var(--gold); color: var(--ink); }
    .navbar-toggler { border: 1px solid var(--ink); border-radius: 0; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #hero {
      min-height: 100vh;
      padding-top: 80px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200,169,110,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(107,124,110,.12) 0%, transparent 60%);
    }
    .hero-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -.03em;
      color: var(--ink);
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      font-weight: 300;
    }
    .hero-sub {
      font-size: 1.1rem;
      font-weight: 300;
      color: #555;
      max-width: 460px;
      line-height: 1.7;
      margin: 1.8rem 0 2.5rem;
    }
    .btn-primary-custom {
      background: var(--ink);
      color: var(--cream);
      border: none;
      padding: .9rem 2.4rem;
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      border-radius: 0;
      text-decoration: none;
      display: inline-block;
      transition: all .25s;
    }
    .btn-primary-custom:hover { background: var(--gold); color: var(--ink); }
    .btn-outline-custom {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--ink);
      padding: .88rem 2.4rem;
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      border-radius: 0;
      text-decoration: none;
      display: inline-block;
      transition: all .25s;
    }
    .btn-outline-custom:hover { background: var(--ink); color: var(--cream); }
    .hero-visual {
      position: relative;
      height: 520px;
    }
    .hero-card {
      position: absolute;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.8rem;
      box-shadow: 0 20px 60px rgba(0,0,0,.08);
    }
    .hero-card:nth-child(1) { top: 10%; left: 5%; width: 260px; }
    .hero-card:nth-child(2) { top: 35%; right: 0; width: 220px; background: var(--ink); color: var(--cream); }
    .hero-card:nth-child(3) { bottom: 5%; left: 15%; width: 240px; }
    .hero-card-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
    .hero-card h5 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; }
    .hero-card p { font-size: .8rem; opacity: .7; line-height: 1.5; margin: 0; }
    .hero-card:nth-child(2) .hero-card-label { color: var(--gold-light); }
    .hero-stat-bar {
      display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem;
    }
    .stat-item { text-align: center; }
    .stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; }
    .stat-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin-top: .2rem; }
    .stat-divider { width: 1px; height: 40px; background: var(--border); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION COMMONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .section-pad { padding: 100px 0; }
    .section-tag {
      display: inline-block;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(200,169,110,.1);
      padding: .3rem .8rem;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -.02em;
    }
    .section-title em { font-style: italic; color: var(--gold); font-weight: 300; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ABOUT ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #about { background: var(--white); }
    .about-img-wrap { position: relative; }
    .about-img-main {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }
    .about-img-placeholder {
      width: 100%;
      height: 480px;
      background: url(../images/about-img.png);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: .1em;
    }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--gold);
      color: var(--ink);
      padding: 1.4rem 1.8rem;
      font-family: 'Fraunces', serif;
    }
    .about-badge .num { font-size: 2.5rem; font-weight: 700; line-height: 1; }
    .about-badge .lbl { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
    .about-desc { font-size: 1rem; line-height: 1.8; color: #555; }
    .about-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
    .about-list li {
      display: flex; align-items: flex-start; gap: .8rem;
      font-size: .93rem; color: #444; padding: .5rem 0;
      border-bottom: 1px solid var(--border);
    }
    .about-list li:last-child { border-bottom: none; }
    .about-list li i { color: var(--gold); margin-top: .2rem; font-size: 1rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SERVICES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #services { background: var(--cream); }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2.5rem 2rem;
      transition: all .3s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.09); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px;
      background: rgba(200,169,110,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .service-card h4 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: .7rem; }
    .service-card p { font-size: .88rem; line-height: 1.7; color: #666; margin: 0; }
    .service-num {
      position: absolute; top: 1.5rem; right: 1.8rem;
      font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700;
      color: rgba(10,10,10,.04); line-height: 1;
    }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ WHY CHOOSE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #why { background: var(--ink); color: var(--cream); }
    #why .section-title { color: var(--cream); }
    #why .section-title em { color: var(--gold); }
    .why-item {
      padding: 2rem;
      border: 1px solid rgba(255,255,255,.08);
      transition: all .3s;
      height: 100%;
    }
    .why-item:hover { border-color: var(--gold); background: rgba(200,169,110,.06); }
    .why-item i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
    .why-item h5 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
    .why-item p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); margin: 0; }
    .why-big-num {
      font-family: 'Fraunces', serif;
      font-size: clamp(4rem, 10vw, 8rem);
      font-weight: 700;
      color: rgba(255,255,255,.04);
      line-height: 1;
      position: absolute;
      top: -1rem; right: 0;
    }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ PRICING ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #pricing { background: var(--white); }
    .pricing-card {
      border: 1.5px solid var(--border);
      padding: 2.5rem;
      position: relative;
      transition: all .3s;
      height: 100%;
    }
    .pricing-card.featured {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--cream);
    }
    .pricing-card.featured p, .pricing-card.featured li { color: rgba(255,255,255,.7); }
    .pricing-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--ink);
      font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      padding: .2rem .9rem;
    }
    .pricing-plan {
      font-size: 21px;
      letter-spacing: normal;
      color: var(--gold);
      font-family: 'Fraunces', serif;
      font-style: italic;
      line-height: normal;
      margin-bottom: .8rem;
      font-weight: 600;
    }
    .pricing-price {
      font-family: 'Fraunces', serif;
      font-size: 3.5rem; font-weight: 700; line-height: 1;
      letter-spacing: -.03em; margin-bottom: .3rem;
    }
    .pricing-price sup { font-size: 1.5rem; font-weight: 300; vertical-align: top; margin-top: .8rem; }
    .pricing-per { font-size: .8rem; color: #999; margin-bottom: 1.5rem; }
    .pricing-card.featured .pricing-per { color: rgba(255,255,255,.5); }
    .pricing-list { list-style: none; padding: 0; margin: 0 0 2rem; }
    .pricing-list li {
      display: flex; align-items: center; gap: .7rem;
      font-size: .87rem; padding: .5rem 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .pricing-card.featured .pricing-list li { border-bottom-color: rgba(255,255,255,.06); }
    .pricing-list li i { color: var(--gold); font-size: .9rem; }
    .pricing-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FAQ ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #faq { background: var(--cream); }
    .faq-item {
      border: 1px solid var(--border);
      margin-bottom: .8rem;
      background: var(--white);
    }
    .faq-question {
      width: 100%; text-align: left; background: none; border: none;
      padding: 1.3rem 1.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem; font-weight: 600; color: var(--ink);
      display: flex; align-items: center; justify-content: space-between;
      cursor: pointer; transition: color .2s;
    }
    .faq-question:hover { color: var(--gold); }
    .faq-question i { transition: transform .3s; font-size: 1.1rem; }
    .faq-question.open i { transform: rotate(45deg); color: var(--gold); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      font-size: .88rem; line-height: 1.7; color: #666;
      padding: 0 1.5rem;
    }
    .faq-answer.open { max-height: 200px; padding: 0 1.5rem 1.3rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FOOTER CTA ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .cta-section {
      background: var(--gold);
      padding: 80px 0;
      text-align: center;
    }
    .cta-section h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700; color: var(--ink); letter-spacing: -.02em;
    }
    .cta-section p { color: rgba(10,10,10,.65); font-size: 1rem; margin: 1rem 0 2.5rem; }
    .btn-cta-dark {
      background: var(--ink); color: var(--cream);
      border: none; padding: 1rem 2.8rem;
      font-size: .88rem; font-weight: 600;
      letter-spacing: .07em; text-transform: uppercase;
      border-radius: 0; text-decoration: none;
      display: inline-block; transition: all .25s;
    }
    .btn-cta-dark:hover { background: var(--white); color: var(--ink); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FOOTER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 60px 0 30px; }
    .footer-brand { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--cream); }
    .footer-brand span { color: var(--gold); }
    .footer-desc { font-size: .85rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
    .footer-social a {
      color: rgba(255,255,255,.4);
      font-size: 1.1rem; margin-right: .8rem;
      transition: color .2s; text-decoration: none;
    }
    .footer-social a:hover { color: var(--gold); }
    .footer-heading { color: var(--cream); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.2rem; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: .5rem; }
    .footer-links a { color: rgba(255,255,255,.55); font-size: .85rem; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; margin-top: 3rem; font-size: .8rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ANIMATIONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 768px) {
      .hero-visual { display: none; }
      .about-badge { right: 0; bottom: 0; }
      .pricing-card { margin-bottom: 1.5rem; }
    }

    /* login */
.login-body{
       background: var(--cream);
      color: var(--ink);
      display: flex;
      min-height: 100vh;
      overflow: hidden;
}
     /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ LEFT PANEL ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .left-panel {
      flex: 0 0 48%;
      background: var(--ink);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .left-panel::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,169,110,.15) 0%, transparent 70%);
      top: -150px; right: -150px;
      pointer-events: none;
    }
    .left-panel::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(107,124,110,.1) 0%, transparent 70%);
      bottom: -100px; left: -100px;
      pointer-events: none;
    }
    .panel-brand {
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -.02em;
      position: relative; z-index: 1;
    }
    .panel-brand span { color: var(--gold); }
    .panel-center { position: relative; z-index: 1; }
    .panel-tagline {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -.03em;
    }
    .panel-tagline em { font-style: italic; color: var(--gold); font-weight: 300; }
    .panel-desc {
      color: rgba(255,255,255,.5);
      font-size: .92rem;
      line-height: 1.7;
      margin-top: 1.2rem;
      max-width: 340px;
    }
    .panel-features { position: relative; z-index: 1; margin-top: 2rem; }
    .panel-feat {
      display: flex; align-items: center; gap: .9rem;
      padding: .7rem 0;
      border-top: 1px solid rgba(255,255,255,.07);
      color: rgba(255,255,255,.65);
      font-size: .84rem;
    }
    .panel-feat:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
    .panel-feat i { color: var(--gold); font-size: 1rem; }
    .panel-bottom { position: relative; z-index: 1; }
    .panel-quote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1rem;
      color: rgba(255,255,255,.45);
      line-height: 1.5;
    }
    .panel-quote-author { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: rgba(255,255,255,.3); margin-top: .4rem; font-style: normal; letter-spacing: .08em; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RIGHT PANEL ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .right-panel {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      background: var(--cream);
      overflow-y: auto;
    }
    .login-box { width: 100%; max-width: 420px; }
    .login-head { margin-bottom: 2.5rem; }
    .login-head h1 {
      font-family: 'Fraunces', serif;
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -.02em;
      margin-bottom: .4rem;
    }
    .login-head p { font-size: .9rem; color: #888; }
    .login-head p a { color: var(--gold); text-decoration: none; font-weight: 600; }
    .login-head p a:hover { text-decoration: underline; }

    .form-label {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: .5rem;
    }
    .form-control {
      border: 1.5px solid var(--border);
      border-radius: 0;
      background: var(--white);
      padding: .85rem 1.1rem;
      font-size: .93rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-control:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,169,110,.15);
      outline: none;
      background: var(--white);
    }
    .form-control::placeholder { color: #bbb; }
    .input-group { position: relative; }
    .input-group .form-control { padding-right: 3rem; }
    .toggle-pw {
      position: absolute; right: 1rem; top: 50%;
      transform: translateY(-50%);
      background: none; border: none; padding: 0;
      color: #bbb; cursor: pointer; font-size: 1.1rem;
      z-index: 2; transition: color .2s;
    }
    .toggle-pw:hover { color: var(--gold); }
    .form-options {
      display: flex; align-items: center; justify-content: space-between;
      margin: 1rem 0 1.8rem;
    }
    .form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
    .form-check-label { font-size: .84rem; color: #666; }
    .forgot-link { font-size: .84rem; color: var(--gold); text-decoration: none; }
    .forgot-link:hover { text-decoration: underline; }
    .btn-login {
      width: 100%; background: var(--ink); color: var(--cream);
      border: none; padding: 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      border-radius: 0; cursor: pointer;
      transition: background .25s;
      position: relative; overflow: hidden;
    }
    .btn-login:hover { background: var(--gold); color: var(--ink); }
    .btn-login.loading::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,.15);
      animation: shimmer 1s infinite;
    }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .divider {
      display: flex; align-items: center; gap: 1rem;
      margin: 1.8rem 0; color: #ccc; font-size: .8rem;
    }
    .divider::before, .divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    .social-btn {
      width: 100%; background: var(--white); color: var(--ink);
      border: 1.5px solid var(--border); padding: .8rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .88rem; font-weight: 500;
      border-radius: 0; cursor: pointer;
      transition: all .2s; text-decoration: none;
      display: flex; align-items: center; justify-content: center; gap: .7rem;
    }
    .social-btn:hover { border-color: var(--ink); color: var(--ink); background: var(--cream); }

    .login-footer {
      margin-top: 2rem; text-align: center;
      font-size: .8rem; color: #aaa;
    }
    .login-footer a { color: #aaa; text-decoration: none; }
    .login-footer a:hover { color: var(--gold); }

    .success-msg {
      display: none;
      background: rgba(107,124,110,.1);
      border: 1px solid rgba(107,124,110,.25);
      color: var(--sage);
      padding: .9rem 1.2rem;
      font-size: .87rem;
      margin-bottom: 1.5rem;
      align-items: center; gap: .7rem;
    }

    /* Floating label animation */
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .login-box { animation: slideIn .5s ease both; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ MOBILE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    @media (max-width: 768px) {
      body { overflow: auto; display: block; }
      .left-panel { display: none; }
      .right-panel { min-height: 100vh; padding: 2rem 1.5rem; }
      .login-box { max-width: 100%; }
    }
/* cart page */

.page-header {
      padding: 111px 0 17px;
      background: #916a26;
      border-bottom: 1px solid var(--border);
    }
    .page-header-tag {
      font-size: .7rem; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold);
      background: rgba(200,169,110,.1); padding: .3rem .8rem;
      display: inline-block; margin-bottom: 1rem;
    }
    .page-header h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700; line-height: 1.05; letter-spacing: -.03em;
    }
    .page-header h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
    .breadcrumb-nav { font-size: .8rem; color: #888; margin-top: .8rem; }
    .breadcrumb-nav a { color: #888; text-decoration: none; }
    .breadcrumb-nav a:hover { color: var(--gold); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ BUTTONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .btn-primary-custom {
      background: var(--ink); color: var(--cream); border: none;
      padding: .9rem 2.4rem; font-size: .88rem; font-weight: 600;
      letter-spacing: .07em; text-transform: uppercase; border-radius: 0;
      text-decoration: none; display: inline-block; transition: all .25s; cursor: pointer;
    }
    .btn-primary-custom:hover { background: var(--gold); color: var(--ink); }
    .btn-outline-custom {
      background: transparent; color: var(--ink);
      border: 1.5px solid var(--ink); padding: .88rem 2.4rem;
      font-size: .88rem; font-weight: 600; letter-spacing: .07em;
      text-transform: uppercase; border-radius: 0;
      text-decoration: none; display: inline-block; transition: all .25s; cursor: pointer;
    }
    .btn-outline-custom:hover { background: var(--ink); color: var(--cream); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ CART LAYOUT ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .cart-section { padding: 60px 0 100px; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ CART ITEM ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .cart-item {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.8rem;
      margin-bottom: 1rem;
      transition: box-shadow .2s;
      position: relative;
    }
    .cart-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,.06); }
    .cart-item-icon {
      width: 70px; height: 70px;
      background: rgba(200,169,110,.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--gold);
      flex-shrink: 0;
    }
    @media (max-width: 576px) {
      .cart-item-icon { width: 52px; height: 52px; font-size: 1.3rem; }
    }
    .cart-item-tag {
      font-size: .62rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
    }
    .cart-item-title {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem;
    }
    .cart-item-desc { font-size: .82rem; color: #888; line-height: 1.5; }
    .cart-item-features {
      display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem;
    }
    .cart-item-feature {
      font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      background: rgba(200,169,110,.1); color: var(--sage);
      padding: .2rem .6rem;
    }
    .cart-item-price {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem; font-weight: 700; color: var(--ink);
      white-space: nowrap;
    }
    .cart-item-price sup { font-size: .85rem; font-weight: 300; vertical-align: top; margin-top: .35rem; }
    .qty-control {
      display: flex; align-items: center; gap: 0;
      border: 1px solid var(--border);
      background: var(--cream);
    }
    .qty-btn {
      width: 34px; height: 34px; border: none; background: transparent;
      font-size: 1rem; cursor: pointer; color: var(--ink);
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .qty-btn:hover { background: var(--gold); color: var(--ink); }
    .qty-val {
      width: 40px; text-align: center;
      font-size: .9rem; font-weight: 600;
      border: none; background: transparent; outline: none;
    }
    .remove-btn {
      position: absolute; top: 1.2rem; right: 1.2rem;
      background: none; border: none; cursor: pointer;
      color: #ccc; font-size: 1rem; transition: color .2s; padding: 0;
    }
    .remove-btn:hover { color: var(--rust); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ADD-ONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .addon-section {
      margin-top: 2.5rem; padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .addon-title {
      font-size: .72rem; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem;
    }
    .addon-card {
      border: 1.5px solid var(--border);
      padding: 1.2rem 1.4rem;
      cursor: pointer;
      transition: all .2s;
      position: relative;
      background: var(--white);
    }
    .addon-card:hover { border-color: var(--gold); }
    .addon-card.selected { border-color: var(--gold); background: rgba(200,169,110,.05); }
    .addon-card.selected::after {
      content: '\F26E';
      font-family: 'Bootstrap-icons';
      position: absolute; top: .7rem; right: .8rem;
      color: var(--gold); font-size: .9rem;
    }
    .addon-card h6 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
    .addon-card p { font-size: .78rem; color: #888; margin: 0; }
    .addon-price { font-size: .9rem; font-weight: 700; color: var(--gold); margin-top: .4rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ORDER SUMMARY ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .order-summary {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2rem;
      position: sticky;
      top: 90px;
    }
    .summary-title {
      font-size: 1.25rem;
      font-weight: 200;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .summary-row {
      display: flex; justify-content: space-between; align-items: center;
      font-size: .88rem; padding: .5rem 0;
      border-bottom: 1px solid rgba(0,0,0,.05);
    }
    .summary-row:last-of-type { border-bottom: none; }
    .summary-row .label { color: #666; }
    .summary-row .value { font-weight: 600; }
    .summary-divider { border: none; border-top: 1.5px solid var(--border); margin: 1rem 0; }
    .summary-total {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 1.5rem;
    }
    .summary-total .label { font-size: .95rem; font-weight: 600; }
    .summary-total .value {
      font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700;
    }
    .summary-total .value sup { font-size: .9rem; font-weight: 300; vertical-align: top; margin-top: .45rem; }
    .promo-input-wrap { display: flex; gap: 0; margin-bottom: 1.5rem; }
    .promo-input {
      flex: 1; border: 1px solid var(--border); border-right: none;
      padding: .6rem 1rem; font-family: 'DM Sans', sans-serif;
      font-size: .85rem; background: var(--cream); outline: none;
      transition: border-color .2s;
    }
    .promo-input:focus { border-color: var(--gold); }
    .promo-btn {
      background: var(--ink); color: var(--cream);
      border: none; padding: .6rem 1.2rem;
      font-size: .78rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      cursor: pointer; transition: background .2s; white-space: nowrap;
    }
    .promo-btn:hover { background: var(--gold); color: var(--ink); }
    .trust-items { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.2rem; }
    .trust-item {
      display: flex; align-items: center; gap: .7rem;
      font-size: .8rem; color: #777; padding: .3rem 0;
    }
    .trust-item i { color: var(--gold); font-size: 1rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ EMPTY STATE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .empty-cart {
      text-align: center; padding: 80px 20px;
      background: var(--white); border: 1px solid var(--border);
    }
    .empty-cart-icon {
      width: 90px; height: 90px;
      background: rgba(200,169,110,.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; color: var(--gold);
      margin: 0 auto 1.5rem;
    }
    .empty-cart h4 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
    .empty-cart p { color: #888; font-size: .9rem; margin-bottom: 2rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RELATED ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .related-section { background: var(--ink); color: var(--cream); padding: 80px 0; }
    .section-tag {
      display: inline-block; font-size: .68rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
      background: rgba(200,169,110,.1); padding: .3rem .8rem; margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
      line-height: 1.1; letter-spacing: -.02em;
    }
    .section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
    .related-card {
      border: 1px solid rgba(255,255,255,.08);
      padding: 2rem; transition: all .3s;
      background: rgba(255,255,255,.02);
    }
    .related-card:hover { border-color: var(--gold); background: rgba(200,169,110,.05); transform: translateY(-4px); }
    .related-card-tag { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
    .related-card h5 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
    .related-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1.2rem; }
    .related-card-price {
      font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700;
      color: var(--gold); margin-bottom: 1rem;
    }
    .btn-ghost {
      background: transparent; color: var(--cream);
      border: 1px solid rgba(255,255,255,.25);
      padding: .55rem 1.4rem; font-size: .8rem; font-weight: 600;
      letter-spacing: .07em; text-transform: uppercase;
      text-decoration: none; display: inline-block;
      transition: all .25s; cursor: pointer;
    }
    .btn-ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
/* service details */
 .service-hero {
      min-height: 88vh; padding-top: 80px;
      background: var(--ink);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
    }
    .service-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 70% at 85% 40%, rgba(200,169,110,.14) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 5% 80%, rgba(107,124,110,.1) 0%, transparent 60%);
    }
    /* Decorative large number */
    .hero-deco-num {
      position: absolute; right: -2rem; bottom: -3rem;
      font-family: 'Fraunces', serif; font-size: clamp(12rem, 22vw, 20rem);
      font-weight: 700; color: rgba(255,255,255,.025);
      line-height: 1; pointer-events: none; user-select: none;
    }
    .service-hero-tag { font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); background: rgba(200,169,110,.12); padding: .3rem .9rem; display: inline-block; margin-bottom: 1.2rem; }
    .service-hero-title { font-family: 'Fraunces', serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.0; letter-spacing: -.03em; color: var(--cream); margin-bottom: 1.4rem; }
    .service-hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
    .service-hero-desc { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem; }
    .hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
    .btn-gold { background: var(--gold); color: var(--ink); border: none; padding: .9rem 2.4rem; font-size: .88rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; border-radius: 0; text-decoration: none; display: inline-block; transition: all .25s; cursor: pointer; }
    .btn-gold:hover { background: var(--gold-light); color: var(--ink); }
    .btn-ghost-light { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.2); padding: .88rem 2.4rem; font-size: .88rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; border-radius: 0; text-decoration: none; display: inline-block; transition: all .25s; cursor: pointer; }
    .btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

    /* Hero service stats */
    .hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.08); }
    .hero-stat-item {}
    .hero-stat-num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--cream); line-height: 1; }
    .hero-stat-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; }

    /* Hero right visual */
    .hero-right-visual { position: relative; height: 520px; }
    .preview-card {
      position: absolute; background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      backdrop-filter: blur(8px); padding: 1.6rem;
      transition: transform .3s;
    }
    .preview-card:hover { transform: translateY(-4px); }
    .preview-card:nth-child(1) { top: 0; left: 0; width: 260px; }
    .preview-card:nth-child(2) { top: 30%; right: 0; width: 230px; background: rgba(200,169,110,.1); border-color: rgba(200,169,110,.3); }
    .preview-card:nth-child(3) { bottom: 0; left: 20%; width: 250px; }
    .preview-card-label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
    .preview-card h6 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: var(--cream); margin-bottom: .3rem; }
    .preview-card p { font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.5; margin: 0; }
    .preview-card-icon { width: 38px; height: 38px; background: rgba(200,169,110,.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); margin-bottom: 1rem; }

    /* Breadcrumb */
    .breadcrumb-nav { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 1.5rem; }
    .breadcrumb-nav a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
    .breadcrumb-nav a:hover { color: var(--gold); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SERVICE SWITCHER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    .switcher-bar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 66px; z-index: 99; }
    .switcher-inner { display: flex; overflow-x: auto; scrollbar-width: none; }
    .switcher-inner::-webkit-scrollbar { display: none; }
    .switcher-btn {
      flex-shrink: 0; padding: 1.1rem 1.6rem;
      font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      border: none; background: transparent; cursor: pointer; color: #888;
      border-bottom: 2.5px solid transparent; transition: all .2s;
      display: flex; align-items: center; gap: .5rem; white-space: nowrap;
    }
    .switcher-btn i { font-size: .95rem; }
    .switcher-btn:hover { color: var(--ink); }
    .switcher-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ OVERVIEW ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #overview { background: var(--white); }
    .overview-lead { font-size: 1.15rem; font-weight: 300; line-height: 1.85; color: #444; margin-bottom: 2rem; }
    .feature-pill { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: rgba(200,169,110,.1); color: var(--sage); padding: .4rem .9rem; margin: .25rem; }
    .feature-pill i { color: var(--gold); font-size: .85rem; }
    .highlight-box { background: var(--ink); color: var(--cream); padding: 2.5rem; position: relative; overflow: hidden; }
    .highlight-box::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: radial-gradient(circle, rgba(200,169,110,.2) 0%, transparent 70%); }
    .highlight-box-tag { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
    .highlight-box h5 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--cream); }
    .highlight-box p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ PROCESS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #process { background: var(--cream); }
    .process-step { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; }
    .process-step:not(:last-child)::after { content: ''; position: absolute; left: 27px; top: 60px; width: 2px; height: calc(100% - 20px); background: var(--border); }
    .process-num-wrap { flex-shrink: 0; }
    .process-num { width: 56px; height: 56px; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); position: relative; z-index: 1; transition: all .3s; }
    .process-step:hover .process-num { background: var(--gold); color: var(--ink); border-color: var(--gold); }
    .process-content { padding-top: .8rem; }
    .process-tag { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); margin-bottom: .4rem; }
    .process-content h5 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
    .process-content p { font-size: .88rem; line-height: 1.75; color: #666; }
    .process-duration { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgba(200,169,110,.12); color: var(--gold); padding: .2rem .7rem; margin-top: .7rem; }

    /* Process sidebar */
    .process-sidebar { background: var(--ink); color: var(--cream); padding: 2rem; height: fit-content; position: sticky; top: 120px; }
    .process-sidebar-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.08); }
    .timeline-row { display: flex; justify-content: space-between; align-items: center; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .85rem; }
    .timeline-row:last-of-type { border-bottom: none; }
    .timeline-row .phase { color: rgba(255,255,255,.55); }
    .timeline-row .dur { font-weight: 700; color: var(--gold); font-size: .82rem; }
    .total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; margin-top: .5rem; border-top: 1px solid rgba(255,255,255,.15); }
    .total-row .label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
    .total-row .value { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ DELIVERABLES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #deliverables { background: var(--white); }
    .deliverable-card { background: var(--cream); border: 1px solid var(--border); padding: 2rem; height: 100%; transition: all .3s; position: relative; overflow: hidden; }
    .deliverable-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
    .deliverable-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.07); }
    .deliverable-card:hover::before { transform: scaleX(1); }
    .deliverable-icon { width: 50px; height: 50px; background: rgba(200,169,110,.12); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); margin-bottom: 1.2rem; }
    .deliverable-card h5 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
    .deliverable-card p { font-size: .82rem; line-height: 1.65; color: #666; margin: 0; }
    .deliverable-card .file-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .3rem; }
    .file-tag { font-size: .62rem; font-weight: 700; letter-spacing: .1em; background: rgba(10,10,10,.07); color: var(--sage); padding: .2rem .55rem; }
    .deliverable-num { position: absolute; bottom: 1rem; right: 1.2rem; font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; color: rgba(10,10,10,.04); line-height: 1; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ PRICING PLANS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #pricing-plans { background: var(--cream); }
    .plan-card { background: var(--white); border: 1.5px solid var(--border); padding: 2.5rem; position: relative; height: 100%; transition: all .3s; }
    .plan-card.featured { background: var(--ink); border-color: var(--ink); color: var(--cream); }
    .plan-card.featured p, .plan-card.featured li { color: rgba(255,255,255,.65); }
    .plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .22rem .9rem; white-space: nowrap; }
    .plan-name { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
    .plan-price { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; margin-bottom: .3rem; }
    .plan-price sup { font-size: 1.4rem; font-weight: 300; vertical-align: top; margin-top: .8rem; }
    .plan-per { font-size: .8rem; color: #999; margin-bottom: 1.2rem; }
    .plan-card.featured .plan-per { color: rgba(255,255,255,.4); }
    .plan-desc { font-size: .83rem; line-height: 1.65; color: #777; margin-bottom: 1.5rem; }
    .plan-card.featured .plan-desc { color: rgba(255,255,255,.55); }
    .plan-list { list-style: none; padding: 0; margin: 0 0 2rem; }
    .plan-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; padding: .45rem 0; border-bottom: 1px solid rgba(0,0,0,.05); }
    .plan-card.featured .plan-list li { border-bottom-color: rgba(255,255,255,.06); }
    .plan-list li i { color: var(--gold); font-size: .85rem; margin-top: .15rem; flex-shrink: 0; }
    .plan-list li.disabled { opacity: .35; }
    .plan-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
    .compare-note { text-align: center; font-size: .82rem; color: #888; margin-top: 2rem; }
    .compare-note a { color: var(--gold); text-decoration: none; }

    /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ PORTFOLIO / WORK ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
    #work { background: var(--ink); }
    .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.05); }
    @media (max-width: 767px) { .work-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .work-grid { grid-template-columns: 1fr; } }
    .work-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
    .work-item-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform .4s; }
    .work-item:hover .work-item-bg { transform: scale(1.04); }
    .work-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background .3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
    .work-item:hover .work-overlay { background: rgba(10,10,10,.75); }
    .work-overlay-content { transform: translateY(12px); opacity: 0; transition: all .3s; }
    .work-item:hover .work-overlay-content { transform: translateY(0); opacity: 1; }
    .work-client { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
    .work-name { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700; color: var(--cream); }
    .work-cat { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .1rem; }
    .work-featured { grid-column: span 2; }
    @media (max-width: 480px) { .work-featured { grid-column: span 1; } }

    /* Color palettes for work items */
    .bg-terracotta { background: linear-gradient(135deg, #7c3d2e 0%, #b85c38 100%); }
    .bg-forest { background: linear-gradient(135deg, #2d3e33 0%, #4a6b55 100%); }
    .bg-slate { background: linear-gradient(135deg, #2a2f3e 0%, #3d4a6b 100%); }
    .bg-sand { background: linear-gradient(135deg, #c8a96e 0%, #e8d5a3 100%); }
    .bg-charcoal { background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%); }
    .bg-mauve { background: linear-gradient(135deg, #5c3d4e 0%, #8a6070 100%); }
    .work-item-inner-logo { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,.25); letter-spacing: -.04em; }

/* //common */
    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }
    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }
    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }
    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }
    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
padding: 10px 20px;
border-radius: 5px;
background: #000;
cursor: pointer;
transition: all 0.5s ease;
border: 2px solid #fff;
}
.cookieBtns button:last-child {
background-color: #fff;
color: #666 !important;
}

a.navbar-brand img {
    width: auto;
    height: 32px;
}

.payment-icons-strip img {
    width: auto;
    height: 38px;
    background: #fff;
    padding: 2px;
    border-radius: 5px;
}

h3.checkout-title {
    font-size: 24px;
    color: #916a26;
    margin: 10px 0;
}

h3.summary-title {
    font-size: 24px;
    color: #916a26;
    margin: 10px 0;
}

.checkout-card label {
    margin: 10px 0;
}

.order-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
    padding: 10px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.d-flex {
    display: flex;
}

.terms-container input {
    width: 16px;
    height: 26px;
    margin: 0px 8px;
}

h3.sec-head {
    font-family: 'Fraunces', serif;
    color: #caac74;
    font-style: italic;
    font-weight: 600;
    font-size: 32px;
}

h1.sec-head {
    font-size: 35px;
    margin: 0;
    padding: 0;
}

.prod-main-bx h4 {
    margin: 11px 0;
    font-size: 25px;
}

.prod-main-bx-btm h5 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.prod-main-bx-btm p {
    margin: 10px 0;
    font-style: italic;
    padding: 0 10px;
    border-left: 2px solid #d19f46;
}

.prod-main-bx-btm {
    margin: 30px 0;
}

.prod-main-bx p {
    background: #f3e5cb;
    padding: 20px;
    font-size: 16px;
    font-style: italic;
}

section.prvcy-sec h4 {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
}