/* =====================================================================
   Las Mañanitas — site.css  v2
   Aesthetic: warm, family-owned Mexican restaurant. Hand-prepared, not
   corporate. Hero photography + saffron/terracotta/deep-green palette,
   refined serif display + clean sans body.
   ===================================================================== */

:root {
  /* Core palette — pulled from sun-baked stucco, mole sauce, agave green */
  --terracotta:     #c2410c;   /* deep cooked terracotta — primary */
  --terracotta-dk:  #9a3308;
  --saffron:        #e8a33d;   /* warm gold — accent */
  --saffron-dk:     #c98421;
  --mole:           #4a1d0e;   /* near-black brown — headers on light bg */
  --agave:          #2d5a3d;   /* deep green — secondary accent */
  --agave-dk:       #1f3f2a;
  --cream:          #fdf6e8;   /* warm cream — page bg */
  --bone:           #f7ead0;   /* slightly deeper section bg */
  --paper:          #ffffff;
  --ink:            #2a1a10;   /* body text */
  --ink-soft:       #6b4f3f;   /* secondary text */
  --line:           #e2cea8;   /* hairlines */
  --rust:           #8b3a14;   /* link hover, decorative */

  /* Typography — distinctive serif display + script accent + clean sans */
  --font-display:   "Playfair Display", "DM Serif Display", Georgia, serif;
  --font-script:    "Sacramento", "Dancing Script", cursive;
  --font-body:      "Inter", "Helvetica Neue", system-ui, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --shadow-soft: 0 2px 12px rgba(42, 26, 16, 0.08);
  --shadow-lift: 0 18px 48px rgba(42, 26, 16, 0.18);
  --shadow-deep: 0 30px 80px rgba(42, 26, 16, 0.30);
}

/* ----- reset / base ----- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--rust); }

/* ----- typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--mole);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; color: var(--terracotta); }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--saffron-dk);
  font-weight: 400;
  display: inline-block;
  margin-bottom: -0.3em;
  transform: rotate(-2deg);
  letter-spacing: 0.02em;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ----- header ----- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(42, 26, 16, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 163, 61, 0.2);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.site-header__logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
}
.site-header__phone {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  text-decoration: none;
}
.site-header__phone:hover { color: var(--saffron); }
.site-header__phone:visited { color: #fff; }

/* Light variant — for non-hero pages */
.site-header--light {
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header--light .site-header__logo { filter: none; }
.site-header--light .site-header__phone { color: var(--terracotta); text-shadow: none; }
.site-header--light .site-header__phone:hover { color: var(--rust); }
.site-header--light .site-nav a { color: var(--ink); text-shadow: none; }
.site-header--light .site-nav a:hover { color: var(--terracotta); }
.site-header--light .site-nav-toggle { background: transparent; color: var(--mole); border-color: var(--line); }

.site-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a:hover { color: var(--saffron); }

.site-nav-toggle {
  display: none;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .site-nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    order: 10;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.7rem 0; }
  .site-nav a::after { display: none; }
  .site-header__inner { flex-wrap: wrap; }
  .site-header--light .site-nav { border-top-color: var(--line); }
}

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(42, 26, 16, 0.55) 0%, rgba(194, 65, 12, 0.30) 50%, rgba(42, 26, 16, 0.50) 100%),
    url("/img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8rem var(--gutter) 5rem;
  width: 100%;
}
.hero__content {
  max-width: 720px;
}
.hero h1 {
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 0.6em;
}
.hero .eyebrow {
  color: var(--saffron);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero p {
  color: white;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Floating callout circle */
.hero__callout {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  z-index: 2;
  width: clamp(180px, 18vw, 240px);
  height: clamp(180px, 18vw, 240px);
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  box-shadow: var(--shadow-deep);
  transform: rotate(-3deg);
  animation: floatCallout 5s ease-in-out infinite;
}
.hero__callout::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed var(--saffron);
  border-radius: 50%;
  pointer-events: none;
}
.hero__callout-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--saffron-dk);
  margin-bottom: 0.25rem;
}
.hero__callout-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--mole);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__callout .btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

@keyframes floatCallout {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-8px); }
}

@media (max-width: 800px) {
  .hero__callout { display: none; }
  .hero { min-height: 75vh; min-height: 75dvh; }
  .hero__inner { padding-top: 6rem; padding-bottom: 4rem; }
}

/* Page hero (smaller, for non-home pages) */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 5rem var(--gutter) 3rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 29, 14, 0.85), rgba(194, 65, 12, 0.7)),
    var(--mole);
  z-index: 0;
}
.page-hero__bg--photo {
  background-image:
    linear-gradient(135deg, rgba(74, 29, 14, 0.7), rgba(194, 65, 12, 0.55)),
    url("/img/page-hero.jpg");
  background-size: cover;
  background-position: center;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.page-hero h1 {
  color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.page-hero .eyebrow { color: var(--saffron); }
.page-hero .lead { color: rgba(255,255,255,0.9); margin-inline: auto; }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: white;
  border: 2px solid var(--terracotta);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn:hover {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.btn--ghost {
  background: transparent;
  color: white;
  border-color: white;
}
.btn--ghost:hover {
  background: white;
  color: var(--terracotta);
}
.btn--saffron {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--mole);
}
.btn--saffron:hover {
  background: var(--saffron-dk);
  border-color: var(--saffron-dk);
  color: var(--mole);
}
.btn--green {
  background: var(--agave);
  border-color: var(--agave);
}
.btn--green:hover {
  background: var(--agave-dk);
  border-color: var(--agave-dk);
}

/* ----- containers / sections ----- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bone); }
.section--mole {
  background: var(--mole);
  color: var(--cream);
}
.section--mole h1, .section--mole h2, .section--mole h3 { color: var(--saffron); }
.section--mole .lead { color: rgba(253, 246, 232, 0.85); }
.section--mole .eyebrow { color: var(--saffron); }

.section__head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section__head .eyebrow { display: block; margin-bottom: 0.4rem; }

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--saffron-dk);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  flex: 0 0 60px;
  background: var(--saffron);
  opacity: 0.6;
}
.divider__diamond {
  width: 8px; height: 8px;
  background: var(--saffron);
  transform: rotate(45deg);
}

/* ----- alternating image/text rows (story) ----- */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.story:last-child { margin-bottom: 0; }
@media (min-width: 800px) {
  .story { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .story--reverse > .story__media { order: 2; }
}
.story__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3;
  background: var(--bone);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74, 29, 14, 0.15));
  pointer-events: none;
}
.story__body h3 {
  margin-top: 0;
}
.story__body .eyebrow { display: block; margin-bottom: 0.3em; }

/* ----- gallery ----- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
}
.gallery__item {
  overflow: hidden;
  border-radius: 4px;
  background: var(--bone);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall img { min-height: 100%; }
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 700px) {
  .gallery__item--tall, .gallery__item--wide { grid-row: span 1; grid-column: span 1; }
}

/* Uniform grid — equal-sized tiles for food section */
.gallery--uniform {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  gap: 0.75rem;
}
.gallery--uniform .gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery--uniform .gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 700px) {
  .gallery--uniform { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery--uniform { grid-template-columns: 1fr; }
}

/* ----- info block ----- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.info-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.info-block__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--terracotta);
}
.info-block h3 {
  font-size: 1.15rem;
  color: var(--mole);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.info-block h3 + p { color: var(--ink-soft); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.4rem 0; font-size: 0.95rem; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr:last-child td { border-bottom: none; }

/* ----- menu page ----- */
.menu-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-section:last-child { border-bottom: none; }
.menu-section h2 {
  color: var(--terracotta);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}
.menu-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin-top: 0.5rem;
}
.menu-section__intro {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dotted var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__main { flex: 1; min-width: 0; }
.menu-item__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mole);
  font-size: 1.15rem;
  display: block;
  letter-spacing: 0.01em;
}
.menu-item__desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  display: block;
  margin-top: 0.25rem;
  line-height: 1.5;
}
.menu-item__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
  font-size: 1.15rem;
}
.menu-item__price--mq {
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ----- FAQ accordion ----- */
.faq { margin-top: 1.5rem; max-width: 800px; margin-inline: auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--saffron); }
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--mole);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--terracotta);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

/* ----- footer ----- */
.site-footer {
  background: var(--mole);
  color: var(--cream);
  padding: 4rem var(--gutter) 1.5rem;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}
.site-footer p { font-size: 0.95rem; color: rgba(253, 246, 232, 0.85); }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--saffron); }
.site-footer__logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  transition: background 0.2s, color 0.2s;
}
.site-footer__social a:hover {
  background: var(--saffron);
  color: var(--mole);
}
.site-footer__social svg {
  width: 18px;
  height: 18px;
}
.site-footer__legal {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 163, 61, 0.2);
  color: rgba(253, 246, 232, 0.5);
  font-size: 0.85rem;
}

/* ----- utility ----- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.disclaimer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 800px;
}
.tag {
  display: inline-block;
  background: var(--saffron);
  color: var(--mole);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Subtle decorative texture for cream sections */
.has-paper-bg {
  background-image:
    radial-gradient(at 20% 30%, rgba(232, 163, 61, 0.08) 0, transparent 50%),
    radial-gradient(at 80% 70%, rgba(45, 90, 61, 0.05) 0, transparent 50%);
  background-color: var(--cream);
}

/* ----- contact form ----- */
.info-block a { word-break: break-all; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 700px; margin: 0 auto; }
.form-grid--full { grid-column: 1 / -1; }
.form-label { display: block; font-weight: 600; color: var(--mole); margin-bottom: 0.35rem; font-size: 0.95rem; }
.form-label span { color: var(--terracotta); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--line); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: #fff;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-select { appearance: auto; }
.form-row { margin-bottom: 0; }
.form-hidden { display: none; }
.form-msg { text-align: center; padding: 1rem; border-radius: 6px; margin-top: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.form-msg--ok { background: #e8f5e9; color: #2d5a3d; border: 1px solid #a5d6a7; }
.form-msg--err { background: #fbe9e7; color: #c2410c; border: 1px solid #ffccbc; }
.form-submit { margin-top: 1.5rem; text-align: center; }
.form-submit .btn { min-width: 220px; }
.form-submit .btn:disabled { opacity: 0.6; cursor: not-allowed; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ----- hours table fix ----- */
.info-block .hours-table td:first-child { white-space: nowrap; padding-right: 1rem; }
.info-block .hours-table td:last-child { white-space: nowrap; text-align: right; }

/* ----- force header phone white ----- */
.site-header .site-header__phone,
.site-header .site-header__phone:link,
.site-header .site-header__phone:visited {
  color: #fff;
}
