  :root {
    --gold:        #C07828;
    --gold-light:  #E5A84A;
    --gold-pale:   #FDF3E3;
    --gold-mid:    #F5E2C0;
    --dark:        #28200F;
    --text:        #3A2E18;
    --muted:       #78684A;
    --white:       #FFFFFF;
    --bg:          #FDFAF3;
    --bg-warm:     #F7EDD8;
    --bg-deep:     #EDE0C2;
    --green:       #2A6348;
    --green-pale:  #EAF4EE;
    --border:      #DFC898;
    --shadow-sm:   0 2px 12px rgba(160,100,20,0.10);
    --shadow-md:   0 6px 28px rgba(160,100,20,0.16);
    --shadow-lg:   0 16px 48px rgba(160,100,20,0.20);
  }

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

  html { scroll-behavior: smooth; font-size: 110%; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,250,243,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: var(--shadow-md); }

  .logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .logo-icon img {
    width: 100%; height: 100%;
    object-fit: contain;
    transform: scale(1.45);
  }
  .logo-text { line-height: 1.1; }
  .logo-text strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .logo-text span {
    font-size: 0.62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 19px;
    font-weight: 700;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-right {
    display: flex; align-items: center; gap: 16px;
  }
  .btn-call {
    background: var(--gold);
    color: var(--white);
    border: none; border-radius: 30px;
    padding: 9px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    cursor: pointer;
    display: flex; align-items: center; gap: 7px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: var(--shadow-sm);
  }
  .btn-call:hover { background: #a06018; transform: translateY(-1px); box-shadow: var(--shadow-md); }

  .nav-phone {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.2;
    text-align: right;
  }
  .nav-phone strong { display: block; color: var(--text); font-size: .95rem; }

  .working-hours-form {
    font-size: .85rem;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
  }

  .working-hours-mobile {
    font-size: .85rem;
    color: var(--muted);
    text-align: center;
  } 

  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: .3s;
  }

  /* ── HERO ── */
  .hero {
    margin-top: 70px;
    min-height: 80vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(253,246,231,0.97) 0%,
      rgba(253,246,231,0.88) 25%,
      rgba(253,246,231,0.2) 70%
    );
    z-index: 1;
  }
  .hero-img {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 60px 5%;
    max-width: 580px;
  }
  .hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
    animation: fadeUp .8s ease both;
    letter-spacing: -0.02em;
  }
  .hero-content h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
  }
  .hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 36px;
    animation: fadeUp .8s .15s ease both;
  }
  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap; width: 600px;
    animation: fadeUp .8s .25s ease both;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--white);
    border: none; border-radius: 30px;
    padding: 13px 28px;
    font-family: 'Nunito', sans-serif; font-size: .95rem; font-weight: 800;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(192,120,40,0.32);
    letter-spacing: 0.01em;
  }
  .btn-primary:hover { background: #a06018; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,120,40,0.40); }

  .btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: 30px;
    padding: 13px 28px;
    font-family: 'Nunito', sans-serif; font-size: .95rem; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

  /* ── BADGES ── */
  .badges {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    box-shadow: 0 4px 20px rgba(160,100,20,0.07);
  }
  .badge {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 24px 12px 0;
    border-right: 1px solid var(--border);
  }
  .badge:last-child {
    border-right: none;
    padding-right: 0;
  }
  .badge-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .badge-icon-tst {
    font-size: 40px;
  }
  .badge strong {
    display: block; font-size: 17px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .05em;
    color: var(--dark);
  }
  .badge span { font-size: 15px; color: var(--muted); }

  /* ── SECTIONS general ── */
  section { padding: 72px 5%; }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  /* ── KOME JE NAMENJENO ── */
  .for-whom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
  }
  .for-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex; gap: 16px;
    align-items: flex-start;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    box-shadow: var(--shadow-sm);
  }
  .for-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .for-card-icon { font-size: 2.1rem; flex-shrink: 0; }
  .for-card h3 { font-size: .97rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
  .for-card p { font-size: .85rem; color: var(--muted); }

  .kome-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .kome-img {
    border-radius: 24px;
    overflow: hidden;
    height: 340px;
    background: linear-gradient(145deg, #f0d9a8 0%, #e2c080 50%, #d4a85a 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
  }

  .kome-img-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* ── STA PRUZAMO ── */
  .services-section {
    background: var(--bg-warm);
    background: linear-gradient(160deg, #F7EDD8 0%, #EFE0C0 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    box-shadow: inset 0 4px 24px rgba(160,100,20,0.06);
  }
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: border-color .25s, box-shadow .25s, transform .25s;
    box-shadow: var(--shadow-sm);
  }
  .service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }
  .service-card .svc-icon { font-size: 2.1rem; margin-bottom: 10px; display: block; }
  .service-card span { font-size: .85rem; font-weight: 700; color: var(--dark); }

  /* .disclaimer {
    grid-column: 1 / -1;
    background: #EAF0FF;
    border: 1.5px solid #C0D0F0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .82rem;
    color: #3A50A0;
    display: flex; gap: 10px; align-items: flex-start;
  } */

    .disclaimer {
      grid-column: 1 / -1;
      border-radius: 12px;
      padding: 12px 16px;
      font-size: .82rem;
      font-weight: 700;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

  .services-photo {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(155deg, #E0C890 0%, #C8A060 50%, #B08040 100%);
    box-shadow: var(--shadow-lg);
    position: relative;
    min-height: 300px;
  }

  .service-photo-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .faq-photo-wrap {
    position: relative;
    height: 735px;
    border-radius: 24px;
    overflow: hidden;
  }

  .faq-photo-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .contact-photo-wrap {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
  }

  .contact-photo-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  /* ── ZASTO + KAKO ── */
  .why-how {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    display: flex; gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, transform .25s;
  }
  .why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .why-card .why-icon {
    width: 42px; height: 42px;
    background: var(--gold-pale);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .why-card h4 { font-size: .9rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
  .why-card p { font-size: .8rem; color: var(--muted); }

  .steps { display: flex; flex-direction: column; gap: 0; }
  .step-row {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .step-row:last-child { border-bottom: none; }
  .step-num {
    width: 38px; height: 38px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(192,120,40,0.30);
  }
  .step-row h4 { font-size: .92rem; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
  .step-row p { font-size: .82rem; color: var(--muted); }

  .btn-cta-block {
    margin-top: 24px;
  }
  .btn-cta-block a {
    background: var(--gold);
    color: var(--white);
    border-radius: 30px;
    padding: 13px 28px;
    font-weight: 800; font-size: .9rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(192,120,40,.30);
  }
  .btn-cta-block a:hover { background: #a06018; transform: translateY(-2px); box-shadow: var(--shadow-md); }

  /* ── O NAMA ── */
  .about-section {
    background: linear-gradient(150deg, #EFE0C0 0%, #E5D0A8 60%, #D8C090 100%);
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .about-photo {
    width: 400px;
    flex-shrink: 0;
    display: flex; 
    align-items: flex-start; 
    justify-content: center;
  }
  .about-photo img {
    width: 100%;
    border-radius: 24px;
    display: block;
  }

  .about-text h2 { margin-bottom: 16px; }
  .about-text p { font-size: 17px; color: var(--text); margin-bottom: 12px; }
  .about-text .tagline {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 22px;
    margin-top: 16px;
  }

  .trust-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow-md);
  }
  .trust-card h3 {
    font-size: .97rem; font-weight: 800; color: var(--dark);
    margin-bottom: 18px;
  }
  .trust-item {
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px; color: var(--muted);
  }
  .trust-item .chk { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

  /* ── FAQ ── */
  .faq-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-trigger {
    width: 100%;
    background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0;
    font-family: 'Nunito', sans-serif; font-size: .93rem; font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    gap: 12px;
  }
  .faq-trigger .plus {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
    transition: transform .3s, background .2s;
  }
  .faq-item.open .faq-trigger .plus { transform: rotate(45deg); background: var(--gold-pale); border-color: var(--gold); }
  .faq-body {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    font-size: .88rem; color: var(--muted); line-height: 1.7;
  }
  .faq-body.open { max-height: 200px; padding-bottom: 18px; }

  .faq-img {
    border-radius: 24px;
    
  }

  /* ── CONTACT ── */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .contact-box {
    background: linear-gradient(150deg, var(--gold-pale) 0%, var(--gold-mid) 100%);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: var(--shadow-md);
  }
  .contact-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }
  .contact-btns {
    display: flex; gap: 12px; margin-bottom: 24px;
  }
  .btn-phone {
    flex: 1; background: var(--gold); color: var(--white);
    border: none; border-radius: 30px;
    padding: 13px 16px; font-weight: 800; font-size: .88rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 3px 14px rgba(192,120,40,0.28);
  }
  .btn-phone:hover { background: #a06018; box-shadow: var(--shadow-md); }
  .btn-whatsapp {
    flex: 1; background: var(--green); color: var(--white);
    border: none; border-radius: 30px;
    padding: 13px 16px; font-weight: 800; font-size: .88rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 3px 14px rgba(42,99,72,0.25);
  }
  .btn-whatsapp:hover { background: #1f4d38; box-shadow: var(--shadow-md); }

  .contact-form { display: flex; flex-direction: column; gap: 12px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif; font-size: .88rem;
    color: var(--dark);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,120,40,0.12); }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: #B8A888; }

  .btn-submit {
    background: var(--dark);
    color: var(--white);
    border: none; border-radius: 30px;
    padding: 14px;
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .94rem;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    width: 100%;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(40,32,15,0.20);
  }
  .btn-submit:hover { background: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-md); }

  .form-note {
    display: flex; justify-content: center; gap: 32px; margin-top: 14px;
  }
  .form-note span { font-size: .78rem; color: var(--muted); display: flex; gap: 5px; align-items: center; }

  /* success */
  .success-msg {
    display: none;
    background: var(--green-pale);
    border: 1.5px solid #86C9A8;
    border-radius: 14px; padding: 22px; text-align: center;
    color: var(--green); font-weight: 800; font-size: .95rem;
    margin-top: 12px;
  }

  /* ── SECTION ALTERNATING BACKGROUNDS ── */
  #kome { background: var(--bg); }

  .why-how-section {
    background: linear-gradient(170deg, var(--white) 0%, var(--gold-pale) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  #faq {
    background: var(--bg);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,.65);
    padding: 44px 5%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
    border-top: 3px solid var(--gold);
  }
  footer .footer-logo strong {
    font-family: 'DM Serif Display', serif;
    color: var(--gold-light); font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  footer .footer-logo p { font-size: .78rem; margin-top: 4px; opacity: .7; }
  footer .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
  footer .footer-links a {
    color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem;
    transition: color .2s; font-weight: 600;
  }
  footer .footer-links a:hover { color: var(--gold-light); }
  footer .footer-copy { font-size: .78rem; opacity: .4; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links, .nav-phone { display: none; }
    .hamburger { display: flex; }

    .btn-call { display: none; }
    .hero-img { height: 100%; object-fit: cover; }
    .hero-btns { display: contents; }
    .btn-primary { margin-bottom: 14px; }

    .badges { grid-template-columns: 1fr 1fr; }
    .badge { border-right: none; padding-right: 0; }
    .badge:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 24px; }

    .kome-section,
    .services-section,
    .why-how,
    .about-section,
    .faq-contact,
    .contact-container {
      grid-template-columns: 1fr;
    }
    .about-section { grid-template-columns: 1fr; }
    .about-photo { width: 100%; height: 200px; }
    .about-section {
      padding-top: 0px;
    }
    .contact-section {
      padding-top: 0px;
    }

    .hero-img { width: 100%; opacity: .3; }
    .hero-content { max-width: 100%; }

    .services-photo,
    .kome-img,
    .faq-photo-wrap,
    .contact-photo-wrap { height: 220px; }

    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .badges { grid-template-columns: 1fr; }
    .badge, .badge:nth-child(odd) { border-right: none; padding-right: 0; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .for-whom { grid-template-columns: 1fr; }
    .contact-btns { flex-direction: column; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
  }

  /* ── SERVICE DIALOG ── */
  .service-dialog-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: rgba(40, 32, 15, 0.55);
    backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
  }
  .service-dialog-overlay.open { display: flex; }

  .service-dialog {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 44px 40px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: fadeUp .3s ease both;
  }
  .service-dialog-close {
    position: absolute; top: 16px; right: 18px;
    background: none; border: none;
    font-size: 1.1rem; color: var(--muted);
    cursor: pointer; line-height: 1;
    transition: color .2s;
    padding: 4px 8px;
    border-radius: 50%;
  }
  .service-dialog-close:hover { color: var(--gold); background: var(--gold-pale); }

  .service-dialog-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
    text-align: center;
  }
  .service-dialog-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.55rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .service-dialog-body p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 3px solid var(--gold-mid);
  }
  .service-dialog-body p:last-child { margin-bottom: 0; }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 20px 5%;
    z-index: 99;
    flex-direction: column; gap: 16px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none; color: var(--text); font-weight: 700;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
