:root {
  --ink: #132b33;
  --ink-soft: #47616a;
  --cream: #f5f1e9;
  --paper: #fffdf9;
  --mist: #e5efed;
  --sea: #1d6f72;
  --sea-deep: #115357;
  --ochre: #d6a75c;
  --line: rgba(19, 43, 51, .13);
  --shadow: 0 20px 56px rgba(19, 43, 51, .12);
  --radius: 1.55rem;
  --max: 74rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 99;
  padding: .72rem 1rem; border-radius: .5rem; background: var(--ink); color: #fff;
}
.skip-link:focus { top: 1rem; }

.announcement {
  background: var(--ink); color: #f8f6ef; font-size: .78rem; letter-spacing: .045em;
}
.announcement .inner {
  width: min(calc(100% - 2rem), var(--max)); margin: auto; min-height: 2.55rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.announcement a { color: #fff; text-decoration-color: rgba(255,255,255,.55); text-underline-offset: .18em; }

.site-header { position: sticky; top: 0; z-index: 40; background: linear-gradient(180deg, rgba(229,239,237,.98), rgba(245,241,233,.96)); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(29,111,114,.2); box-shadow: 0 5px 16px rgba(19,43,51,.08); }
.nav-wrap { width: min(calc(100% - 2rem), var(--max)); margin: auto; min-height: 5.15rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--sea); font-family: Georgia, serif; font-size: 1.17rem; line-height: 1; box-shadow: inset 0 0 0 1px rgba(255,255,255,.32); }
.brand-mark--official { overflow: hidden; padding: 0; line-height: 0; background: #020200; box-shadow: none; }
.brand-mark--official img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: .02rem; text-transform: uppercase; letter-spacing: .08em; line-height: 1.12; font-size: .74rem; font-weight: 800; }
.brand-copy small { font-size: .59rem; font-weight: 600; letter-spacing: .12em; color: var(--ink-soft); }
.site-nav { display: flex; align-items: center; gap: 1.3rem; }
.site-nav > a { color: var(--ink-soft); text-decoration: none; font-size: .88rem; font-weight: 700; padding: .5rem 0; position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: .1rem; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--sea); transition: transform .2s ease; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 2.75rem; padding: .72rem 1rem; border: 1px solid var(--sea); border-radius: 999px; background: var(--sea); color: #fff; text-decoration: none; font-weight: 800; font-size: .86rem; line-height: 1; box-shadow: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.site-nav .nav-cta:hover, .button:hover { transform: translateY(-2px); background: var(--sea-deep); border-color: var(--sea-deep); }
.button--light { background: transparent; color: var(--ink); border-color: rgba(19, 43, 51, .35); }
.button--light:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.button--cream { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.button--cream:hover { background: #fff; border-color: #fff; color: var(--sea-deep); }
.phone-link { color: inherit; font-weight: 850; text-decoration-line: underline; text-decoration-thickness: 2px; text-underline-offset: .34em; text-decoration-color: currentColor; }
.phone-link span { display: inline-block; margin-left: .28rem; transition: transform .2s ease; }
.phone-link:hover span { transform: translateX(.24rem); }
.phone-link--cream { color: var(--cream); }
.phone-link--ink { color: var(--ink); }
.menu-toggle { display: none; width: auto; min-width: 3.1rem; height: 3rem; padding: .35rem .55rem; border: 1px solid rgba(29,111,114,.3); border-radius: .75rem; background: var(--mist); color: var(--ink); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; content: ""; width: 1.2rem; height: 2px; margin: .22rem auto; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(.44rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-.44rem) rotate(-45deg); }

main { overflow: hidden; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: auto; }
.section { padding: clamp(4.2rem, 8vw, 7.2rem) 0; }
.section--cream { background: var(--cream); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #fff; }
.eyebrow { margin: 0 0 .8rem; color: var(--sea); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section--ink .eyebrow { color: #b4d8d3; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.047em; line-height: 1.05; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { max-width: 10.2ch; font-size: clamp(3.1rem, 6.5vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.1rem); max-width: 14ch; }
h3 { font-size: 1.18rem; font-weight: 800; letter-spacing: -.025em; }
.lede { max-width: 38rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.23rem); }
.section--ink .lede { color: rgba(255,255,255,.74); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.1rem, 4vw, 3.7rem); }
.section-head .lede { margin-bottom: .3rem; }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::after { content: ""; position: absolute; width: 27rem; height: 27rem; right: -12rem; top: 7rem; border-radius: 50%; background: #d2e5e1; filter: blur(1px); opacity: .78; }
.hero-grid { position: relative; z-index: 1; width: min(calc(100% - 2rem), var(--max)); min-height: min(46rem, calc(100vh - 7.7rem)); margin: auto; display: grid; grid-template-columns: minmax(0, .95fr) minmax(22rem, .9fr); align-items: center; gap: clamp(2rem, 7vw, 7rem); padding: 4rem 0 5rem; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lede { margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.3rem; margin: 2.25rem 0 0; color: var(--ink-soft); font-size: .85rem; }
.hero-meta span { display: inline-flex; gap: .45rem; align-items: center; }
.hero-meta span::before { content: ""; width: .45rem; height: .45rem; border-radius: 50%; background: var(--ochre); }
.hero-visual { position: relative; min-height: 34rem; }
.hero-photo { position: absolute; inset: 1rem 0 0 2.5rem; height: calc(100% - 1rem); border-radius: 11rem 11rem 1.3rem 1.3rem; overflow: hidden; box-shadow: var(--shadow); background: #e8ece8; }
.hero-photo img { height: 100%; object-fit: cover; object-position: 64% 50%; filter: saturate(.85); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(18, 71, 72, .07), transparent 55%); pointer-events: none; }
.hero-stamp { position: absolute; left: 0; bottom: 2.6rem; z-index: 2; width: 9.8rem; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; padding: 1.2rem; color: var(--ink); background: var(--ochre); text-align: center; font-size: .74rem; line-height: 1.25; font-weight: 800; transform: rotate(-10deg); box-shadow: 0 10px 30px rgba(91,65,22,.16); }
.hero-stamp span { display: block; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400; margin-bottom: .15rem; }

.value-strip { background: var(--sea-deep); color: #fff; }
.value-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.value { min-height: 9.75rem; padding: 2rem clamp(1rem, 4vw, 3rem); display: grid; align-content: center; gap: .35rem; border-right: 1px solid rgba(255,255,255,.17); }
.value:last-child { border-right: 0; }
.value strong { font-family: Georgia, serif; font-size: clamp(1.55rem, 2.5vw, 2.1rem); font-weight: 400; letter-spacing: -.04em; }
.value span { color: rgba(255,255,255,.72); font-size: .83rem; }

.feature-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.image-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #d8dfdd; }
.image-frame img { height: 100%; object-fit: cover; }
.image-frame--tall { height: 31rem; }
.image-frame--tall img { object-position: 58% center; }
.image-frame--wide { height: 25rem; }
.image-frame--wide img { object-position: center 48%; }
.service-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service-list a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: clamp(1.14rem, 1.7vw, 1.37rem); font-weight: 750; }
.service-list a span { flex-shrink: 0; color: var(--sea); font-size: 1.3rem; transition: transform .2s ease; }
.service-list a:hover span { transform: translateX(.3rem); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mini-cards { grid-template-columns: 1fr 1fr; margin-top: 2rem; }
.card { padding: 1.65rem; border: 1px solid var(--line); border-radius: 1.15rem; background: rgba(255,255,255,.5); }
.card-number { display: inline-grid; place-items: center; width: 2.2rem; height: 2.2rem; margin-bottom: 1.7rem; border-radius: 50%; color: var(--sea-deep); background: #cde3df; font-size: .75rem; font-weight: 900; }
.card p { margin-bottom: 0; color: var(--ink-soft); font-size: .93rem; }
.card--plain { background: #fff; }
.card--plain p { color: var(--ink-soft); }

.callout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius); color: #fff; background: var(--sea); }
.callout h2 { max-width: 13ch; margin-bottom: .7rem; }
.callout p { max-width: 38rem; margin-bottom: 0; color: rgba(255,255,255,.77); }

.page-hero { position: relative; overflow: hidden; padding: clamp(4.6rem, 9vw, 8.5rem) 0 clamp(3.6rem, 7vw, 6.5rem); background: var(--cream); }
.page-hero::after { content: ""; position: absolute; width: 34rem; height: 34rem; right: -18rem; bottom: -18rem; z-index: 0; border-radius: 50%; background: #d4e5e2; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumb { display: inline-flex; gap: .5rem; align-items: center; margin-bottom: 1.35rem; color: var(--ink-soft); font-size: .81rem; }
.breadcrumb a { text-decoration-color: rgba(19,43,51,.35); text-underline-offset: .17em; }
.breadcrumb span { color: var(--sea); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card { min-height: 16.8rem; padding: clamp(1.45rem, 3vw, 2.25rem); border-radius: 1.25rem; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.service-card .tag { display: inline-block; margin-bottom: auto; padding: .32rem .6rem; border-radius: 999px; color: var(--sea-deep); background: var(--mist); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-card h3 { margin: 1.2rem 0 .55rem; font-size: 1.38rem; }
.service-card p { color: var(--ink-soft); font-size: .93rem; margin-bottom: 0; }
.note { margin-top: 1.25rem; padding: 1rem 1.1rem; border-left: 3px solid var(--ochre); background: #fffaf1; color: var(--ink-soft); font-size: .89rem; }

.split-panel { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 31rem; border-radius: var(--radius); overflow: hidden; background: var(--ink); color: #fff; }
.split-panel__image { min-height: 20rem; }
.split-panel__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75); }
.split-panel__copy { padding: clamp(2rem, 6vw, 5rem); display: grid; align-content: center; }
.split-panel__copy .eyebrow { color: #b5dbd7; }
.split-panel__copy h2 { margin-bottom: 1rem; }
.split-panel__copy p { max-width: 31rem; color: rgba(255,255,255,.74); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: steps; }
.step { padding: 1.5rem 1.6rem 1rem 0; border-top: 1px solid rgba(255,255,255,.35); counter-increment: steps; }
.step:not(:last-child) { margin-right: 1.5rem; }
.step::before { content: "0" counter(steps); display: block; margin: 1rem 0 2.5rem; color: #c4e2dd; font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.step h3 { margin-bottom: .6rem; }
.step p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: .91rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.team-card { min-height: 16rem; padding: 1.65rem; border-radius: 1.1rem; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.team-card .role { margin: 0 0 auto; color: var(--sea); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.team-card h3 { margin: 2.5rem 0 .45rem; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.team-card p { color: var(--ink-soft); font-size: .91rem; margin-bottom: 0; }
.team-card--feature { background: var(--sea); color: #fff; border: 0; }
.team-card--feature .role { color: #c8e6e1; }
.team-card--feature p { color: rgba(255,255,255,.72); }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem .1rem; list-style: none; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; flex-shrink: 0; color: var(--sea); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.accordion details[open] summary::after { content: "−"; }
.accordion .answer { max-width: 46rem; padding: 0 .1rem 1.35rem; color: var(--ink-soft); font-size: .94rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-block { padding: 1.45rem 0; border-bottom: 1px solid var(--line); }
.contact-block:first-of-type { border-top: 1px solid var(--line); }
.contact-block strong { display: block; margin-bottom: .35rem; font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-block a { color: var(--sea-deep); font-weight: 750; text-underline-offset: .18em; }
.hours { margin: .1rem 0 0; padding: 0; list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .26rem 0; color: var(--ink-soft); }
.form-card { padding: clamp(1.4rem, 4vw, 2.6rem); border-radius: var(--radius); background: var(--ink); color: #fff; }
.form-card h2 { margin-bottom: .75rem; font-family: Georgia, serif; font-size: clamp(2rem, 3.5vw, 3rem); }
.form-card > p { color: rgba(255,255,255,.72); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1.6rem; }
.form-field { display: grid; gap: .4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 800; }
.form-field input, .form-field textarea { width: 100%; padding: .75rem .8rem; border: 1px solid rgba(255,255,255,.28); border-radius: .55rem; color: #fff; background: rgba(255,255,255,.08); outline: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.54); }
.form-field input:focus, .form-field textarea:focus { border-color: #b5ded8; box-shadow: 0 0 0 3px rgba(181,222,216,.18); }
.form-field textarea { min-height: 7.3rem; resize: vertical; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.form-actions .button { border-color: #fff; background: #fff; color: var(--sea-deep); }
.form-actions .button:hover { background: #d8eeea; border-color: #d8eeea; }
.form-notice { margin: 0; color: #d4eeea; font-size: .82rem; }
.form-privacy { color: rgba(255,255,255,.58); font-size: .76rem; }

.cta-band { background: var(--ochre); }
.cta-band .container { min-height: 13rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin: 0; max-width: 16ch; font-size: clamp(2rem, 4vw, 3.7rem); }
.cta-band .button { background: var(--ink); border-color: var(--ink); }

.site-footer { background: #0d242b; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .9fr; gap: 2rem; padding: 4.25rem 0 2.4rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .72rem; margin-bottom: 1rem; }
.footer-brand .brand-mark { background: #d5ad69; color: var(--ink); }
.footer-brand .brand-copy small { color: rgba(255,255,255,.58); }
.footer-blurb { max-width: 26rem; margin-bottom: 0; color: rgba(255,255,255,.66); font-size: .9rem; }
.footer-title { margin: 0 0 .9rem; color: #b7d8d4; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-nav { display: grid; gap: .5rem; }
.footer-nav a { color: rgba(255,255,255,.79); text-decoration-color: rgba(255,255,255,.3); text-underline-offset: .17em; font-size: .9rem; }
.footer-contact { color: rgba(255,255,255,.79); font-size: .9rem; }
.footer-contact a { color: #fff; text-underline-offset: .17em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.51); font-size: .73rem; }

:focus-visible { outline: 3px solid #d09d45; outline-offset: 3px; }

@media (max-width: 860px) {
  .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .6rem); z-index: 2; display: none; padding: .65rem; border: 1px solid var(--line); border-radius: 1rem; background: #fffdf9; box-shadow: var(--shadow); }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav > a { padding: .86rem .8rem; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin: .2rem; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 4rem; }
  .hero-copy { max-width: 40rem; }
  .hero-visual { min-height: 28rem; max-width: 34rem; width: min(100%, 34rem); margin-left: auto; }
  .feature-grid, .split-panel, .contact-grid { grid-template-columns: 1fr; }
  .split-panel__image { min-height: 23rem; }
  .section-head { display: block; }
  .section-head .lede { margin-top: 1rem; }
  .cards, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .announcement .inner { min-height: 2.7rem; justify-content: center; text-align: center; }
  .announcement .inner span { display: none; }
  .nav-wrap { min-height: 4.65rem; }
  .brand-copy { font-size: .68rem; }
  .brand-copy small { font-size: .55rem; }
  .hero-grid { padding: 3.6rem 0 4rem; gap: 1.6rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: .9rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 24rem; }
  .hero-photo { inset: 0 0 0 1.25rem; border-radius: 7.5rem 7.5rem 1.15rem 1.15rem; }
  .hero-stamp { left: -.1rem; bottom: 1.35rem; width: 7.4rem; font-size: .62rem; }
  .hero-stamp span { font-size: 1rem; }
  /* Keep the page-hero decoration clear of the mobile copy and next section. */
  .page-hero::after { width: 11rem; height: 11rem; right: -5.5rem; bottom: -5.5rem; opacity: .46; }
  .value-strip .container { grid-template-columns: 1fr; }
  .value { min-height: 0; padding: 1.6rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .value:last-child { border-bottom: 0; }
  .cards, .service-grid, .team-grid, .mini-cards { grid-template-columns: 1fr; }
  .image-frame--tall { height: 26rem; }
  .image-frame--wide { height: 17rem; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child) { margin-right: 0; }
  .step::before { margin: .3rem 0 1.4rem; }
  .callout, .cta-band .container { grid-template-columns: 1fr; display: grid; }
  .callout { gap: 1.8rem; }
  .cta-band .container { align-content: center; padding: 2.8rem 0; }
  .phone-link { display: inline-flex; align-items: center; min-height: 2.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 3.3rem; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
/* Desktop phone numbers remain readable text; mobile restores tap-to-call. */
@media (min-width: 861px) {
  a[data-phone-desktop="true"] {
    display: inline !important;
    color: inherit !important;
    background: transparent !important;
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    pointer-events: none !important;
    cursor: default !important;
  }

  a[data-phone-desktop="true"]::before,
  a[data-phone-desktop="true"]::after,
  a[data-phone-desktop="true"] [aria-hidden="true"] {
    content: none !important;
    display: none !important;
  }
}
