/* ------ Variables --------------------------------------------------------------------------------------- */
    :root {
      --navy:   #14308a;
      --blue:   #264ce7;
      --blue-lt:#4b86e8;
      --cream:  #fdf8f2;
      --white:  #ffffff;
      --gray:   #f4f6f9;
      --text:   #333;
      --muted:  #666;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* page loader */
    .page-loader {
      position: fixed;
      inset: 0;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      transition: opacity .3s ease, visibility .3s ease;
    }
    .page-loader.hide {
      opacity: 0;
      visibility: hidden;
    }
    .loader-spinner {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 4px solid rgba(0,0,0,.12);
      border-top-color: var(--blue);
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* ------ TOP BAR --------------------------------------------------------------------------------------------- */
    .topbar {
      background: var(--navy);
      color: #ccc;
      font-size: .82rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .45rem 5%;
    }
    .topbar-left,
    .topbar-right { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
    .topbar a { color: #ccc; text-decoration: none; }
    .topbar a:hover { color: var(--blue-lt); }
    .topbar i { margin-right: .15rem; }

    .topbar .social-links a:last-child { margin-right: 0; }
    .social-links a i{ gap: .05rem; font-size: 1.25rem; margin-right: -5px;}

    /* ------ HEADER ------------------------------------------------------------------------------------------------ */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 12px rgba(0,0,0,.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .8rem 5%;
    }
    .logo { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
    .logo-img {
      height: 56px;
      border-radius: 10px;
      object-fit: contain;
      background: var(--white);
      box-shadow: 0 4px 12px rgba(0,0,0,.08);
      flex-shrink: 0;
    }
    .logo-text { line-height: 1.25; }
    .logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--navy);
    }
    .logo-text span { font-size: .72rem; color: var(--muted); letter-spacing: .4px; }

    nav { display: flex; align-items: center; gap: .25rem; }
    nav a {
      padding: .5rem .9rem;
      font-size: .88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--navy);
      text-decoration: none;
      border-radius: 4px;
      transition: background .2s, color .2s;
    }
    nav a:hover, nav a.active { background: var(--blue); color: var(--white); }

    .nav-search {
      margin-left: .8rem;
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .6rem .7rem;
      border-radius: 5px;
      background: var(--gray);
    }
    .nav-search i {
      color: var(--navy);
      font-size: 1.5rem;
    }
    .nav-search input {
      border: 0;
      outline: 0;
      font-size: .85rem;
      width: 140px;
      background: transparent;
      color: var(--text);
    }
    .nav-search input::placeholder { color: var(--muted); }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .3rem;
    }
    .hamburger .bar {
      width: 26px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform .3s ease, opacity .2s ease;
    }
    .hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open .bar:nth-child(2) { opacity: 0; }
    .hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.35);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
      z-index: 900;
    }
    .nav-overlay.show { opacity: 1; pointer-events: auto; }

    /* ------ HERO / SLIDER --------------------------------------------------------------------------- */
    .hero { position: relative; height: 88vh; min-height: 500px; overflow: hidden; }

    .slides { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
    }
    .slide::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(26,46,74,.75) 45%, transparent 100%);
      z-index: 1;
    }
    .slide-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    .slide.active .slide-bg { transform: scale(1); }

    .slide-content {
      position: relative; z-index: 2;
      padding: 0 8%;
      max-width: 680px;
      animation: fadeUp .9s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .slide-content .tag {
      display: inline-block;
      background: var(--blue);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 30px;
      margin-bottom: 1.2rem;
    }
    .slide-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4.5vw, 3.2rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: .9rem;
    }
    .slide-content p {
      color: rgba(255,255,255,.85);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }
    .slide-content .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      padding: .8rem 2rem;
      background: var(--blue);
      color: var(--white);
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      font-size: .9rem;
      letter-spacing: .5px;
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); }
    .btn-outline {
      padding: .8rem 2rem;
      border: 2px solid rgba(255,255,255,.7);
      color: var(--white);
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      font-size: .9rem;
      transition: border-color .25s, background .25s;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

    /* slider controls */
    .slider-arrows {
      position: absolute; bottom: 2.5rem; right: 5%;
      z-index: 5; display: flex; gap: .7rem;
    }
    .arrow-btn {
      width: 44px; height: 44px;
      border: 2px solid rgba(255,255,255,.6);
      color: var(--white);
      background: transparent;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .25s, border-color .25s;
    }
    .arrow-btn:hover { background: var(--blue); border-color: var(--blue); }

    .slider-dots {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      z-index: 5; display: flex; gap: .55rem;
    }
    .dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,.45);
      cursor: pointer;
      transition: background .3s, transform .3s;
    }
    .dot.active { background: var(--blue); transform: scale(1.3); }

    /* ------ INNER HERO -------------------------------------------------------------------------------- */
    .inner-hero {
      position: relative;
      min-height: 320px;
      padding: 5.5rem 5% 4.5rem;
      display: flex;
      align-items: flex-end;
      background: var(--navy);
      color: var(--white);
      overflow: hidden;
      background-image: var(--hero-image);
      background-size: cover;
      background-position: center;
    }
    .inner-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(12,24,44,.86) 35%, rgba(12,24,44,.35) 70%, rgba(12,24,44,.15) 100%);
      z-index: 1;
    }
    .inner-hero.has-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.12), transparent 55%);
      z-index: 2;
      pointer-events: none;
    }
    .inner-hero-content {
      position: relative;
      z-index: 3;
      max-width: 820px;
      animation: fadeUp .8s ease both;
    }
    .inner-hero .eyebrow {
      display: inline-block;
      background: rgba(75,134,232,.2);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 30px;
      margin-bottom: .9rem;
    }
    .inner-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.2;
      margin-bottom: .6rem;
      color: var(--white);
    }
    .inner-hero p {
      color: rgba(255,255,255,.82);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
    }
    .inner-hero-meta {
      font-size: .95rem;
      color: rgba(255,255,255,.7);
      margin-top: .35rem;
    }

    /* ------ FEATURES GRID --------------------------------------------------------------------------- */
    .section { padding: 5rem 5%; }
    .section-header { text-align: center; margin-bottom: 3rem; }
    .section-header .eyebrow {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .6rem;
    }
    .page-content, .single-content {
      max-width: 1400px !important;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--navy);
    }
    .section-header p { color: var(--muted); margin-top: .6rem; max-width: 560px; margin-inline: auto; line-height: 1.7; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .feature-card {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      transition: transform .3s, box-shadow .3s;
      background: var(--white);
    }
    .feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
    .feature-card img {
      width: 100%; height: 220px;
      object-fit: cover;
      display: block;
    }
    .feature-card-body { padding: 1.3rem 1.4rem 1.5rem; }
    .feature-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: .5rem;
    }
    .feature-card-body a {
      display: inline-block;
      margin-top: .6rem;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .6px;
      color: var(--blue);
      text-transform: uppercase;
      text-decoration: none;
    }
    .feature-card-body a:hover { color: var(--navy); }

    /* prevent single feature card from stretching full width */
    .features-grid .feature-card:only-child {
      max-width: 520px;
      margin: 0 auto;
    }

    /* ------ ABOUT SPLIT --------------------------------------------------------------------------------- */
    .about-split {
      background: var(--gray);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 520px;
    }
    .about-img { position: relative; overflow: hidden; }
    .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom right, rgba(26,46,74,.2), transparent);
    }
    .about-content {
      padding: 5rem 6% 5rem 5%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-content .eyebrow {
      font-size: .78rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--blue); margin-bottom: .7rem;
    }
    .about-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      color: var(--navy); margin-bottom: 1.2rem; line-height: 1.3;
    }
    .about-content p {
      color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: .97rem;
    }
    .about-content a.btn-primary { margin-top: .8rem; align-self: flex-start; }

    .about-actions {
      margin-top: 1.6rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .btn-readmore {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .75rem 1.4rem;
      border: 2px solid rgba(20,48,138,.2);
      color: var(--navy);
      text-decoration: none;
      font-weight: 700;
      border-radius: 8px;
      letter-spacing: .2px;
      transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
    }
    .btn-readmore i { font-size: 1.1rem; }
    .btn-readmore:hover {
      border-color: var(--navy);
      color: var(--blue);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(20,48,138,.12);
    }

    .support-inline {
      display: inline-flex;
      align-items: center;
      gap: .9rem;
    }
    .support-bubble {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 10px 20px rgba(20,48,138,.2);
    }
    .support-text p {
      font-size: .82rem;
      color: var(--muted);
      margin: 0 0 .2rem;
    }
    .support-text a {
      font-weight: 700;
      color: #c3162a;
      text-decoration: none;
    }
    .support-text a:hover { color: #a11222; }

    /* ------ CAMPUS LIFE --------------------------------------------------------------------------------- */
    .campus-section { background: var(--navy); }
    .campus-section .section-header h2 { color: var(--white); }
    .campus-section .section-header .eyebrow { color: var(--blue-lt); }
    .campus-section .section-header p { color: rgba(255,255,255,.7); }

    .campus-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .campus-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      padding: 2rem 1.8rem;
      transition: background .3s;
    }
    .campus-card:hover { background: rgba(255,255,255,.1); }
    .campus-card .icon {
      width: 52px; height: 52px;
      background: #f4f6f9;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
      color: var(--blue);
    }
    .campus-card h3 {
      font-family: 'Playfair Display', serif;
      color: var(--white); font-size: 1.15rem; margin-bottom: .6rem;
    }
    .campus-card p { color: rgba(255,255,255,.65); line-height: 1.7; font-size: .92rem; }
    .campus-card a {
      display: inline-block;
      margin-top: 1rem;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: var(--blue-lt);
      text-decoration: none;
    }
.campus-card a:hover { color: var(--white); }

/* prevent single campus card from stretching full width */
.campus-cards .campus-card:only-child {
  max-width: 520px;
  margin: 0 auto;
}

    /* ------ FOOTER ------------------------------------------------------------------------------------------------ */
    footer {
      background: #0f1e31;
      color: rgba(255,255,255,.7);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 2.5rem;
      padding: 4rem 5% 3rem;
    }
    .footer-brand .logo { margin-bottom: 1.2rem; }
    .footer-brand p { font-size: .88rem; line-height: 1.75; margin-bottom: 1rem; }
    .footer-brand .contact-links { display: flex; flex-direction: column; gap: .5rem; }
    .footer-brand .contact-links a {
      color: rgba(255,255,255,.65); font-size: .85rem; text-decoration: none;
    }
    .footer-brand .contact-links a:hover { color: var(--blue-lt); }
    .footer-brand .social-links { display: flex; gap: .7rem; margin-top: .8rem; }
    .footer-brand .social-links a {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.8); text-decoration: none;
      transition: background .2s, color .2s;
    }
    .footer-brand .social-links a:hover { background: var(--blue); color: var(--white); }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      color: var(--white); font-size: 1rem; margin-bottom: 1.2rem;
      padding-bottom: .5rem;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-col ul { list-style: none; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: .55rem; }
    .footer-col ul li a {
      color: rgba(255,255,255,.6); font-size: .87rem; text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--blue-lt); }

    .newsletter-form {
      display: flex; gap: .5rem; margin-top: .5rem;
      flex-wrap: wrap;
    }
    .newsletter-form input {
      flex: 1; min-width: 0;
      padding: .65rem 1rem;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.07);
      color: var(--white);
      border-radius: 4px;
      font-size: .85rem;
      outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
    .newsletter-form button {
      padding: .65rem 1.2rem;
      background: var(--blue);
      color: var(--white);
      border: none; border-radius: 4px;
      font-size: .85rem; font-weight: 700;
      cursor: pointer; transition: background .2s;
    }
    .newsletter-form button:hover { background: var(--blue-lt); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      text-align: center;
      padding: 1.2rem 5%;
      font-size: .8rem;
      color: rgba(255,255,255,.4);
    }

    /* back to top */
    .back-to-top {
      position: fixed;
      right: 1.2rem;
      bottom: 1.2rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: var(--navy);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0,0,0,.2);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity .2s ease, transform .2s ease, background .2s ease;
      z-index: 1200;
    }
    .back-to-top:hover { background: var(--blue); }
    .back-to-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    /* ------ RESPONSIVE ------------------------------------------------------------------------------------ */
    @media (max-width: 900px) {
      .about-split { grid-template-columns: 1fr; }
      .about-img { height: 300px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 680px) {
      nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        height: 100vh;
        width: min(80%, 320px);
        background: var(--white);
        padding: 4.2rem 1.5rem 2rem !important;
        box-shadow: 8px 0 20px rgba(0,0,0,.18);
        transform: translateX(-100%);
        transition: transform .3s ease;
        z-index: 1001;
      }
      nav.open { transform: translateX(0); }
      nav a { padding: .7rem .5rem; }
      .hamburger { display: flex; }
      .footer-top { grid-template-columns: 1fr; }
      .topbar { display: none; }

      nav .nav-menu {
        align-items: center !important;
        gap: 1rem !important;
        padding: 0;
      }

      nav .nav-menu a[aria-current="page"] {
        background: var(--blue);
        color: var(--white);
      }

      .nav-search{
        width: 70%!important;
         margin: 1.5rem auto 0!important;
      }
    }

/* WordPress navigation list */
nav .nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .nav-menu li { list-style: none; }

.blog-grid .feature-card-body h3 a {
  color: var(--navy);
  text-decoration: none;
}
.blog-grid .feature-card-body h3 a:hover { color: var(--blue); }
.blog-meta {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .4rem;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.pagination .page-numbers {
  margin: 0 .25rem;
  padding: .35rem .6rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid rgba(20,48,138,.15);
}
.pagination .current { background: var(--navy); color: var(--white); }

.page-content,
.single-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
}
.page-content img,
.single-content img { max-width: 100%; height: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.6rem;
}
.contact-card h3 { color: var(--navy); margin-bottom: .8rem; }
.contact-form {
  display: grid;
  gap: .75rem;
}
.contact-form input,
.contact-form textarea {
  padding: .7rem .9rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  font-size: .9rem;
}
.contact-form button {
  padding: .75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.contact-form button:hover { background: var(--blue); }

.contact-info-list {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.contact-info-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: .75rem;
  align-items: start;
  margin: 1rem 0;
}
.contact-info-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20,48,138,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.15rem;
}
.contact-info-list .label {
  display: block;
  font-size: .75rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact-info-list a,
.contact-info-list span {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.contact-info-list a:hover { color: var(--blue); }

.contact-card .wpcf7 form {
  display: grid;
  gap: .75rem;
}
.contact-card .wpcf7 label {
  font-size: .85rem;
  color: var(--muted);
  display: grid;
  gap: .35rem;
}
.contact-card .wpcf7 input[type="text"],
.contact-card .wpcf7 input[type="email"],
.contact-card .wpcf7 input[type="tel"],
.contact-card .wpcf7 textarea,
.contact-card .wpcf7 select {
  padding: .7rem .9rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  font-size: .9rem;
  width: 100%;
}
.contact-card .wpcf7 textarea { min-height: 140px; }
.contact-card .wpcf7 input[type="submit"] {
  padding: .75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.contact-card .wpcf7 input[type="submit"]:hover { background: var(--blue); }
.contact-card .wpcf7 .wpcf7-not-valid-tip {
  color: #c3162a;
  font-size: .8rem;
}
.contact-card .wpcf7 .wpcf7-response-output {
  margin: .75rem 0 0;
  padding: .7rem .9rem;
  border-radius: 6px;
  font-size: .85rem;
}

@media (max-width: 680px) {
  nav .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  nav .nav-menu a { width: 100%; }
  .nav-search { width: 100%; }
}


