/* PearlBrows — mobile-first responsive website */
:root {
  --ink: #171412;
  --ink-soft: #27221f;
  --cream: #f7f1e9;
  --paper: #fffaf4;
  --muted: #716761;
  --gold: #c6a06f;
  --gold-dark: #9e774b;
  --line: rgba(23, 20, 18, .13);
  --white: #fff;
  --shadow: 0 24px 70px rgba(31, 24, 19, .12);
  --radius: 1.1rem;
  --shell: 1180px;
  --header-height: 68px;
  --section-space: clamp(4rem, 9vw, 7.5rem);
  --side-space: clamp(1rem, 4vw, 2rem);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.65; }
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: .98; letter-spacing: -.025em; }
h1 { max-width: 13ch; font-size: clamp(3rem, 11vw, 6.5rem); font-weight: 600; }
h2 { font-size: clamp(2.5rem, 7vw, 4.4rem); font-weight: 600; }
h3 { font-size: 1.75rem; }
p { color: var(--muted); }
.shell { width: min(100% - (2 * var(--side-space)), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark p { color: #cfc5bb; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 5000; padding: .75rem 1rem; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: .8rem; color: var(--gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-dark .eyebrow { color: #e0bd8e; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); background: rgba(23, 20, 18, .82); color: white; border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(16px); transition: height .25s ease, background .25s ease; }
.site-header.scrolled { height: 60px; background: rgba(23, 20, 18, .95); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 700; }
.brand-mark { display: grid; width: 2.15rem; aspect-ratio: 1; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: .9rem; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; letter-spacing: .02em; }
.menu-button { display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 25px; height: 2px; background: white; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: .25rem; padding: 1rem var(--side-space) 1.4rem; background: rgba(23,20,18,.98); border-bottom: 1px solid rgba(255,255,255,.09); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s ease; }
.site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
.site-nav a { padding: .8rem .35rem; color: #eee6dc; font-size: 1.05rem; font-weight: 600; }
.site-nav .button { margin-top: .4rem; color: var(--ink); }

.hero { position: relative; min-height: min(760px, 92svh); display: grid; align-items: end; padding-top: var(--header-height); overflow: hidden; color: white; }
.hero-media { position: absolute; inset: 0; background: url("../images/brand/hero.svg") center/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,13,12,.16) 0%, rgba(16,13,12,.35) 38%, rgba(16,13,12,.94) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: clamp(5rem, 17vh, 9rem) 3rem; }
.hero .eyebrow { color: #e9c89e; }
.hero h1 { margin-bottom: 1rem; }
.hero-copy { max-width: 42rem; margin-bottom: 1.6rem; color: #eee7df; font-size: clamp(1.02rem, 3vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.35rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .85rem 1.3rem; background: var(--gold); color: var(--ink); border: 1px solid var(--gold); border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: #d6b385; }
.button:focus-visible, .card-link:focus-visible, .menu-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .gallery-item:focus-visible { outline: 3px solid #efd0a7; outline-offset: 3px; }
.button-small { min-height: 42px; padding: .65rem 1rem !important; }
.button-outline { background: transparent; color: var(--ink); border-color: var(--gold-dark); }
.text-link { font-weight: 700; }
.trust-list { display: flex; flex-wrap: wrap; gap: .65rem 1.25rem; margin: 2rem 0 0; padding: 0; list-style: none; color: #ddd3c9; font-size: .9rem; }
.trust-list li::before { content: "✓"; margin-right: .45rem; color: #e5bd89; }

.quick-contact { background: var(--cream); border-bottom: 1px solid var(--line); }
.quick-contact-grid { display: grid; }
.quick-contact-grid > * { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.quick-contact-grid > *:last-child { border-bottom: 0; }
.quick-contact span, .contact-details span { display: block; margin-bottom: .2rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.quick-contact strong { font-size: .93rem; }
.phone-stack { display: grid; gap: .25rem; align-content: start; }
.phone-stack a { display: block; width: fit-content; }
.phone-stack a:hover { color: var(--gold-dark); }
.contact-details .phone-stack a strong { color: #f3ebe3; }


.section-heading { max-width: 760px; margin: 0 auto 2rem; text-align: center; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading > p:last-child { margin-bottom: 0; }
.services-grid { display: grid; gap: .85rem; }
.service-card { position: relative; display: grid; min-height: 225px; align-content: start; padding: 1.35rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 30px rgba(40,32,25,.04); }
.service-icon { display: grid; width: 2.55rem; aspect-ratio: 1; margin-bottom: 1rem; place-items: center; background: var(--cream); border-radius: 50%; color: var(--gold-dark); font-size: 1.2rem; }
.service-card h3 { margin-bottom: .55rem; font-size: 1.65rem; }
.service-card p { margin-bottom: 1.25rem; font-size: .94rem; }
.card-link { width: fit-content; margin-top: auto; padding: .35rem 0; background: none; border: 0; color: var(--gold-dark); font-weight: 700; cursor: pointer; }
.card-link span { display: inline-block; transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }

.split-heading { text-align: left; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.gallery-item { padding: 0; overflow: hidden; background: #28221f; border: 0; border-radius: .8rem; cursor: zoom-in; }
.gallery-item picture { display: block; width: 100%; height: 100%; }
.gallery-item img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-item:hover img { transform: scale(1.025); opacity: .9; }
.gallery-wide { grid-column: 1 / -1; }
.gallery-wide img { aspect-ratio: 16 / 8.5; }

.artist-section { background: var(--cream); }
.artist-grid { display: grid; gap: 2rem; align-items: center; }
.artist-image {
  width: min(180px, 52vw);
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(158, 119, 75, .26);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  line-height: 0;
}
.artist-image img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center;
}
.artist-copy { text-align: center; }
.artist-copy h2 { margin-bottom: 1rem; }
.artist-copy h3 { margin-bottom: .5rem; color: var(--gold-dark); }
.artist-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin: 1.8rem 0; }
.artist-points div { padding-top: .9rem; border-top: 1px solid var(--line); }
.artist-points strong, .artist-points span { display: block; }
.artist-points strong { margin-bottom: .2rem; font-family: var(--serif); font-size: 1.4rem; }
.artist-points span { color: var(--muted); font-size: .72rem; line-height: 1.35; }

.reviews-section { background: var(--paper); }
.reviews-grid { display: grid; gap: 1rem; }
blockquote { margin: 0; padding: 1.5rem; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
blockquote p { color: var(--ink-soft); font-family: var(--serif); font-size: 1.45rem; line-height: 1.28; }
blockquote cite { color: var(--muted); font-style: normal; font-weight: 700; }
.stars { margin-bottom: .8rem; color: var(--gold-dark); letter-spacing: .15em; }

.contact-section { background: var(--ink); color: white; padding-bottom: calc(var(--section-space) + 2.5rem); }
.contact-grid { display: grid; gap: 2rem; }
.contact-intro h2 { margin-bottom: 1rem; }
.contact-intro > p:not(.eyebrow) { color: #c9bfb7; }
.contact-details { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-details > * { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.13); }
.contact-details span { color: #a99f97; }
.contact-details strong { color: #f3ebe3; font-size: .94rem; }
.contact-form { padding: 1.2rem; background: #231f1c; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.form-row { display: grid; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: .4rem; color: #e7ddd4; font-size: .83rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .8rem .9rem; background: #181513; color: white; border: 1px solid #504944; border-radius: .55rem; font-size: 16px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8e8580; }
.form-submit { width: 100%; }
.form-note { margin: .8rem 0 0; color: #a99f97; font-size: .76rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.map-wrap { margin-top: 2rem; overflow: hidden; border-radius: var(--radius); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }

.site-footer { padding: 3rem 0 5.5rem; background: #0e0c0b; color: #d7cec5; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-grid p { max-width: 32rem; color: #958b84; }
.footer-grid nav, .footer-contact { display: grid; align-content: start; gap: .55rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: grid; gap: .2rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #7f756f; font-size: .75rem; }

.mobile-action-bar { position: fixed; z-index: 900; inset: auto .7rem .65rem; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: rgba(255,250,244,.96); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 12px 40px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.mobile-action-bar a { padding: .75rem .5rem; color: var(--ink); text-align: center; font-size: .78rem; font-weight: 800; }
.mobile-action-bar a + a { border-left: 1px solid var(--line); }

dialog { color: var(--ink); }
.service-dialog { width: min(100% - 1rem, 640px); max-height: 90svh; margin: auto auto 0; padding: 1.5rem; background: var(--paper); border: 0; border-radius: 1.25rem 1.25rem 0 0; box-shadow: var(--shadow); }
.service-dialog::backdrop, .lightbox::backdrop { background: rgba(12,10,9,.78); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; top: .8rem; right: .8rem; display: grid; width: 42px; aspect-ratio: 1; place-items: center; background: rgba(23,20,18,.07); border: 0; border-radius: 50%; font-size: 1.8rem; cursor: pointer; }
.dialog-icon { display: grid; width: 3.25rem; aspect-ratio: 1; margin-bottom: 1.2rem; place-items: center; background: var(--cream); border-radius: 50%; color: var(--gold-dark); font-family: var(--serif); }
.service-dialog h2 { padding-right: 2rem; font-size: clamp(2.2rem, 9vw, 3.4rem); }
.dialog-note { padding-top: 1rem; border-top: 1px solid var(--line); font-size: .8rem; }
.lightbox { width: min(96vw, 1050px); max-height: 92svh; padding: 0; overflow: hidden; background: transparent; border: 0; }
.lightbox img { width: 100%; max-height: 88svh; object-fit: contain; }
.lightbox-close { z-index: 2; color: white; background: rgba(0,0,0,.55); }

@media (min-width: 620px) {
  .artist-image { width: min(230px, 34vw); }
  .artist-copy { text-align: left; }
  .quick-contact-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-contact-grid > * { padding: 1.1rem 1.25rem; border-right: 1px solid var(--line); border-bottom: 0; }
  .quick-contact-grid > *:last-child { border-right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .service-dialog { margin: auto; border-radius: 1.25rem; padding: 2rem; }
}

@media (min-width: 860px) {
  :root { --header-height: 78px; }
  .menu-button { display: none; }
  .site-nav { position: static; display: flex; align-items: center; gap: 1.25rem; padding: 0; background: transparent; border: 0; transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .55rem 0; font-size: .88rem; }
  .site-nav .button { margin: 0 0 0 .5rem; padding-inline: 1rem; }
  .hero { min-height: 760px; align-items: center; }
  .hero-content { padding-block: 8rem 4rem; }
  .quick-contact-grid > * { padding-inline: 2rem; }
  .section-heading { margin-bottom: 3rem; }
  .split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 3rem; max-width: none; align-items: end; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .service-card { min-height: 255px; padding: 1.6rem; transition: transform .2s ease, box-shadow .2s ease; }
  .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
  .gallery-item img { aspect-ratio: auto; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }
  .artist-grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
  .artist-image {
    width: 300px;
    max-width: 100%;
    margin: 0;
  }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 6rem); }
  .contact-form { padding: 2rem; }
  .map-wrap { margin-top: 4rem; }
  .map-wrap iframe { height: 380px; }
  .mobile-action-bar { display: none; }
  .site-footer { padding-bottom: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* =========================================================
   PearlBrows Luxury Mobile Edition
   Applies only to phone-sized screens. Tablet and desktop
   layouts remain unchanged.
   ========================================================= */
@media (max-width: 619px) {
  :root {
    --section-space: 3rem;
    --side-space: 0.9rem;
    --header-height: 62px;
  }

  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 4.5rem;
  }

  /* Compact sticky header */
  .site-header,
  .site-header.scrolled {
    height: 58px;
  }

  .brand-mark {
    width: 1.9rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    inset: 58px 0 auto;
    padding-block: 0.75rem 1rem;
  }

  .site-nav a {
    padding-block: 0.62rem;
  }

  /* Shorter hero while preserving the same content */
  .hero {
    min-height: 72svh;
  }

  .hero-content {
    padding-block: 4.25rem 2rem;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-copy {
    max-width: 34rem;
    margin-bottom: 1.15rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 0.65rem 0.9rem;
  }

  .hero .button {
    min-height: 44px;
    padding: 0.72rem 1rem;
  }

  .trust-list {
    margin-top: 1.2rem;
    gap: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }

  /* Compress quick-contact strip */
  .quick-contact-grid > * {
    padding-block: 0.72rem;
  }

  .quick-contact span,
  .contact-details span {
    margin-bottom: 0.1rem;
  }

  /* Tighter section rhythm */
  .section {
    padding-block: 3rem;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .section-heading h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .section-heading > p:last-child {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Compact two-column service tiles */
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .service-card {
    min-height: 148px;
    padding: 0.9rem 0.65rem;
    align-content: center;
    text-align: center;
    border-radius: 0.9rem;
  }

  .service-icon {
    width: 2.15rem;
    margin: 0 auto 0.55rem;
    font-size: 1rem;
  }

  .service-card h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.08rem, 4.8vw, 1.35rem);
    line-height: 1.05;
  }

  .service-card p {
    display: none;
  }

  .card-link {
    margin-inline: auto;
    padding: 0.2rem 0;
    font-size: 0.78rem;
  }

  /* Gallery spacing and card density */
  .split-heading {
    gap: 0.65rem;
  }

  .gallery-grid {
    gap: 0.5rem;
  }

  .gallery-item {
    border-radius: 0.68rem;
  }

  /* More compact artist presentation */
  .artist-grid {
    gap: 1.35rem;
  }

  .artist-image {
    width: min(170px, 52vw);
  }

  .artist-copy {
    text-align: center;
  }

  .artist-copy h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(2.05rem, 9vw, 2.9rem);
  }

  .artist-copy h3 {
    margin-bottom: 0.35rem;
  }

  .artist-copy p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .artist-points {
    gap: 0.45rem;
    margin: 1rem 0 1.2rem;
  }

  .artist-points div {
    padding-top: 0.6rem;
  }

  .artist-points strong {
    font-size: 1.2rem;
  }

  .artist-points span {
    font-size: 0.66rem;
  }

  .artist-copy .button {
    min-height: 44px;
    padding: 0.68rem 1rem;
  }

  /* Reviews: shorter cards and tighter text */
  .reviews-grid {
    gap: 0.72rem;
  }

  blockquote {
    padding: 1rem;
    border-radius: 0.9rem;
  }

  blockquote p {
    margin-bottom: 0.7rem;
    font-size: 1.18rem;
    line-height: 1.22;
  }

  .stars {
    margin-bottom: 0.45rem;
    font-size: 0.84rem;
  }

  blockquote cite {
    font-size: 0.78rem;
  }

  /* Contact area: compact details and form */
  .contact-grid {
    gap: 1.35rem;
  }

  .contact-intro h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .contact-intro > p:not(.eyebrow) {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 0.9rem;
    margin-top: 1.1rem;
  }

  .contact-details > * {
    padding-top: 0.65rem;
  }

  .contact-details strong {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .contact-form {
    padding: 0.9rem;
  }

  .field {
    margin-bottom: 0.72rem;
  }

  .field label {
    margin-bottom: 0.25rem;
    font-size: 0.76rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 44px;
    padding: 0.68rem 0.75rem;
  }

  .field textarea {
    min-height: 105px;
  }

  .form-note {
    margin-top: 0.55rem;
  }

  .map-wrap {
    margin-top: 1.25rem;
  }

  .map-wrap iframe {
    height: 240px;
  }

  /* Footer compression */
  .site-footer {
    padding: 2rem 0 4.8rem;
  }

  .footer-grid {
    gap: 1.15rem;
  }

  .footer-brand {
    margin-bottom: 0.55rem;
  }

  .footer-grid p {
    margin-bottom: 0;
    font-size: 0.82rem;
  }

  .footer-grid nav,
  .footer-contact {
    gap: 0.35rem;
  }

  .footer-bottom {
    margin-top: 1rem;
    padding-top: 0.75rem;
  }

  /* Mobile action bar stays thumb-friendly but lighter */
  .mobile-action-bar {
    inset: auto 0.55rem 0.5rem;
  }

  .mobile-action-bar a {
    padding: 0.68rem 0.4rem;
    font-size: 0.74rem;
  }

  /* Service dialog as compact bottom sheet */
  .service-dialog {
    width: min(100% - 0.5rem, 640px);
    max-height: 86svh;
    padding: 1.2rem;
  }

  .service-dialog h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .service-dialog p {
    font-size: 0.9rem;
  }
}

/* Extra-narrow phones: preserve readability */
@media (max-width: 349px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 122px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}


/* Email privacy update */
.quick-contact-grid {
  justify-content: center;
}

@media (min-width: 620px) {
  .quick-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-inline: auto;
  }
}

/* Instagram icon links */
.instagram-link,.footer-instagram{display:inline-flex;align-items:center;gap:.5rem}.instagram-icon{width:1.85rem;height:1.85rem;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s ease}.instagram-link:hover .instagram-icon,.footer-instagram:hover .instagram-icon{transform:scale(1.08)}.instagram-link{margin:0 0 1rem}.instagram-link strong{margin-left:.15rem}@media(max-width:619px){.instagram-icon{width:1.6rem;height:1.6rem}.instagram-link{font-size:.82rem}}


/* Gold Instagram icons */
.instagram-icon {
  color: var(--gold, #b98b58);
  stroke: currentColor;
}

/* Contact Social Media block alignment */
.social-media-block{padding-top:1rem;border-top:1px solid rgba(255,255,255,.13)}
.social-media-block>span{display:block;margin-bottom:.35rem;color:#a99f97;font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase}
.social-media-block .instagram-link{display:inline-flex;align-items:center;gap:.55rem;margin:0;padding:0}
.social-media-block .instagram-link strong{color:#f3ebe3;font-size:.94rem}
@media (min-width:620px){
  .contact-grid{grid-template-columns:minmax(250px,.85fr) minmax(0,1.15fr);align-items:start}
  .contact-details{grid-template-columns:1fr}
}
@media (min-width:860px){
  .contact-grid{grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr)}
}
@media (max-width:619px){
  .social-media-block{padding-top:.65rem}
  .social-media-block .instagram-link strong{font-size:.82rem}
}

/* Footer Instagram placement: directly beneath phone numbers */
.footer-contact .footer-instagram {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: .3rem;
  gap: .5rem;
}
