/* =========================
   RESET & BASE
   ========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --primary-color: #2e5f84;
  --accent-color: #c48416;
  --accent-2: #640505;
  --text-color: #333;
  --bg: #fff;
  --shadow-1: 0 4px 6px rgba(0,0,0,.1);
  --shadow-2: 0 6px 12px rgba(0,0,0,.15);

  --header-top-h: 72px;  /* reserved top row */
  --header-nav-h: 48px;  /* reserved desktop nav row */
  --header-z: 5000;
}

html, body { height: 100%; }

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg);
}

img, video{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

button{ font: inherit; }

/* SR-only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   HEADER (Sticky, CLS-safe)
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: var(--header-z);
  background: #fff;
  border-bottom: 3px solid var(--accent-2);
}

/* Row 1: fixed reserved height */
.header-row--top{
  min-height: var(--header-top-h);
  display: grid;
  grid-template-columns: 200px 1fr 260px;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}

.header-logo img{
  display:block;
  width:165px;
  height:16px;
}

.header-title{
  text-align: center;
  line-height: 1.1;
  overflow: hidden;
}

#company-title{
  font-weight: 100;
  letter-spacing: 3px;
  font-size: 28px;
  white-space: nowrap;
}

#location-maker-1{
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 16px;
  white-space: nowrap;
}

.header-actions{
  display:flex;
  justify-content: flex-end;
  align-items:center;
  gap: 10px;
}

/* Phone (always visible) */
.header-phone{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: underline;
  white-space: nowrap;
}
.header-phone:hover{ color: var(--accent-color); }
.header-phone:visited{ color: var(--accent-2); }

/* Reserve icon space regardless of FA load */
.phone-icon{
  width: 16px;
  height: 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 16px;
}
.phone-icon i{
  display:inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
}

/* Hamburger fixed box */
.nav-toggle{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  background: transparent;
  display: none; /* mobile only */
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle .hamburger{
  font-size: 24px;
  line-height: 1;
}

/* Row 2: desktop nav row fixed reserved height */
/* Row 2: desktop nav row fixed reserved height */
.header-row--nav{
  min-height: var(--header-nav-h);
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--primary-color);
}

.nav-list{
  list-style:none;
  margin:0;
  padding:0 10px;
  display:flex;
  gap: 18px;
  align-items:center;
  height: var(--header-nav-h);
}

.nav-list a{
  display:inline-flex;
  align-items:center;
  height: var(--header-nav-h);
  padding: 0 10px;
  color:#fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 100;
  border-radius: 10px;
}

/* Hover (desktop) */
@media (hover:hover) and (pointer:fine){
  .nav-list a:hover{
    background: linear-gradient(45deg, var(--accent-color), var(--accent-2));
    background-size: 200% 200%;
    animation: gradient-bg .5s ease;
  }
}

/* Mobile slide-down panel (out of flow) */
.nav-panel{
  position: absolute;   /* CHANGED */
  left: 0;
  right: 0;
  top: 100%;            /* ALWAYS sits under header */
  z-index: calc(var(--header-z) + 1);

  background: var(--primary-color);
  border-bottom: 3px solid var(--accent-2);

  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}


.nav-panel.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-panel-list{
  list-style:none;
  margin:0;
  padding: 10px 0;
}

.nav-panel-list a{
  display:block;
  width: 100%;
  padding: 12px 18px;
  color:#fff;
  background: transparent;
  border: 0;
  text-align:left;
  border-top: 1px solid rgba(255,255,255,.12);
}


/* =========================
   Mobile layout (<= 760px)
   - No overlap: panel top matches reserved header height
   ========================= */
@media (max-width: 760px){


  /* 2) Make the top row match the reserved height */
  .header-row--top{
    min-height: var(--header-top-h);
    height: var(--header-top-h);
    grid-template-columns: 180px 1fr 140px;
    padding: 8px 12px;
    align-items: center;
  }

  /* 3) Hide desktop nav row + show hamburger */
  .header-row--nav{ display:none; }
  .nav-toggle{ display:inline-flex; }

  /* 4) Phone: keep link visible, hide text (icon remains) */
  .header-phone .phone-text{ display:none; }

  

  /* 6) Type sizing */
  #company-title{ font-size: 18px; letter-spacing: 2px; }
  #location-maker-1{ font-size: 13px; letter-spacing: 1px; }
}


/* =========================
   HERO (Real IMG, CLS-safe)
   ========================= */
/* =========================
   HERO (Real IMG, CLS-safe, no spill)
   ========================= */
.hero{
  display: grid;                 /* key fix: grid lets section expand */
  width: 100%;
  background: #e5e5e5;
  margin-bottom: 24px; /* HARD STOP between hero and next section */
}


/* Layer both image + overlay in the same grid cell */
.hero-img,
.hero-overlay{
  grid-area: 1 / 1;
}

/* IMG participates in layout; width/height attrs in HTML prevent CLS */
.hero-img{
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay is NO LONGER absolute (prevents spilling over next sections) */
.hero-overlay{
  position: relative;            /* key fix */
  inset: auto;                   /* safety: neutralize absolute props */
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* Card */
.hero-card{
  width: min(760px, 100%);
  background: rgba(46,95,132,.82);
  color:#fff;
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  padding: 18px 18px 16px;
}

/* Mobile: reduce padding/font so the card fits better */
@media (max-width: 760px){
  .hero-overlay{ padding: 12px; }
  .hero-card{ padding: 14px 14px 12px; }

  .hero-card h1{
    font-size: 24px;
    line-height: 1.12;
  }
}

.hero-card h1{
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 1.15;
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-card p{
  color: rgba(255,255,255,.95);
  margin-bottom: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(45deg, #2e5f84, #c48416); /* brand blue → brand gold */
  background-size: 200% 200%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    background-position 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background-position: 200% 200%;
    animation: gradient-bg 0.5s ease;
    border-color: #c48416;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  }
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-primary:focus-visible {
  outline: 2px solid #c48416;
  outline-offset: 3px;
}

@keyframes gradient-bg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}


/* =========================
   SERVICES (simple, CLS-safe)
   ========================= */
.services{
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 14px 18px;
}

.services h2{
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 14px;
}

.service-grid{
  list-style:none;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.service-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  overflow:hidden;
  box-shadow: var(--shadow-1);
  background: #fff;
}

.service-card img{
  width: 100%;
  height: auto;
}

.service-card h3{
  font-size: 18px;
  padding: 12px 12px 4px;
}

.service-card h3 a{
  color: var(--primary-color);
  text-decoration: none;
}

.service-card p{
  padding: 0 12px 14px;
  color: #444;
}

@keyframes gradient-bg {
  0% { background-position: 0 0; }
  100% { background-position: 200% 200%; }
}
/* =========================
   ABOUT SECTION (replaces pricing-item styles)
   CLS-safe: grid, no floats
   ========================= */

/* Section wrapper */
.about{
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 14px 18px;
}

/* Inner grid: 1 column mobile, 2 columns desktop */
.about-inner{
  display: grid;
  gap: 18px;
}

/* Cards */
.about-card{
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  padding: 20px;
}

/* Title (replaces header_12) */
.about-title{
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 200;
  letter-spacing: 2px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}

/* Content layout inside each card:
   media left, text right (desktop), stack (mobile) */
.about-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 18px;
  align-items: start;
}

/* Make the title span full width */
.about-card > .about-title{
  grid-column: 1 / -1;
}

/* Media: fixed column width prevents reflow; explicit size prevents CLS */
.about-media{
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Ensure link-wrapped image doesn’t introduce inline gaps */
.about-media-link{
  display: block;
}

/* Text */
.about-text{
  color: #555;
  margin: 0 0 12px 0;
}

/* Put paragraphs in the text column */
.about-card > .about-text{
  grid-column: 2 / -1;
}

/* If a card has no link wrapper, image still sits left */
.about-card > .about-media{
  grid-column: 1 / 2;
}

/* If image is wrapped in a link */
.about-card > .about-media-link{
  grid-column: 1 / 2;
}

/* Remove last paragraph extra space */
.about-card > .about-text:last-of-type{
  margin-bottom: 0;
}

/* Responsive: stack media above text on mobile */
@media (max-width: 760px){
  .about-card{
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .about-card > .about-media,
  .about-card > .about-media-link{
    grid-column: 1 / -1;
  }

  .about-card > .about-text{
    grid-column: 1 / -1;
  }

  .about-title{
    font-size: 18px;
  }

  .about-text{
    font-size: 14px;
  }
}

@media (min-width: 761px) and (max-width: 1024px){
  .about-title{ font-size: 20px; }
  .about-text{ font-size: 16px; }
}

@media (min-width: 1025px){
  .about-title{ font-size: 22px; }
  .about-text{ font-size: 18px; }
}
.internal-link {
  color: #2e5f84; /* brand blue */
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 95, 132, 0.35); /* subtle underline */
  padding-bottom: 0.05em;
  font-weight: 500;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

/* Keep visited links same color as normal (no purple) */
.internal-link:visited {
  color: #2e5f84;
  border-bottom-color: rgba(46, 95, 132, 0.35);
}

/* Hover + focus states */
.internal-link:hover,
.internal-link:focus-visible {
  color: #c48416; /* brand gold on interaction */
  border-bottom-color: #c48416;
  background-color: rgba(196, 132, 22, 0.06); /* very light gold highlight */
}

/* Keyboard focus outline for accessibility */
.internal-link:focus-visible {
  outline: 2px solid #c48416;
  outline-offset: 2px;
}
/* Give anchor targets some top scroll margin to clear sticky header */
#warranty {
  scroll-margin-top: 5rem; /* adjust based on your header height */
}

/* =========================
   LATEST PROJECT (same system as ABOUT)
   CLS-safe: grid, explicit image dims
   ========================= */

.latest-project{
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 14px 18px;
}

.latest-project__inner{
  display: grid;
  gap: 18px;
}

/* Card matches .about-card look */
.latest-project__card{
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  padding: 20px;

  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 18px;
  align-items: start;
}

.latest-project__title{
  grid-column: 1 / -1;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 200;
  letter-spacing: 2px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}

/* Media */
.latest-project__media-link{
  grid-column: 1 / 2;
  display: block;
}

.latest-project__media{
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Text aligned with the text column */
.latest-project__text{
  grid-column: 2 / -1;
  color: #555;
  margin: 0 0 12px 0;
}

.latest-project__text:last-of-type{
  margin-bottom: 0;
}

.latest-project__link{
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 700;
}

.latest-project__link:hover{
  color: var(--accent-color);
}

/* Mobile: stack like ABOUT */
@media (max-width: 760px){
  .latest-project__card{
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .latest-project__media-link{
    grid-column: 1 / -1;
  }

  .latest-project__text{
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .latest-project__title{
    font-size: 18px;
  }
}

@media (min-width: 761px) and (max-width: 1024px){
  .latest-project__title{ font-size: 20px; }
  .latest-project__text{ font-size: 16px; }
}

@media (min-width: 1025px){
  .latest-project__title{ font-size: 22px; }
  .latest-project__text{ font-size: 18px; }
}

/* =========================
   BOOKING SECTION and REVIEWS
   ========================= */
.booking-section {
  padding: 3rem 1.5rem;
  background-color: #f7f8fb;
}

.booking-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr); /* left + right */
  gap: 2.5rem;
  align-items: flex-start;
}

.booking-copy {
  order: 1;
}

.booking-heading {
  color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 200;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.2;
    font-size:32px;
  
}

.booking-text {
  margin: 0 0 0.75rem;
  color: #384047;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Reusable primary booking button */
.btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(45deg, #2e5f84, #c48416); /* brand blue → brand gold */
  background-size: 200% 200%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    background-position 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-booking:hover {
    background-position: 200% 200%;
    animation: gradient-bg 0.5s ease;
    border-color: #c48416;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  }
}

.btn-booking:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-booking:focus-visible {
  outline: 2px solid #c48416;
  outline-offset: 3px;
}

@keyframes gradient-bg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

/* Phone call link under booking button */
#call-link,
.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;       /* center text + icon */
  gap: 0.35rem;
  margin-top: 1rem;              /* space below Book Now button */
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--primary-color);   /* brand blue */
  text-decoration: none;
  text-align: center;
}

#call-link:hover,
#call-link:focus-visible,
.call-link:hover,
.call-link:focus-visible {
  color: var(--accent-color);    /* brand gold on hover/focus */
  text-decoration: underline;
  outline: none;
}




/* RIGHT COLUMN: Google-style reviews panel */
.booking-reviews {
  order: 2;
  justify-self: end; /* anchor the panel to the right side of its grid column */
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e3eb;
  padding: 1.25rem 1.5rem 1.4rem;
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.08);
  max-width: 420px; /* optional: keep reviews column from getting too wide */
}

/* "Recent Google Reviews" heading, with a subtle Google-colored marker */
.booking-reviews-heading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #202124;
  margin: 0 0 0.4rem;
}

.booking-reviews-heading::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    #4285f4 0%,
    #4285f4 25%,
    #db4437 25%,
    #db4437 50%,
    #f4b400 50%,
    #f4b400 75%,
    #0f9d58 75%,
    #0f9d58 100%
  );
}

/* Top summary row: rating number, stars, count */
.booking-reviews-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: #5f6368;
  margin-bottom: 0.6rem;
}

.booking-reviews-summary .rating-value {
  font-size: 1.9rem;
  font-weight: 600;
  color: #202124;
  margin-right: 0.25rem;
}

.booking-reviews-summary .rating-stars {
  color: #f4b400;
  letter-spacing: 0.06em;
  margin-right: 0.4rem;
  font-size: 1.1rem;
}

.booking-reviews-summary .rating-count {
  font-size: 0.9rem;
  color: #5f6368;
}

/* List of reviews */
.review-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Individual review card */
.review-card {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #dadce0;
}

/* Mini star row inside each review */
.review-rating {
  font-size: 0.85rem;
  color: #f4b400;
  margin-bottom: 0.25rem;
}

/* Review body text (short/long handled by JS) */
.review-text {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: #202124;
  line-height: 1.5;
}

/* "Read more / Show less" link-style button */
.review-read-more {
  border: none;
  background: none;
  color: #1a73e8;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0;
  margin-left: 0.25rem;
  cursor: pointer;
  text-decoration: underline;
}

.review-read-more:focus-visible {
  outline: 2px solid #c48416;
  outline-offset: 2px;
}

/* Name + time line */
.review-meta {
  margin: 0;
  font-size: 0.8rem;
  color: #5f6368;
}

/* "View all reviews on Google" button */
.btn-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background-color: #ffffff;
  color: #1a73e8;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.btn-reviews:hover,
.btn-reviews:focus-visible {
  background-color: #f1f3f4;
  border-color: #dadce0;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  transform: translateY(-1px);
}

.btn-reviews:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
  .booking-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-section {
    padding: 2.5rem 1.25rem;
  }

  .booking-heading {
    font-size: 1.6rem;
  }

  .booking-reviews {
    margin-top: 1.5rem;
    padding: 1rem 1.1rem 1.2rem;
    justify-self: stretch;
    max-width: 100%;
  }

  .booking-reviews-summary .rating-value {
    font-size: 1.6rem;
  }

  .review-card {
    padding: 0.6rem 0.75rem;
  }
}



/* =========================
   SOCIAL ICONS FOOTER
   ========================= */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  border-radius: 50%;
}

footer .footer-social i {
  display: inline-block;
  width: 30px;        /* matches your .fa width */
  height: 30px;       /* reserves vertical space so no layout jump */
  line-height: 30px;  /* ensures the icon is vertically centered */
  font-size: 30px;    /* matches existing size */
  vertical-align: middle;
}

/* === FOOTER: final override — keep at very end === */
body footer { background:#2e5f84; color:#fff; padding:2rem 1rem; }
body footer a { color:#fff; text-decoration:none; }
body footer a:hover { color:#c48416; }

/* Kill global custom bullets inside footer */
body footer ul, body footer ol { list-style:none; margin:.75rem 0 0 0; padding:0; }
body footer li { padding-left:0; }
body footer li::before { content:none; }

/* Layout */
footer .footer-container { max-width:1200px; margin:0 auto; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; }
footer .footer-info { flex:1; min-width:260px; margin-bottom:1rem; }
footer .footer-social { flex:1; min-width:200px; text-align:right; }
footer .footer-social a { margin-left:15px; font-size:1.5rem; transition:color .3s; }
footer .footer-social a:hover { color:#c48416; }

/* Low-key quick links */
#footer-links { border:0; text-transform:none; letter-spacing:normal; font-weight:300; font-size:.85rem; }
#footer-links .footer-quicklinks { display:flex; flex-wrap:wrap; flex-direction: column; gap:8px 14px; opacity:.8; }
#footer-links .footer-quicklinks a { color:#fff; font-weight:300; transition:color .3s, opacity .3s; }
#footer-links .footer-quicklinks a:hover { color:#c48416; opacity:1; }

/* Mobile */
@media (max-width:700px){
  footer .footer-container { flex-direction:column; text-align:center; }
  footer .footer-social { text-align:center; margin-top:1rem; }
}

