/*
Theme Name: Nate Greene CCIM
Theme URI: https://nategreene.com
Author: Power Marketing
Description: Custom theme for Nate J. Greene, CCIM commercial real estate site.
Version: 1.0
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --green: #355e3b;
  --green-dark: #2a4a30;
  --green-overlay: rgba(53, 94, 59, 0.85);
  --teal: #be8f42;
  --teal-hover: #a67a34;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --dark: #1a1a1a;
  --mid-gray: #555555;
  --light-gray: #e8e8e8;
  --separator-color: #be8f42;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;

  --max-width: 1200px;
  --section-pad: 70px 0;
  --section-pad-mobile: 50px 0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }
a:focus { outline: none; }

ul { list-style: none; }

p { margin-bottom: 1em; font-size: 18px; }
p:last-child { margin-bottom: 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container-full {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.row-2col {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 600px);
  gap: 0;
  align-items: center;
  justify-content: center;
}

.row-2col.equal-height { align-items: stretch; }
.row-2col.align-top { align-items: start; }

.col-pad-left { padding: 60px 60px 60px 80px; }
.col-pad-right { padding: 60px 80px 60px 60px; }
.col-pad { padding: 60px 50px; }
.col-pad-sm { padding: 40px 50px; }

/* =============================================
   SECTION WRAPPERS
   ============================================= */
.section-white { background: var(--white); }
.section-light { background: var(--off-white); }
.section-dark { background: var(--green); color: var(--white); }
.section-darker { background: var(--green-dark); color: var(--white); }

.section-white .section-pad,
.section-light .section-pad { padding: var(--section-pad); }

.section-dark .section-pad,
.section-darker .section-pad { padding: var(--section-pad); }

/* =============================================
   HEADING BLOCK (with separator line)
   ============================================= */
.section-heading { margin-bottom: 30px; }

.section-heading h1,
.section-heading h2,
.section-heading h3 { margin-bottom: 0; }

.heading-primary {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

.heading-secondary {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

.heading-separator {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--separator-color);
  margin-top: 15px;
  margin-bottom: 0;
}

.section-dark .heading-separator,
.section-darker .heading-separator { background: var(--teal); }

/* On white sections, separator can be green */
.section-white .heading-separator { background: var(--green); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid currentColor;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

/* Default: white outline on dark sections */
.btn-outline-white {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
}

/* Green button for light sections */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* Teal accent button */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  color: var(--white);
}

/* =============================================
   ICON BULLET LISTS
   ============================================= */
.icon-list { margin-top: 20px; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}
.icon-list li::before {
  content: '•';
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.section-white .icon-list li::before { color: var(--green); }

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 60px;
}

#site-header.header-solid {
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.home .site-logo {
    margin-top: 120px;
}

#site-header.header-solid .site-logo a {
  color: var(--green);
}

#site-header.header-solid .main-nav ul li a {
  color: var(--green);
}

#site-header.header-solid .main-nav ul li a:hover,
#site-header.header-solid .main-nav ul li.current-menu-item > a {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

#site-header.header-solid .nav-toggle span {
  background: var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.site-logo a {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--separator-color);
}
.site-logo a:hover { color: var(--teal); }

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
  border-bottom-color: var(--teal);
  color: var(--teal);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION (Homepage)
   ============================================= */
/* Hero — split layout: green panel left / photo right with diagonal divider */
#home-hero {
  position: relative;
  max-height: 90vh;
  overflow: hidden;
}

/* Full-bleed photo layer (right side visible) */
.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url(/wp-content/uploads/2026/06/AdobeStock_405647060-1.jpeg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position-y: top;
    background-position-x: right;
}

/* Green panel clipped with diagonal edge */
.hero-green-panel {
  position: absolute;
  inset: 0;
  background: var(--green);
  clip-path: polygon(0 0, 62% 0, 55% 100%, 0 100%);
}

/* Content sits above both layers */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 52%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 60px 80px;
}

.hero-prefix {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  display: block;
  margin-bottom: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  display: block;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 36px;
  display: block;
  letter-spacing: 0.02em;
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.inner-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('assets/images/hero-1.jpg');
  background-size: cover;
  background-position: center;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 74, 48, 0.80);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 100px 30px 60px;
}

.inner-hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

/* =============================================
   HOME SECTION 2 — Intro text
   ============================================= */
#home-intro {
  padding: 80px 0;
}

#home-intro .row-2col { gap: 60px; }

#home-intro h1 {
  font-size: 38px;
  line-height: 1.2;
  color: var(--green);
}

/* =============================================
   HOME SECTION 3 — About (dark, img left)
   ============================================= */
#home-about {
  background: var(--green);
  color: var(--white);
}

#home-about .img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

#home-about h2 { color: var(--white); }
#home-about h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.4;
  color: var(--white);
}

/* =============================================
   HOME SECTION 4 — Expert Consultation (white, text left, img right)
   ============================================= */
#home-expert { padding: 0; }
#home-expert .img-col img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px; }

/* =============================================
   HOME SECTION 5 — Approach & Clients (white, 2-col)
   ============================================= */
/* Approach & Clients — full-bleed split */
#home-approach,
#about-accomplishments {
  background: var(--white);
  padding: 80px 0;
}

.approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.approach-col {
  padding: 60px 50px;
  color: var(--white);
}

.approach-col-green {
  background: var(--green);
}

.approach-col-gold {
  background: var(--teal);
}

.approach-col .heading-primary,
.approach-col .heading-secondary {
  color: var(--white);
}

.approach-col .heading-separator {
  background: rgba(255,255,255,0.4);
}

.approach-col p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.approach-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.approach-list li {
  color: rgba(255,255,255,0.9);
  padding: 4px 0;
  font-size: 16px;
}

/* =============================================
   HOME SECTION 6 — Video (dark)
   ============================================= */
#home-video {
  background: var(--green-dark);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

#home-video .video-wrap {
  max-width: 800px;
  margin: 0 auto 30px;
}

#home-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

/* Nate's Story section */
#about-story { padding: 80px 0; }
#about-story .img-col img {
  width: 100%;
  max-width: 400px;
}
#about-story .row-2col { gap: 60px; align-items: start; }

/* Colliers section (dark) */
#about-colliers {
  background: var(--green);
  color: var(--white);
}
#about-colliers .img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
#about-colliers h2 { color: var(--white); }
#about-colliers a { color: var(--teal); }
#about-colliers a:hover { color: var(--white); }

/* Accomplishments section */

/* Tennessee Tubs section (dark) */
#about-tubs {
  background: var(--green);
  color: var(--white);
}
#about-tubs .col-pad {
    padding: 60px 25px 60px 50px;
}
#about-tubs h2 { color: var(--white); font-size: 30px; }

#about-tubs a { color: var(--teal); }
#about-tubs a:hover { color: var(--white); }

/* Nate's First Car (white) */
#about-first-car { padding: 0; }
#about-first-car .img-col img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 400px; }

/* Prized Hobby (dark) */
#about-hobby {
  background: var(--green);
  color: var(--white);
}
#about-hobby .img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
#about-hobby h3 { color: var(--white); font-size: 30px; }
#about-hobby a { color: var(--white); }

/* =============================================
   CONTACT PAGE
   ============================================= */
#contact-main { padding: 80px 0; }
#contact-main .row-2col { gap: 60px; align-items: start; }

/* Contact info list */
.contact-info-list { margin: 25px 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.6;
}
.contact-info-list .contact-icon {
  color: var(--green);
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-list a:hover { color: var(--green); }

.social-icons-row { margin-top: 20px; }
.social-icons-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.2s;
}
.social-icons-row a:hover { background: var(--green-dark); }

/* Contact form */
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--green);
}

.ng-form { width: 100%; }

.ng-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ng-form .form-group { margin-bottom: 20px; }
.ng-form .form-group.half { margin-bottom: 0; }

.ng-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--dark);
}

.ng-form input[type="text"],
.ng-form input[type="email"],
.ng-form input[type="tel"],
.ng-form select,
.ng-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.ng-form input:focus,
.ng-form select:focus,
.ng-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.ng-form textarea { resize: vertical; min-height: 160px; }

.ng-form .required { color: #c00; }

.ng-form .form-submit input[type="submit"],
.ng-form .form-submit button {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.ng-form .form-submit input[type="submit"]:hover,
.ng-form .form-submit button:hover {
  background: var(--green-dark);
}

/* Gravity Forms field spacing */
.gform_wrapper.gravity-theme .gfield {
  margin-block-end: 8px !important;
}

/* Gravity Forms labels */
.gform_wrapper .gfield_label {
  font-size: 16px !important;
}

/* Gravity Forms submit button */
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 14px 40px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
  background: var(--teal-hover) !important;
}

.form-notice {
  padding: 12px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 4px solid var(--green);
  background: rgba(53,94,59,0.08);
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer { background: var(--green); color: var(--white); border-top: 2px solid var(--separator-color); }

.footer-main { padding: 60px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-logo a {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--separator-color);
    text-transform: uppercase;
}

.footer-logo a:hover { color: var(--teal); }

.footer-info-list { margin: 0; padding: 0; list-style: none; }
.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 1.6;
}
.footer-info-list .fi-icon {
    color: var(--teal);
    font-size: 20px;
    width: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-info-list a { 
	color: var(--white);
    font-size: 20px;
}

span.footer-label {
	font-size: 20px;
}

.footer-info-list a:hover { color: var(--teal); }

.footer-separator {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 0 60px;
}

.footer-mid {
  padding: 30px 60px;
  text-align: center;
}

.footer-colliers-logo {
  display: block;
  margin: 0 auto 20px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav ul li a {
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--teal); }

.footer-copyright {
  background: var(--green-dark);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.footer-copyright img { height: 30px; width: auto; }

/* Footer social icons */
.footer-social { margin-top: 15px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--teal); color: var(--dark); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-size: 18px;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--green-dark); }

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media screen and (max-width: 1024px) {
  .container-full { padding-left: 40px; padding-right: 40px; }

  .hero-prefix,
  .hero-title { font-size: 44px; }
	
	.hero-photo {
		background-size: 100%;
	}

  .inner-hero-content h1 { font-size: 42px; }

  .heading-primary,
  .heading-secondary { font-size: 30px; }

  #home-intro h1 { font-size: 30px; }
	
	.home .site-logo {
    margin-top: 0px;
}

  .footer-main { padding: 50px 40px; }
  .footer-separator { margin: 0 40px; }
  .footer-mid { padding: 25px 40px; }
  .footer-copyright { padding: 18px 40px; }

  #site-header { padding: 0 40px; }
  .hero-content { padding: 130px 40px 80px; }
}


/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media screen and (max-width: 768px) {

  /* Approach split */
  .approach-split { grid-template-columns: 1fr; padding: 0 20px; gap: 16px; }
  .approach-col { padding: 50px 20px; }

  /* Header */
  #site-header { padding: 0 20px; position: relative; }
  #site-header.header-solid { position: relative; }
  .site-logo a { color: var(--green);
	font-size: 24px;}
  .nav-toggle span { background: var(--green); }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 200;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .main-nav ul li a {
    display: block;
    padding: 16px 24px;
    color: var(--green);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 15px;
  }

  .main-nav ul li:last-child a { border-bottom: none; }

  /* Hero — full photo background on mobile with overlay */
  #home-hero { min-height: 100vh; display: block; }
  .hero-photo { position: absolute; inset: 0; height: auto; }
  .hero-green-panel { clip-path: none; opacity: 0.75; }
  .hero-content {
    position: relative;
    width: 100%;
    padding: 140px 24px 80px;
    background: none;
  }
  .hero-prefix, .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }

  /* Inner hero */
  .inner-hero { min-height: 220px; }
  .inner-hero-content { padding: 80px 20px 40px; }
  .inner-hero-content h1 { font-size: 34px; }

  /* 2-col layouts → single column */
  .row-2col { grid-template-columns: 1fr; }
  .row-2col.responsive-reversed > *:first-child { order: 2; }
  .row-2col.responsive-reversed > *:last-child { order: 1; }

  .col-pad-left,
  .col-pad-right,
  .col-pad,
  .col-pad-sm { padding: 40px 20px; }

  /* Sections */
  #home-intro { padding: 50px 0; }
  #home-intro .container { padding: 0 20px; }
  .approach-col { padding: 60px 40px; }
  #about-story,
  #about-accomplishments,
  #contact-main { padding: 50px 0; }

  .container { padding-left: 20px; padding-right: 20px; }
  .container-full { padding-left: 20px; padding-right: 20px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr; gap: 30px; }
  .footer-main { padding: 40px 20px; }
  .footer-separator { margin: 0 20px; }
  .footer-mid { padding: 25px 20px; }
  .footer-copyright { padding: 18px 20px; flex-direction: column; gap: 12px; text-align: center; }
  .footer-nav ul { flex-wrap: wrap; gap: 15px; }

  /* Forms */
  .ng-form .form-row { grid-template-columns: 1fr; }

  /* Headings */
  .heading-primary,
  .heading-secondary { font-size: 26px; }
  #home-intro h1 { font-size: 26px; }

  /* Icon lists */
  .icon-list li { font-size: 14px; }

  /* Scroll top */
  #scroll-top { bottom: 20px; right: 20px; }
}

@media screen and (max-width: 500px) {
  .icon-list li { width: 100%; }
}
