*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --dark: #1A1A1A;
  --brown: #6B4226;
  --gold: #C8A96E;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  background: #1A1A1A;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,255,51,15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-full {
  height: 120px;
  width: 500px;
  object-fit: contain;
  display: block;
  filter: brightness(2.2) contrast(1.2);
}

/* .nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
} */

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* remove black background */
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #00ff33;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00ff33;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta.active {
  background: var(--brown) !important;
  color: var(--gold) !important;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 4rem;
  margin-top: 1rem;
  padding-top: 120px;
  border-bottom: 3px solid #00ff33;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;

  filter: blur(12px);     /* Adjust blur: 8px = subtle, 15px = stronger */
  opacity: 0.20;          /* Lower = more faded background */
  transform: scale(1.08); /* Slight zoom to reduce edges */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.15) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 0;
  color: var(--white);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* SHARED LAYOUT */
.container {
  padding: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* TYPOGRAPHY */
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--brown); }

.body-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  margin-top: 1rem;
}

.btn-primary:hover { background: var(--dark); color: var(--white); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  margin-top: 1rem;
}

.btn-outline:hover { background: var(--dark); color: var(--white); }

/* VALUE CARDS */
.value-card {
  background: #FFF0D6;
  padding: 1.2rem 1.2rem;
  border-radius: 4px;
  border-top: 3px solid #00ff33;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.value-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* TEAM CARDS */
.team-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  background: #f8d9b2;
  display: block;
}

.team-body {
  padding: 0.7rem;
  text-align: center;
}

.team-body {
  padding: 1.2rem;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.team-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* PRODUCT CARDS */
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SPEC TABLE */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.spec-table th {
  text-align: left;
  padding: 0.8rem 1rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(107,66,38,0.1);
  color: var(--text-muted);
}

.spec-table tr:nth-child(even) td { background: rgba(200,169,110,0.05); }

/* CTA SECTION */
.cta-section {
  position: relative;
  text-align: center;
  padding: 7rem 5%;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.72);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta-content .section-tag { color: var(--gold); }
.cta-content .section-title { color: var(--white); }
.cta-content .section-title em { color: var(--gold); font-style: italic; }

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* CONTACT FORM */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(107,66,38,0.2);
  border-radius: 2px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.9rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--brown); }

/* FOOTER */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid #00ff33;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #00ff33;
}

.footer-links-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-contact-block {
  width: 100%;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo-full {
  height: 80px;
  width: 320px;
  object-fit: contain;
  display: block;
  filter: brightness(2.2) contrast(1.2);
}

.footer-brand-icon {
  width: 38px; height: 38px;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff33;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00ff33;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* NAV CENTRE CONTACT INFO */
.nav-contact-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #00ff33;
}

.nav-contact-item svg {
  color: #00ff33;
  flex-shrink: 0;
}

.nav-contact-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .nav-contact-info { display: none; }
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #00ff33;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 260px;
  height: 100%;
  background: #1A1A1A;
  z-index: 150;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer-links li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-drawer-links a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00ff33;
  transition: color 0.2s;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active { color: var(--gold); }

.nav-drawer-links .nav-cta {
  background: #00ff33;
  color: #1A1A1A !important;
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
}

.nav-drawer-links .nav-cta:hover { background: var(--brown); color: var(--gold) !important; }

.nav-drawer-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,255,51,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.nav-drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* Dim overlay behind drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 140;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* NEWSLETTER & VIDEOS */
.newsletter-section {
  background: var(--cream);
  padding: 2rem;
}

.newsletter-inner {
  width: 100%;
}

/* Two-column body: videos left, subscribe right */
.newsletter-body-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 4rem;
  align-items: start;
}

.newsletter-videos-col,
.newsletter-subscribe-col {
  display: flex;
  flex-direction: column;
}

/* Video grid inside the left column — 1 col stacked */
.newsletter-videos-col .video-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Override the 3-col default for inside newsletter */
.newsletter-videos-col .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.newsletter-videos-col .video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
}

.newsletter-videos-col .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.newsletter-videos-col .video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.newsletter-videos-col .video-body {
  padding: 0.8rem 1rem;
}

.newsletter-header {
  max-width: 600px;
}

.newsletter-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 520px;
}

.newsletter-form {
  margin-top: 2rem;
}

.newsletter-input-row {
  display: flex;
  gap: 0;
  max-width: 500px;
}

.newsletter-input-row input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--dark);
  border-right: none;
  border-radius: 2px 0 0 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input-row input:focus {
  border-color: #00ff33;
}

.newsletter-input-row button {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark);
  padding: 0.85rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.newsletter-input-row button:hover {
  background: #00ff33;
  border-color: #00ff33;
  color: var(--dark);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.newsletter-success {
  display: none;
  font-size: 0.85rem;
  color: #00aa22;
  font-weight: 600;
  margin-top: 0.6rem;
}

/* VIDEO GRID */
.video-slideshow-controls { display: none; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.video-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.video-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  /* Force everything inside viewport */
  *, *::before, *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* NAV */
  nav {
    padding: 0.5rem 1rem;
    justify-content: space-between;
    width: 100%;
  }
  .nav-logo-full {
    height: 55px;
    width: 180px;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-contact-info { display: none; }

  /* HERO */
  .page-hero { height: 260px; padding: 0 1rem 2rem; padding-top: 80px; }

  /* LAYOUT */
  .container { padding: 1.5rem 1rem; }
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; gap: 1rem; }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    width: 100%;
  }
  .footer-links-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  footer { padding: 2rem 1rem 1.5rem; width: 100%; box-sizing: border-box; }
  .footer-logo-full { height: 60px; width: 200px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* NEWSLETTER */
  .newsletter-section { padding: 1.5rem 1rem; }
  .newsletter-body-row { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-subscribe-col { padding-top: 0 !important; }
  .newsletter-videos-col .video-grid { grid-template-columns: 1fr; }
  .newsletter-videos-col .video-card { grid-template-columns: 1fr; }
  .newsletter-videos-col .video-wrap { height: 0; padding-bottom: 56.25%; }
  .newsletter-input-row { flex-direction: column; }
  .newsletter-input-row input {
    border-right: 1.5px solid var(--dark);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
  }
  .newsletter-input-row button { border-radius: 0 0 2px 2px; }

  /* VIDEO GRID */
  .video-grid { grid-template-columns: 1fr; }

  /* VIDEO SLIDESHOW (mobile) */
  .video-slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .newsletter-videos-col .video-grid {
    display: block;
    overflow: hidden;
  }

  .newsletter-videos-col .video-grid .video-card {
    display: none;
    width: 100%;
  }

  .newsletter-videos-col .video-grid .video-card.active {
    display: flex;
    flex-direction: column;
  }

  .video-slide-btn {
    background: #1A1A1A;
    color: #00ff33;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .video-slide-btn:hover { background: #00ff33; color: #1A1A1A; }

  .video-slide-dots { display: flex; gap: 6px; }

  .video-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }

  .video-slide-dot.active { background: #00ff33; }

  /* SECTIONS */
  section { padding: 1.5rem 1rem !important; }
  .cta-section { padding: 3rem 1rem; }

  /* SPEC TABLE */
  .spec-table { font-size: 0.75rem; }
  .spec-table th, .spec-table td { padding: 0.5rem 0.6rem; }

  /* TEAM */
  .four-col { grid-template-columns: 1fr 1fr; }

  /* STORY SLIDESHOW */
  .story-slideshow { aspect-ratio: 4/3; }

  /* About story — stack on mobile, slideshow full width */
  .about-story-float {
    float: none !important;
    width: 100% !important;
    margin: 0 0 1.5rem 0 !important;
  }
}

@media (max-width: 480px) {
  .four-col { grid-template-columns: 1fr; }
  .nav-logo-full { height: 48px; width: 160px; }
  .page-hero-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* CLICKABLE CONTACT LINKS */
a.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-link:hover {
  color: #00ff33;
  text-decoration: underline;
}
