/* ==========================================================================
   New Roots Life Coaching — base styles & design system
   Plain CSS. No build step, no framework.
   Palette + type scale live in :root below — change them in one place.
   ========================================================================== */

:root {
  /* Greens */
  --forest-900: #1f3a24;
  --forest-800: #2b4a30;
  --forest-700: #3a5f3e;
  --sage-600:   #6f8f6a;
  --sage-300:   #b9cdb0;
  --sage-100:   #e4ecdd;

  /* Paper */
  --cream-50:   #fbf9f2;
  --cream-100:  #f4f0e4;

  /* Gold */
  --gold-600:   #a8853f;  /* decorative only — too light for small text on cream */
  --gold-400:   #c9a961;
  --gold-700:   #7d6027;  /* gold text on cream/sage — 5.58:1 */
  --gold-300:   #e2cd9a;  /* gold text on the forest gradient — 4.65:1 */

  /* Text */
  --ink:        #2c2f2a;
  --ink-muted:  #5c6357;
  --line:       rgba(47, 74, 48, .18);

  /* Shape */
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(31, 58, 36, .06), 0 4px 14px rgba(31, 58, 36, .06);
  --shadow-md:  0 10px 30px rgba(31, 58, 36, .10);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

/* Safety net: a later display rule can otherwise beat the browser's own
   [hidden] styling and leave a "hidden" element on screen. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* clears the sticky header on anchor jumps */
}

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

body {
  margin: 0;
  background-color: var(--cream-50);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-900);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest-700); text-decoration-color: var(--gold-400); text-underline-offset: 3px; }
a:hover { color: var(--forest-900); }

ul { margin: 0 0 1.1em; padding-left: 1.2em; }

strong { color: var(--forest-800); }

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sage-300); color: var(--forest-900); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 780px; }

.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream-100); }
.section--sage  { background: var(--sage-100); }
.section--forest {
  background: linear-gradient(160deg, var(--forest-900), var(--forest-700));
  color: var(--cream-50);
}
.section--forest h2, .section--forest h3 { color: var(--cream-50); }
.section--forest p { color: rgba(251, 249, 242, .86); }

.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: absolute; top: -100px; left: 1rem; z-index: 999;
  background: var(--forest-900); color: var(--cream-50);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 0; color: var(--cream-50); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold-700);
  margin: 0 0 .75rem;
}
.section--forest .eyebrow { color: var(--gold-300); }

.section-head { max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 3.75rem); text-align: center; }
.section-head p { color: var(--ink-muted); font-size: 1.125rem; }
.section--forest .section-head p { color: rgba(251, 249, 242, .82); }

.lead { font-size: 1.1875rem; color: var(--ink-muted); }

.divider { width: 200px; height: 20px; margin: 0 auto 1.5rem; opacity: .9; }

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--forest-800);
  color: var(--cream-50);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--forest-900); color: var(--cream-50); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--forest-800);
  border-color: var(--forest-700);
}
.btn-secondary:hover { background: var(--forest-800); color: var(--cream-50); }

.btn-gold { background: var(--gold-400); color: var(--forest-900); }
.btn-gold:hover { background: #dcc389; color: var(--forest-900); }

.btn-light { background: var(--cream-50); color: var(--forest-900); }
.btn-light:hover { background: #fff; color: var(--forest-900); }

.btn-lg { min-height: 56px; padding: 1rem 2.25rem; font-size: 1.0625rem; }

.btn[disabled], .btn[aria-disabled="true"] { opacity: .6; cursor: not-allowed; transform: none; }

.btn-group { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-group--center { justify-content: center; }

/* --------------------------------------------------------------------------
   Site header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 242, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--forest-900);
}
.brand svg, .brand img { width: 42px; height: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-900);
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--forest-900);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: currentColor; position: relative;
  transition: transform .2s ease, background-color .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
}
.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: .975rem;
  color: var(--forest-800);
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--gold-400); }

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
    padding: 1rem var(--gutter) 1.75rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a:not(.btn) { display: block; padding: .85rem .25rem; min-height: 44px; box-sizing: border-box; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.btn)[aria-current="page"] { color: var(--forest-900); }
  .site-nav li:last-child { margin-top: .9rem; }
  .site-nav .btn { width: 100%; }
}
@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1200px 600px at 50% -10%, #ffffff 0%, var(--cream-50) 45%, var(--cream-100) 100%);
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute; inset-inline: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(228, 236, 221, .55));
  pointer-events: none;
}

.hero-corner {
  position: absolute;
  width: clamp(170px, 26vw, 330px);
  opacity: .5;
  pointer-events: none;
  user-select: none;
}
.hero-corner--tl { top: -10px; left: -30px; }
.hero-corner--tr { top: -10px; right: -30px; transform: scaleX(-1); }
.hero-corner--bl { bottom: -30px; left: -30px; transform: scaleY(-1); }
.hero-corner--br { bottom: -30px; right: -30px; transform: scale(-1, -1); }
@media (max-width: 720px) {
  .hero-corner--bl, .hero-corner--br { display: none; }
  .hero-corner { opacity: .38; }
}

.hero .container { position: relative; z-index: 1; }

.hero-emblem {
  width: clamp(190px, 32vw, 330px);
  margin: 0 auto clamp(1rem, 2vw, 1.75rem);
}

.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--forest-700); font-style: italic; }

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: var(--gold-700);
  margin-bottom: 1.1em;
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: var(--ink-muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .6rem 1.35rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-inline: 0;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--forest-800);
  text-transform: uppercase;
}
.trust-strip li svg { width: 17px; flex: none; }

/* --------------------------------------------------------------------------
   Cards / services
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.9rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Four service cards: one column on phones, a balanced 2x2 from tablet up.
   (auto-fit would give three across at desktop widths and strand the fourth.) */
.grid--services { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .grid--services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }

.card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage-600), var(--gold-400));
  opacity: 0; transition: opacity .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--sage-100);
  border-radius: 50%;
  margin-bottom: 1.1rem;
  color: var(--forest-700);
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: .4em; }

.card-promise {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-700);
  margin-bottom: .9em;
}

.card p { color: var(--ink-muted); font-size: 1rem; }

.leaf-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.leaf-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .65rem;
  font-size: .975rem;
  color: var(--ink);
}
.leaf-list li:last-child { margin-bottom: 0; }
.leaf-list li::before {
  content: "";
  position: absolute; left: 0; top: .42em;
  width: 16px; height: 16px;
  background: url("../img/leaf-bullet.svg") center / contain no-repeat;
}
.section--forest .leaf-list li { color: rgba(251, 249, 242, .9); }

.card-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: .9rem;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps { counter-reset: step; }
.step { position: relative; padding-top: .5rem; }
.step-num {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1px solid var(--gold-400);
  color: var(--gold-600);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.section--forest .step-num { background: rgba(251, 249, 242, .08); }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
}

.about-figure {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-figure figcaption {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest-900);
  margin-top: .75rem;
}
.about-figure .role {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 800;
  display: block;
  margin-top: .25rem;
}

.pull-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0 1.5rem;
  border-left: 3px solid var(--gold-400);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.4;
  color: var(--forest-800);
}

/* --------------------------------------------------------------------------
   FAQ (native details/summary)
   -------------------------------------------------------------------------- */

.faq { max-width: 820px; margin-inline: auto; }

.faq-item {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .85rem;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--sage-300); box-shadow: var(--shadow-sm); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.25rem 1.15rem 1.35rem;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-900);
  min-height: 56px;
  display: flex;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute; right: 1.35rem; top: 50%;
  width: 11px; height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { background: var(--sage-100); }
.faq-answer { padding: 0 1.35rem 1.35rem; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(251, 249, 242, .12);
  color: var(--gold-300);
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list .label {
  display: block;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-300); font-weight: 800;
}
.contact-list a { color: var(--cream-50); font-size: 1.15rem; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(201,169,97,.6); }
.contact-list a:hover { color: #fff; border-bottom-color: var(--gold-400); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: .4em; }
.cta-band .lead { color: rgba(251, 249, 242, .85); max-width: 620px; margin: 0 auto 2rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--forest-900);
  color: rgba(251, 249, 242, .78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .95rem;
}
.site-footer h4 { color: var(--cream-50); font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; color: var(--gold-400); }
.site-footer a { color: rgba(251, 249, 242, .82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 249, 242, .14);
}
.footer-brand .brand-name { color: var(--cream-50); }
/* .brand-sub is tuned for cream; on the dark footer it needs the light gold. */
.site-footer .brand-sub { color: var(--gold-300); }
.footer-brand .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-400);
  font-size: 1.05rem;
  margin-top: .5rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(251, 249, 242, .6);
}
.disclaimer {
  margin-top: 1.75rem;
  padding: 1.15rem 1.35rem;
  background: rgba(251, 249, 242, .06);
  border-left: 3px solid var(--gold-600);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(251, 249, 242, .72);
}
.disclaimer strong { color: var(--cream-50); }

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream-100), var(--sage-100));
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 620px; margin-inline: auto; color: var(--ink-muted); font-size: 1.125rem; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll (progressive enhancement — content is visible without JS)
   -------------------------------------------------------------------------- */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .nav-toggle, .cta-band, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* Line break that only applies on wider screens (used in the hero headline). */
@media (max-width: 620px) { .hide-sm { display: none; } }

/* --------------------------------------------------------------------------
   Phone copy confirmation (progressive enhancement, see main.js)
   -------------------------------------------------------------------------- */

.phone-copy-pill {
  position: absolute;
  z-index: 999;
  background: var(--forest-900);
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-400);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}
.phone-copy-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .phone-copy-pill { transition: none; }
}
