:root {
  --accent: #8b5e3c;
  --muted: #6b6b6b;
  --bg: #faf7f3;
  --card: #ffffff;
  --radius: 12px;
  --maxw: 1150px; /* sensible max width for layout */
  --shadow: 0 6px 24px rgba(10, 10, 10, 0.06);
  font-family: "Inter", sans-serif;
}
@font-face {
  font-family: "ScothBrace";
  src: url("ScothBrace-Regular.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  cursor: crosshair;
}
body {
  margin: 0;
  background: #ffffff;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ScothBrace", serif;
  color: #8b5e3c;
}

/* Container */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem;
  width: calc(100% - 2rem);
}

/* NAV */
.site-header {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: sticky !important;
  align-items: center;
  min-height: 60vh; /* reduce from full viewport to sensible hero height */
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.glass-effect {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  border-radius: 12px;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  font-family: sans-serif;
}
.logo {
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}
.logo img {
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  filter: brightness(0) invert(1);
}
.logofooter {
  text-align: left !important;
  justify-content: left !important;
  display: flex;
  align-items: left;
}
.logofooter img {
  width: 80px;
  height: 80px;
  align-items: left;
  justify-content: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.nav-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand {
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.backgroundwhite {
  color: white !important;
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.main-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.main-nav a {
  color: #fcfbfb !important;
  text-decoration: none;
  padding: 0.5rem;
  font-weight: 500;
  z-index: 99;
}
.main-nav .btn {
  color: white;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

nav a:hover {
  color: var(--accent);
}
.navbutton {
  background-color: white;
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.75rem;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}
.main-nav.active {
  display: flex;
}

/* ABOUT SECTION */

.section.about.container {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.about-text {
  padding-left: 20px;
  justify-content: baseline;
  align-items: first baseline;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.divider {
  width: 100%;
  border: none;
  border-top: 1px solid #080808;
  margin: 30px auto;
}

/* FOUNDER CARD */
.founder-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.founder-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.founder-card p {
  color: #555;
  line-height: 1.6;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 2s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* STAGGERED DELAY FOR ELEMENTS */
.about-text.fade-in:nth-of-type(1),
.about-image.fade-in:nth-of-type(1) {
  animation-delay: 0.2s;
}
.about-text.fade-in:nth-of-type(2),
.about-image.fade-in:nth-of-type(2) {
  animation-delay: 0.4s;
}
.founder-card.fade-in {
  animation-delay: 0.6s;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image img {
    width: 90%;
    margin: 0 auto;
  }

  .divider {
    width: 90%;
  }

  .founder-card {
    text-align: center;
  }
}

.image-text-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-in-out;
}

.image-text-container img {
  width: 70%;
  height: 60vh;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
  animation: fadeInUp 1s ease-in-out;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-text-container img:hover {
  transform: scale(1.03);
}

.text-box {
  width: 30%;
  align-self: flex-end;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease-in-out;
}

.text-box h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.text-box p {
  color: #555;
  margin-bottom: 0;
}

hr {
  margin: 50px auto;
  width: 100%;
  border-top: 2px solid #ddd;
}

/* Responsive design */
@media (max-width: 991px) {
  .image-text-container {
    flex-direction: column;
    align-items: center;
  }

  .image-text-container img,
  .text-box {
    width: 100%;
  }

  .text-box {
    margin-top: 20px;
    text-align: center;
  }
}

/* Custom fade-in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HERO / SLIDER */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}
.logotext {
  font-size: 0.9rem;
  color: white;
  margin-left: 12px;
  margin-top: 12px;
  z-index: 99;
  line-height: 2.2;
  text-align: left;
}
.logotextFooter {
  font-size: 1rem;
  margin-left: 12px;
  z-index: 99;
  line-height: 1.5;
  text-align: left;
  color: black !important;
}
.slider {
  position: absolute;
  inset: 0;
  display: flex;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover; /* ensure cover */
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease;
  opacity: 0;
  filter: contrast(1.03) saturate(1.02);
  height: 100%;
}
.slide.visible {
  opacity: 1;
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
  z-index: 2;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.hero p.lead {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero .cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ABOUT */
.section {
  padding: 1rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}
.founder-card {
  background: var(--card);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-image img {
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 500px;
  height: 500px;
}

/* CRAFT */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.craft-card {
  background: linear-gradient(180deg, #fff, #fbfbfb);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.04);
}
.craft-card h4 {
  margin-top: 0;
  color: var(--accent);
}

/* .catalogue */

.catalogue {
  max-width: 600px;
  margin: 40px auto;
  height: 40vh;
  text-align: center;
  justify-content: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeIn 1s ease-in-out;
}
.catalogue p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.download-btn {
  display: inline-block;
  padding: 15px 40px;
  background:var(--accent);
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.download-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 126, 179, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 126, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 126, 179, 0);
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }
  .download-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  section {
    width: 90%;
  }
}

/* PRODUCTS / GALLERY */

.rows {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 25%;
  flex: 15%;
  max-width: 35%;
  padding: 0 12px;
}

.column img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.column img:hover {
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
  background-size: cover;
  position: relative;
  z-index: 10;
  transform: scale(1.02);
}

.gallery img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 33.3333%;
    flex: 33.3333%;
    max-width: 33.3333%;
    padding: 0 8px;
  }
}

@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
  .site-header {
    min-height: 45vh;
    background-position: center top;
  }
  .nav-wrap { padding: 0 0.5rem; }
  .hero h1 { font-size: 1.4rem; }
  .hero p.lead { font-size: 0.95rem; }
}
.test {
  background: var(--card);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-style: italic;
}
.test p {
  margin: 0;
}

.partners-section {
  background: #f9f9f9;
  padding: 30px 0;
  overflow: hidden;
}

.partners-section h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slide-track {
  display: flex;
  width: calc(200px * 20); /* 10 logos x2 for infinite loop */
  animation: scroll 25s linear infinite;
}

.logo-slide {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}

.logo-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%); /* black & white logos */
  transition: 0.3s;
}

.logo-slide img:hover {
  filter: grayscale(0%); /* color on hover */
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-slide {
    width: 120px;
    margin: 0 10px;
  }
}

/* CONTACT */
.contact {
  margin-top: 0;
  text-align: center;
}

iframe {
  width: 80%;
  height: 300px;
  border: 0;
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 450px;
  gap: 1.5rem;
}
.contact-form {
  background: var(--bg);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  outline: none;
  font-size: 0.95rem;
  background: #fff;
}
.contact-info .map-wrap {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.contact-info iframe {
  width: 100%;
  height: 100%;
}

/* BOOK CTA */
.book-cta {
  background: linear-gradient(180deg, #fffaf2, #fff);
  text-align: center;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* FOOTER */

.footer-link {
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #0d6efd;
}

/* Icon Styling */
.social-icon {
  font-size: 1.3rem;
  margin: 0 10px;
  color: #212529;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
  color: #0d6efd;
}

.site-footer {
  padding: 1.2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* small helpers */
.muted {
  color: var(--muted);
}
.small {
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
}
.small a {
  color: var(--accent);
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: box-shadow 0.3s ease;
  font-size: 2rem;
}
.small a:hover {
  box-shadow: inset;
  padding: 0.5rem 1rem;
  transition: box-shadow 0.3s ease;
}


/* buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 9px;
  text-decoration: none;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.social-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.4rem;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.social-btn svg {
  width: 25px;
  height: 25px;
  fill: var(--accent);
}

/* footer  */

footer {
  background: #fff;
  border-top: 1px solid #000;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #000;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border-right: 1px solid #000;
}
.footer-column:last-child {
  border-right: none;
}
.footer-column h2 {
  font-size: 18px;
  margin-bottom: 15px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin: 8px 0;
}
.footer-column ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
.footer-column ul li a:hover {
  text-decoration: underline;
}
.social-links {
  margin-top: 20px;
}
.social-links a {
  margin-right: 15px;
  text-decoration: none;
  font-size: 14px;
  color: #000;
}
.social-links a:hover {
  text-decoration: underline;
}
.copyright {
  text-align: right;
  font-size: 13px;
  color: #000;
  padding: 10px 20px;
}
.copyright a {
  margin: 0;
  float: left;
  padding: 15px;
}
.copyright a:nth-last-child(1) {
  float: right;
  padding: 0;
}

.contact-details {
  text-align: left !important;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-text {
  margin-left: 10px;
  line-height: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    border-bottom: none;
  }
  .footer-column {
    border-right: none;
    border-bottom: 1px solid #000;
    text-align: center;
  }
  .footer-column:last-child {
    border-bottom: none;
  }
  .copyright {
    text-align: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.footer-section {
  background-color: var(--card);
  color: var(--card-foreground);
}

.footer-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
  list-style-type: none !important;
}

.footer-links a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: var(--foreground);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.social-instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -3rem;
  margin-left: 8rem;
}

.social-instagram img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.borderline {
  border-right: 1px solid black !important;
}

.copyright-text {
  color: var(--foreground);
  font-size: 0.875rem;
}

.trademark {
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-text {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

section.partners {
  background-color: #fcfcfd;
  padding: 80px 0px;
}

section.partners .item {
  margin: 0px 15px;
  cursor: pointer;
  transition: all 0.3s;
}

section.partners .item:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .brand-text {
    font-size: 1.5rem;
  }

  .footer-logo {
    width: 40px;
    height: 40px;
  }

  .footer-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .social-links {
    justify-content: center;
  }

  .copyright-text {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-text {
    order: 2;
    padding-left: 20px;
  }
  .craft-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 120px;
    right: 50px;
    width: auto;
    height: auto;
    border-radius: 12px;
    padding: 15px;
    z-index: 99;
    box-shadow: var(--shadow);
  }
  .main-nav a {
    padding: 1rem;
    line-height: 2.2 !important;
    font-size: 1.1rem;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-toggle {
    display: block;
    z-index: 99;
    color: white;
  }
  section.partners .item {
    margin: 15px;
  }
}

@media (max-width: 560px) {
  .gallery-grid img {
    height: 160px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}
