@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

/* === Colour tokens === */
:root {
  --brand-primary: #1F5A37;
  --brand-accent:  #C8963E;
  --text-dark:     #1a2e22;
  --text-mid:      #475565;
  --text-light:    #7a8f85;
  --surface-tint:  #edf3ef;
}

/**** General Styles ****/

body {
    background-color: white; /* black background */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #fff; /* white nav box */
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* hamburger shown by default */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #111;
    margin: 4px 0;
}

/* mobile nav menu (hidden by default) */
.nav-links{
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff
}

.nav-links.open {
    display: flex;
}


.nav-links a {
    padding: 18px;
    text-align: center;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.nav-links .btn {
    border: 0;
    border-radius: 0px;
}


h2 {
    color: white;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
}

p {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
}

.hero-video-section {
    position: relative;
    z-index: 0
    width; 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Ensures the overlay is above the video */
}

.hero-content {
    color: white;
    padding: 100px 20px;
    position: absolute;
    text-align: center;
    width: 100%
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 28px;
}

.cta-button {
    background-color: var(--brand-primary);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #043927;
}

.flex-container {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #eef5f1;
}

.flex-container .cta-button{
    margin-top: 30px;
}

.service-box {
    text-align: center;
    background-color: var(--brand-primary);
    padding: 50px;
    flex: 0 0 100%;
    box-sizing: border-box;
    margin: 1%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.service-box h2 {
    margin: 0;
    line-height: 1.3;
}

.wcu-section {
  font-family: 'DM Sans', sans-serif;
  padding: 5rem 5rem;
  max-width: 100%;
  margin: 0 auto;
}

.wcu-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Image panel --- */
.wcu-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.wcu-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.wcu-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 0 4px 0 0;
  z-index: 2;
}

/* --- Content panel --- */
.wcu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wcu-content h2 {
  font-size: 32px;
}

.wcu-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
  font-weight: 500;
  margin: 0 0 0.4rem;
}

.wcu-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--brand-primary);
  line-height: 1.25;
  margin: 0;
}

.wcu-divider {
  width: 42px;
  height: 2px;
  background: var(--brand-accent);
  border: none;
  margin: 0;
}

.wcu-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0;
  font-weight: 300;
}

.wcu-sub-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin: 0 0 0.8rem;
}

.wcu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wcu-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.5;
}

.wcu-list li::before {
  content: '';
  display: block;
  min-width: 18px;
  height: 18px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7.25' fill='%23edf3ef' stroke='%231F5A37' stroke-width='1.5'/%3E%3Cpath d='M4.5 8.5l2.5 2.5 4.5-5' stroke='%231F5A37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.wcu-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  border-left: 2.5px solid var(--brand-accent);
  padding-left: 14px;
  margin: 0;
}

@media (max-width: 700px) {
  .wcu-flex {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .wcu-image-wrap img {
    height: 260px;
  }
}

/* === About page === */
.about-hero {
  background: #1F5A37;
  padding: 6rem 5rem 5rem;
}

.about-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8963E;
  font-weight: 500;
  margin: 0 0 1rem;
}

.about-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.about-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin: 0;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.about-body {
  padding: 5rem;
  background: #fff;
}

.about-body-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-quote {
  border-left: 3px solid #C8963E;
  padding-left: 1.5rem;
  border-radius: 0;
}

.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1F5A37;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.about-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8963E;
  font-style: normal;
}

.about-paras {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-paras p {
  font-size: 15px;
  line-height: 1.8;
  color: #475565;
  font-weight: 300;
  margin: 0;
}

.about-values {
  padding: 4rem 5rem;
  background: #eef5f1;
}

.about-values-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-values-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1F5A37;
  margin: 0 0 2rem;
  font-weight: 400;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-card {
  background: #fff;
  padding: 1.5rem;
  border-left: 3px solid #1F5A37;
  border-radius: 0 6px 6px 0;
}

.about-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #1F5A37;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-card p {
  font-size: 13px;
  color: #475565;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 900px) {
  .about-hero,
  .about-body,
  .about-values,
  .about-cta { padding: 3rem 2rem; }

  .about-hero-inner,
  .about-body-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-cards { grid-template-columns: 1fr; }

  .about-photo { height: 280px; }
}

/* === Services page === */
.srv-hero {
  background: #1F5A37;
  padding: 5rem 5rem 4rem;
}

.srv-hero-inner,
.srv-cards-inner,
.srv-process-inner,
.srv-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.srv-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8963E;
  font-weight: 500;
  margin: 0 0 1rem;
}

.srv-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

/* Service cards */
.srv-cards-section {
  padding: 5rem;
  background: #fff;
}

.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.srv-card {
  background: #eef5f1;
  border-radius: 10px;
  padding: 2rem;
  border-top: 3px solid #1F5A37;
}

.srv-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.srv-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1F5A37;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.srv-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #475565;
  font-weight: 300;
  margin: 0;
}

/* Process */
.srv-process {
  padding: 5rem;
  background: #1F5A37;
}

.srv-process-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  margin: 0 0 3rem;
}

.srv-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.srv-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(200, 150, 62, 0.35);
}

.srv-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.srv-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C8963E;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.srv-step h3 {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}

.srv-step p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

/* CTA */
.srv-cta {
  padding: 5rem;
  background: #eef5f1;
  text-align: center;
}

.srv-cta-inner {
  max-width: 600px;
}

.srv-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1F5A37;
  font-weight: 400;
  margin: 0 0 1rem;
}

.srv-cta p {
  font-size: 15px;
  color: #475565;
  font-weight: 300;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.srv-sub {
  display: block;
  margin-top: 1rem;
  font-size: 12px;
  color: #7a9e8a;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .srv-hero,
  .srv-cards-section,
  .srv-process,
  .srv-cta { padding: 3rem 2rem; }

  .srv-cards-grid { grid-template-columns: 1fr; }

  .srv-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .srv-steps::before { display: none; }
}

@media (max-width: 500px) {
  .srv-steps { grid-template-columns: 1fr; }
}

/* === Contact page === */
.contact-section {
    position: relative;
    background-image: url("../media/facade.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
}

.contact-section .color-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.form {
    width: 100%;
    max-width: 820px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: var(--brand-primary);
    position: relative;
}

.circle{
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #4F7942);
    position: absolute;
}

.circle.one{
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two{
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form:before{
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--brand-primary);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.input-container{
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid white;
    background: none;
    padding: 0.6rem 1.2rem;
    color: white;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 999;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.btn {
    padding: 0.6rem 1.3rem;
    background-color: white;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1F5A37;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;

    margin: 0;
}

.btn:hover{
    background-color: #043927;
    color: white;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 50%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--brand-primary);
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: #1F5A37;
    font-family: 'Playfair Display', serif;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon{
    width: 28px;
    margin-right: 0.7rem;
}

.information p {
    text-align: center;
    padding-top: 20px;
}

.contact-info:before{
    content:"";
    position: absolute;
    width: 120px;
    height: 100px;
    border: 22px solid var(--brand-primary);
    border-radius: 50%;
    bottom: -55px;
    right: 50px;
    opacity: 0.3;
}

@media (max-width: 850px){
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before{
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before{
        top: -13px;
        left: initial;
        right: 70px;
    }

    .text{
        margin: 1rem 0 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding:1.5rem;
    }

    .contact-info:before{
        display: none;
    }

    form,
    .contact-info{
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information p{
        font-size: 0.8rem;
    }

    .title{
        font-size: 1.15rem;
    }

    .icon{
        width: 23px;
    }

    .input{
        padding: 0.45rem 1.2rem;
    }

    .btn{
        padding: 0.45rem 1.2rem;
    }
}

/* === Thank you page === */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: #eef5f1;
}

.thankyou-inner {
  text-align: center;
  max-width: 540px;
}

.thankyou-icon svg {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
}

.thankyou-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8963E;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.thankyou-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #1F5A37;
  font-weight: 400;
  margin: 0 0 1.25rem;
}

.thankyou-body {
  font-size: 15px;
  line-height: 1.8;
  color: #475565;
  font-weight: 300;
  margin: 0 0 2.5rem;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-btn {
  display: inline-block;
  background: #1F5A37;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.thankyou-btn:hover {
  background: #174830;
}

.thankyou-btn-outline {
  display: inline-block;
  background: transparent;
  color: #1F5A37;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 25px;
  border: 2px solid #1F5A37;
  text-decoration: none;
  transition: all 0.3s;
}

.thankyou-btn-outline:hover {
  background: #1F5A37;
  color: #fff;
}

/* === Footer === */
.ft {
  background: #1a3d28;
  font-family: 'DM Sans', sans-serif;
}

.ft-top {
  background: #1F5A37;
  padding: 3.5rem 5rem;
}

.ft-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.ft-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.ft-logo-sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C8963E;
  font-weight: 500;
  margin: 0 0 1rem;
}

.ft-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.75;
  max-width: 240px;
  margin: 0;
}

.ft-col-heading {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8963E;
  font-weight: 500;
  margin: 0 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ft-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: #C8963E;
}

.ft-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.ft-contact-row svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-contact-row span,
.ft-contact-row a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.55;
  text-decoration: none;
}

.ft-contact-row a:hover {
  color: #C8963E;
}

.ft-bottom {
  padding: 1.2rem 5rem;
}

.ft-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ft-legal {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.ft-abn {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .ft-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .ft-top { padding: 2.5rem 2rem; }
  .ft-bottom { padding: 1.2rem 2rem; }
  .ft-top-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/**** Desktop Enhancements ****/
@media (min-width: 768px) {
    nav {
        padding: 0 32px;
    }

    /* hide hamburger */
    .hamburger {
        display: none;
    }

    /* show nav links inline */
    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
    }

    .nav-links a {
        padding: 30px 16px;
        font-size: 16px;
    }

    .nav-links a:hover {
        background-color: var(--brand-primary);
    }

    .service-box {
    background-color: var(--brand-primary);
    padding: 50px;
    flex: 0 0 22%;
    box-sizing: border-box;
    margin: 1%;
    }





