/* =========================
   Root Variables
========================= */

:root {
  --primary: #9f6546;
  --primary-dark: #7e4c33;
  --primary-light: #bb7b57;

  --dark: #191919;
  --dark-soft: #292929;

  --white: #ffffff;
  --off-white: #f7f5f3;
  --light-gray: #e9e5e2;
  --text-gray: #666666;

  --header-height: 120px;
  --container-width: 1320px;
}

/* =========================
   Reset
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  background-color: var(--white);
  color: var(--dark);

  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

/* =========================
   Header
========================= */

.site-header {
  position: relative;
  z-index: 1000;

  width: 100%;

  background-color: var(--white);
  border-top: 4px solid var(--primary);

  box-shadow: 0 5px 25px rgba(25, 25, 25, 0.08);
}

.header-container {
  width: min(var(--container-width), calc(100% - 80px));
  min-height: var(--header-height);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* =========================
   Header Logo
========================= */

.header-logo {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
}

.header-logo img {
  width: 260px;
  height: 115px;

  object-fit: contain;
}

/* =========================
   Desktop Navigation
========================= */

.desktop-nav {
  align-self: stretch;

  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.nav-link {
  position: relative;

  min-width: 145px;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--dark);

  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";

  position: absolute;
  right: 28px;
  bottom: 29px;
  left: 28px;

  height: 3px;
  border-radius: 20px;

  background-color: var(--primary);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* =========================
   Hamburger Button
========================= */

.menu-toggle {
  width: 46px;
  height: 46px;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  border: 0;
  border-radius: 0;

  background-color: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;

  border-radius: 20px;

  background-color: var(--dark);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.menu-toggle:hover span {
  background-color: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   Mobile Navigation
========================= */

.mobile-nav {
  display: none;
}

/* =========================
   Responsive - Tablet
========================= */

@media (max-width: 991px) {
  :root {
    --header-height: 120px;
  }

  .header-container {
    width: min(100%, calc(100% - 50px));
    min-height: var(--header-height);

    padding: 12px 0 18px;
  }

  .header-logo img {
    width: 220px;
    height: 100px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    padding: 10px 25px 22px;

    display: flex;
    flex-direction: column;

    background-color: var(--white);

    border-top: 1px solid var(--light-gray);

    box-shadow: 0 18px 30px rgba(25, 25, 25, 0.12);

    visibility: hidden;
    opacity: 0;

    transform: translateY(-15px);

    pointer-events: none;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .mobile-nav.active {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
  }

  .mobile-nav-link {
    padding: 18px 0;

    color: var(--dark);

    border-bottom: 1px solid var(--light-gray);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: color 0.3s ease;
  }

  .mobile-nav-link:last-child {
    border-bottom: 0;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: var(--primary);
  }
}

/* =========================
   Responsive - Mobile
========================= */

@media (max-width: 576px) {
  :root {
    --header-height: 105px;
  }

  .header-container {
    width: calc(100% - 30px);
    min-height: var(--header-height);

    padding: 10px 0 16px;

    gap: 20px;
  }

  .header-logo img {
    width: 175px;
    height: 85px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    width: 22px;
  }

  .mobile-nav {
    padding: 8px 15px 18px;
  }

  .mobile-nav-link {
    padding: 16px 0;

    font-size: 14px;
  }
}

/* =========================
   Footer
========================= */

.site-footer {
  padding: 65px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.footer-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   Columns
========================= */

.footer-column h4 {
  margin-bottom: 18px;

  color: var(--dark);

  font-size: 22px;
  font-weight: 800;
}

.footer-column p {
  margin-bottom: 10px;

  color: var(--text-gray);

  font-size: 16px;
  line-height: 1.8;
}

.footer-column a {
  color: var(--text-gray);
  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--primary);
}

/* =========================
   Logo
========================= */

.footer-logo {
  width: 260px;
  flex-shrink: 0;
}

.footer-logo img {
  width: 170px;
  object-fit: contain;
}

/* =========================
   Address
========================= */

.footer-address {
  flex: 1;
  text-align: center;
  padding: 0 70px;
}

/* =========================
   Contact
========================= */

.footer-contact {
  width: 280px;
  flex-shrink: 0;
  text-align: right;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .site-footer {
    padding: 55px 0;
  }

  .footer-container {
    width: calc(100% - 50px);

    flex-direction: column;
    gap: 45px;

    text-align: center;
  }

  .footer-logo,
  .footer-address,
  .footer-contact {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .footer-logo img {
    width: 170px;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .footer-container {
    width: calc(100% - 30px);
    gap: 35px;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-column h4 {
    font-size: 20px;
  }

  .footer-column p {
    font-size: 15px;
  }
}

/* =========================
   Contact Hero
========================= */

.contact-hero {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: url("../img/contact-hero.jpg") center center / cover no-repeat;
}

/* Soft image darkening for better text visibility */

.contact-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(20, 20, 20, 0.2);

  z-index: 1;
}

/* Diagonal ray lines */

.contact-hero::after {
  content: "";

  position: absolute;
  inset: -30%;

  z-index: 1;

  background: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 70px,
    rgba(255, 255, 255, 0.11) 70px,
    rgba(255, 255, 255, 0.11) 105px,
    transparent 105px,
    transparent 155px
  );

  transform: rotate(-2deg);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;

  width: min(var(--container-width), calc(100% - 80px));
  margin: 0 auto;

  text-align: center;
}

.contact-hero-content h1 {
  color: var(--white);

  font-size: clamp(54px, 5vw, 82px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2px;

  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 255, 255, 0.75),
    0 0 22px rgba(159, 101, 70, 0.75),
    0 0 40px rgba(159, 101, 70, 0.55);
}

/* =========================
   Responsive - Tablet
========================= */

@media (max-width: 991px) {
  .contact-hero {
    min-height: 360px;
  }

  .contact-hero-content {
    width: calc(100% - 50px);
  }

  .contact-hero-content h1 {
    font-size: clamp(44px, 7vw, 62px);
  }

  .contact-hero::after {
    background: repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 55px,
      rgba(255, 255, 255, 0.1) 55px,
      rgba(255, 255, 255, 0.1) 82px,
      transparent 82px,
      transparent 120px
    );
  }
}

/* =========================
   Responsive - Mobile
========================= */

@media (max-width: 576px) {
  .contact-hero {
    min-height: 300px;
    background-position: center;
  }

  .contact-hero-content {
    width: calc(100% - 30px);
  }

  .contact-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1px;

    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.95),
      0 0 10px rgba(255, 255, 255, 0.7),
      0 0 18px rgba(159, 101, 70, 0.65);
  }
}

/* =========================
   Contact Information
========================= */

.contact-info-section {
  padding: 85px 0 95px;
  background-color: var(--white);
}

.contact-info-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: 0 auto;
}

/* Heading */

.contact-info-heading {
  margin-bottom: 45px;
}

.contact-info-heading h2 {
  margin-bottom: 16px;

  color: var(--dark);

  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.contact-info-heading p {
  max-width: 720px;

  color: var(--text-gray);

  font-size: 17px;
  line-height: 1.8;
}

/* Cards */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-info-card {
  min-height: 180px;
  padding: 34px 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background-color: var(--off-white);
  border-top: 4px solid var(--primary);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25, 25, 25, 0.1);
}

.contact-info-label {
  margin-bottom: 16px;

  color: var(--primary);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card p {
  color: var(--dark);

  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.contact-info-card a {
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary);
}

/* =========================
   Contact Information Responsive
========================= */

@media (max-width: 991px) {
  .contact-info-section {
    padding: 70px 0 80px;
  }

  .contact-info-container {
    width: calc(100% - 50px);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: 155px;
  }
}

@media (max-width: 576px) {
  .contact-info-section {
    padding: 55px 0 65px;
  }

  .contact-info-container {
    width: calc(100% - 30px);
  }

  .contact-info-heading {
    margin-bottom: 35px;
  }

  .contact-info-heading h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .contact-info-heading p {
    font-size: 15px;
  }

  .contact-info-grid {
    gap: 20px;
  }

  .contact-info-card {
    min-height: 145px;
    padding: 28px 24px;
  }

  .contact-info-card a,
  .contact-info-card p {
    font-size: 16px;
  }
}

/* =========================
   Contact Form
========================= */

.contact-form-section {
  padding: 90px 0;
  background: #f8f8f8;
}

.contact-form-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: auto;
}

.contact-form-heading {
  margin-bottom: 45px;
}

.contact-form-heading h2 {
  margin-bottom: 15px;

  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;

  color: var(--dark);
}

.contact-form-heading p {
  max-width: 650px;

  color: var(--text-gray);
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.form-group label {
  margin-bottom: 10px;

  font-size: 15px;
  font-weight: 700;

  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 16px 18px;

  border: 1px solid #d9d9d9;
  background: #fff;

  font-size: 16px;
  font-family: inherit;

  transition: 0.3s;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow: 0 0 0 3px rgba(159, 101, 70, 0.15);
}

.submit-btn {
  width: max-content;

  padding: 16px 38px;

  border: none;

  background: var(--primary);

  color: #fff;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;

  cursor: pointer;

  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--primary-dark);
}

.success-message {
  display: none;

  margin-top: 20px;

  color: #1f9d48;

  font-size: 16px;
  font-weight: 700;
}

.success-message.show {
  display: block;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .contact-form-container {
    width: calc(100% - 50px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-container {
    width: calc(100% - 30px);
  }

  .submit-btn {
    width: 100%;
  }
}

/* =========================
   Home Hero
========================= */

.home-hero {
  position: relative;
  min-height: 650px;
  padding: 80px 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(15, 15, 15, 0.82) 0%,
      rgba(15, 15, 15, 0.63) 48%,
      rgba(15, 15, 15, 0.18) 100%
    ),
    url("../img/home-hero.jpeg") center center / cover no-repeat;
}

.home-hero-content {
  position: relative;
  z-index: 2;

  width: min(var(--container-width), calc(100% - 80px));
  margin: 0 auto;
}

.home-hero-content > * {
  max-width: 780px;
}

.home-hero-label {
  display: block;
  margin-bottom: 20px;

  color: var(--primary-light);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-hero h1 {
  margin-bottom: 25px;

  color: var(--white);

  font-size: clamp(48px, 5vw, 78px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  text-transform: uppercase;

  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.home-hero p {
  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 19px;
  line-height: 1.8;
}

.home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 32px;

  background-color: var(--primary);
  color: var(--white);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.home-hero-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* =========================
   Home Hero Responsive
========================= */

@media (max-width: 991px) {
  .home-hero {
    min-height: 560px;
    padding: 70px 0;

    background:
      linear-gradient(
        90deg,
        rgba(15, 15, 15, 0.8) 0%,
        rgba(15, 15, 15, 0.58) 70%,
        rgba(15, 15, 15, 0.35) 100%
      ),
      url("../img/home-hero.jpeg") center center / cover no-repeat;
  }

  .home-hero-content {
    width: calc(100% - 50px);
  }

  .home-hero h1 {
    font-size: clamp(44px, 7vw, 64px);
  }

  .home-hero p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .home-hero {
    min-height: 500px;
    padding: 60px 0;

    background:
      linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.7)),
      url("../img/home-hero.jpeg") 62% center / cover no-repeat;
  }

  .home-hero-content {
    width: calc(100% - 30px);
  }

  .home-hero-label {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .home-hero h1 {
    margin-bottom: 20px;

    font-size: 40px;
    letter-spacing: -1px;
  }

  .home-hero p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-hero-btn {
    width: 100%;
    padding: 0 20px;
  }
}

/* =========================
   Home About
========================= */

.home-about {
  padding: 95px 0 105px;
  background-color: var(--white);
}

.home-about-container {
  width: min(1140px, calc(100% - 80px));
  margin: 0 auto;
}

/* Heading */

.home-about-heading {
  max-width: 1050px;
  margin: 0 auto 42px;

  text-align: center;
}

.home-about-heading span {
  display: block;
  margin-bottom: 12px;

  color: var(--primary);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-about-heading h2 {
  color: var(--dark);

  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1.6px;
}

/* Content */

.home-about-content {
  max-width: 1080px;
  margin: 0 auto;
}

.home-about-content p {
  margin-bottom: 30px;

  color: var(--dark-soft);

  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  text-align: justify;
}

.home-about-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   Home About Responsive
========================= */

@media (max-width: 991px) {
  .home-about {
    padding: 75px 0 85px;
  }

  .home-about-container {
    width: calc(100% - 50px);
  }

  .home-about-heading {
    margin-bottom: 35px;
  }

  .home-about-heading h2 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .home-about-content p {
    font-size: 17px;
    line-height: 1.85;
  }
}

@media (max-width: 576px) {
  .home-about {
    padding: 60px 0 70px;
  }

  .home-about-container {
    width: calc(100% - 30px);
  }

  .home-about-heading {
    margin-bottom: 30px;
  }

  .home-about-heading span {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .home-about-heading h2 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -1px;
  }

  .home-about-content p {
    margin-bottom: 24px;

    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================
   Statistics
========================= */

.stats-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.stats-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    120deg,
    rgba(159, 101, 70, 0.03) 0,
    rgba(159, 101, 70, 0.03) 70px,
    transparent 70px,
    transparent 220px
  );
}

.stats-container {
  position: relative;
  z-index: 2;

  width: min(var(--container-width), calc(100% - 80px));
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.stat-card {
  text-align: center;

  padding: 30px 20px;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-icon {
  width: 110px;
  height: 110px;

  margin: 0 auto 28px;

  border: 2px solid var(--primary);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  font-size: 46px;

  transition: 0.35s;
}

.stat-card:hover .stat-icon {
  background: var(--primary);
  color: #fff;
}

.stat-card h3 {
  margin-bottom: 15px;

  color: var(--primary);

  font-size: 58px;
  font-weight: 800;
}

.stat-card p {
  color: var(--dark);

  font-size: 19px;
  font-weight: 600;
}

.stat-card::after {
  content: "";

  display: block;

  width: 70px;
  height: 2px;

  margin: 30px auto 0;

  background: var(--primary);
}

/* Responsive */

@media (max-width: 991px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);

    width: calc(100% - 50px);
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 70px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;

    width: calc(100% - 30px);
  }

  .stat-icon {
    width: 90px;
    height: 90px;
    font-size: 38px;
  }

  .stat-card h3 {
    font-size: 46px;
  }
}

/* =========================
   Mission Section
========================= */

.mission-section {
  padding: 95px 0;
  background-color: var(--white);
}

.mission-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

/* =========================
   Mission Content
========================= */

.mission-label {
  display: block;
  margin-bottom: 10px;

  color: var(--primary);

  font-size: clamp(42px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.mission-content h2 {
  margin-bottom: 30px;

  color: var(--dark);

  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.35;
}

.mission-list {
  padding-left: 24px;
}

.mission-list li {
  margin-bottom: 15px;
  padding-left: 5px;

  color: var(--text-gray);

  font-size: 17px;
  line-height: 1.8;
}

.mission-list li:last-child {
  margin-bottom: 0;
}

.mission-list li::marker {
  color: var(--primary);
  font-size: 1.1em;
}

/* =========================
   Mission Image
========================= */

.mission-image {
  position: relative;
  overflow: hidden;

  min-height: 520px;
}

.mission-image::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    transparent 65%
  );

  pointer-events: none;
}

.mission-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.mission-image:hover img {
  transform: scale(1.035);
}

/* =========================
   Mission Responsive
========================= */

@media (max-width: 991px) {
  .mission-section {
    padding: 75px 0;
  }

  .mission-container {
    width: calc(100% - 50px);

    grid-template-columns: 1fr;
    gap: 45px;
  }

  .mission-content {
    order: 1;
  }

  .mission-image {
    order: 2;
    min-height: 420px;
  }

  .mission-image img {
    min-height: 420px;
  }
}

@media (max-width: 576px) {
  .mission-section {
    padding: 60px 0;
  }

  .mission-container {
    width: calc(100% - 30px);
    gap: 35px;
  }

  .mission-label {
    font-size: 40px;
  }

  .mission-content h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .mission-list {
    padding-left: 20px;
  }

  .mission-list li {
    margin-bottom: 13px;

    font-size: 15px;
    line-height: 1.75;
  }

  .mission-image,
  .mission-image img {
    min-height: 300px;
  }

  .mission-image::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.28),
      transparent 50%
    );
  }
}

/* =========================
   Social Responsibility
========================= */

.social-section {
  padding: 100px 0;
  background: #fafafa;
}

.social-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

/* Image */

.social-image {
  overflow: hidden;
}

.social-image img {
  width: 100%;
  height: 620px;

  object-fit: cover;

  transition: 0.5s;
}

.social-image:hover img {
  transform: scale(1.04);
}

/* Content */

.social-label {
  display: block;

  margin-bottom: 12px;

  color: var(--primary);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-content h2 {
  margin-bottom: 28px;

  color: var(--dark);

  font-size: clamp(38px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.2;
}

.social-content p {
  margin-bottom: 28px;

  color: var(--text-gray);

  font-size: 18px;
  line-height: 1.9;
}

.social-content p:last-child {
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {
  .social-section {
    padding: 80px 0;
  }

  .social-container {
    width: calc(100% - 50px);

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .social-image {
    order: 2;
  }

  .social-content {
    order: 1;
  }

  .social-image img {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .social-section {
    padding: 65px 0;
  }

  .social-container {
    width: calc(100% - 30px);
  }

  .social-content h2 {
    font-size: 34px;
  }

  .social-content p {
    font-size: 16px;

    line-height: 1.8;
  }

  .social-image img {
    height: 300px;
  }
}

/* =========================
   Research & Development
========================= */

.research-section {
  padding: 100px 0;
  background: #fff;
}

.research-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

/* Content */

.research-label {
  display: block;

  margin-bottom: 12px;

  color: var(--primary);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.research-content h2 {
  margin-bottom: 28px;

  color: var(--dark);

  font-size: clamp(38px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.2;
}

.research-content p {
  margin-bottom: 24px;

  color: var(--text-gray);

  font-size: 18px;
  line-height: 1.9;
}

.research-content p:last-child {
  margin-bottom: 0;
}

/* Image */

.research-image {
  overflow: hidden;
}

.research-image img {
  width: 100%;
  height: 620px;

  object-fit: cover;

  transition: 0.5s;
}

.research-image:hover img {
  transform: scale(1.04);
}

/* Responsive */

@media (max-width: 991px) {
  .research-section {
    padding: 80px 0;
  }

  .research-container {
    width: calc(100% - 50px);

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .research-image {
    order: 2;
  }

  .research-content {
    order: 1;
  }

  .research-image img {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .research-section {
    padding: 65px 0;
  }

  .research-container {
    width: calc(100% - 30px);
  }

  .research-content h2 {
    font-size: 34px;
  }

  .research-content p {
    font-size: 16px;

    line-height: 1.8;
  }

  .research-image img {
    height: 300px;
  }
}

/* =========================
   Services Hero
========================= */

.services-hero {
  position: relative;

  min-height: 500px;
  padding: 80px 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.38)),
    url("../img/services-hero.jpeg") center center / cover no-repeat;
}

.services-hero-content {
  position: relative;
  z-index: 2;

  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;

  text-align: center;
}

.services-hero-content h1 {
  margin-bottom: 24px;

  color: var(--dark);

  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -2px;
}

.services-hero-line {
  width: min(900px, 80%);
  height: 2px;
  margin: 0 auto 28px;

  background-color: var(--dark);
}

.services-hero-content p {
  max-width: 1450px;
  margin: 0 auto;

  color: var(--dark);

  font-size: clamp(24px, 2.4vw, 39px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.5px;
}

/* =========================
   Services Hero Responsive
========================= */

@media (max-width: 991px) {
  .services-hero {
    min-height: 430px;
    padding: 70px 0;

    background-position: center;
  }

  .services-hero-content {
    width: calc(100% - 50px);
  }

  .services-hero-content h1 {
    font-size: 52px;
  }

  .services-hero-line {
    width: 85%;
  }

  .services-hero-content p {
    max-width: 850px;

    font-size: 25px;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .services-hero {
    min-height: 380px;
    padding: 55px 0;

    background-position: 58% center;
  }

  .services-hero-content {
    width: calc(100% - 30px);
  }

  .services-hero-content h1 {
    margin-bottom: 20px;

    font-size: 40px;
    letter-spacing: -1px;
  }

  .services-hero-line {
    width: 100%;
    margin-bottom: 22px;
  }

  .services-hero-content p {
    font-size: 19px;
    line-height: 1.6;
  }
}

/* =========================
   Services Introduction
========================= */

.services-intro {
  padding: 90px 0;
  background: var(--white);
}

.services-intro-container {
  width: min(1100px, calc(100% - 80px));
  margin: auto;
}

.services-intro-container p {
  margin-bottom: 28px;

  color: var(--text-gray);

  font-size: 18px;
  line-height: 2;

  text-align: justify;
}

.services-intro-container p:last-child {
  margin-bottom: 0;
}

.services-intro-container strong {
  color: var(--dark);
}

/* Responsive */

@media (max-width: 991px) {
  .services-intro {
    padding: 70px 0;
  }

  .services-intro-container {
    width: calc(100% - 50px);
  }

  .services-intro-container p {
    font-size: 17px;
    line-height: 1.9;
  }
}

@media (max-width: 576px) {
  .services-intro {
    padding: 55px 0;
  }

  .services-intro-container {
    width: calc(100% - 30px);
  }

  .services-intro-container p {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
  }
}

/* =========================
   Core Services
========================= */

.core-services {
  padding: 100px 0;
  background: #f8f8f8;
}

.core-services-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: auto;
}

.core-services-heading {
  text-align: center;
  margin-bottom: 65px;
}

.core-services-heading span {
  color: var(--primary);

  font-size: 15px;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.core-services-heading h2 {
  margin: 12px 0 20px;

  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 700;

  color: var(--dark);
}

.core-services-heading p {
  max-width: 820px;
  margin: auto;

  color: var(--text-gray);

  font-size: 18px;
  line-height: 1.8;
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #fff;

  padding: 45px 35px;

  border-radius: 10px;

  border-top: 4px solid var(--primary);

  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 90px;
  height: 90px;

  margin-bottom: 25px;

  border: 2px solid var(--primary);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  font-size: 38px;

  transition: 0.35s;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  margin-bottom: 18px;

  color: var(--dark);

  font-size: 28px;
}

.service-card p {
  margin-bottom: 22px;

  color: var(--text-gray);

  line-height: 1.8;
}

.service-card ul {
  padding-left: 22px;
}

.service-card li {
  margin-bottom: 12px;

  color: var(--text-gray);
}

.service-card li::marker {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 991px) {
  .core-services {
    padding: 80px 0;
  }

  .core-services-container {
    width: calc(100% - 50px);
  }

  .core-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .core-services {
    padding: 60px 0;
  }

  .core-services-container {
    width: calc(100% - 30px);
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

/* =========================
   Products Hero
========================= */

.products-hero {
  position: relative;

  min-height: 500px;
  padding: 80px 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    url("../img/products-hero.jpeg") center center / cover no-repeat;
}

.products-hero-content {
  position: relative;
  z-index: 2;

  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;

  text-align: center;
}

.products-hero-content h1 {
  margin-bottom: 24px;

  color: var(--dark);

  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -2px;
}

.products-hero-line {
  width: min(900px, 80%);
  height: 2px;
  margin: 0 auto 28px;

  background-color: var(--dark);
}

.products-hero-content p {
  max-width: 1450px;
  margin: 0 auto;

  color: var(--dark);

  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.5px;
}

/* =========================
   Products Hero Responsive
========================= */

@media (max-width: 991px) {
  .products-hero {
    min-height: 430px;
    padding: 70px 0;
  }

  .products-hero-content {
    width: calc(100% - 50px);
  }

  .products-hero-content h1 {
    font-size: 52px;
  }

  .products-hero-line {
    width: 85%;
  }

  .products-hero-content p {
    font-size: 25px;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .products-hero {
    min-height: 380px;
    padding: 55px 0;

    background-position: center;
  }

  .products-hero-content {
    width: calc(100% - 30px);
  }

  .products-hero-content h1 {
    margin-bottom: 20px;

    font-size: 40px;
    letter-spacing: -1px;
  }

  .products-hero-line {
    width: 100%;
    margin-bottom: 22px;
  }

  .products-hero-content p {
    font-size: 19px;
    line-height: 1.6;
  }
}

/* =========================
   Products Section
========================= */

.products-section {
  padding: 100px 0;
  background: #f7f7f8;
}

.products-container {
  width: min(var(--container-width), calc(100% - 80px));
  margin: auto;
}

/* Heading */

.products-heading {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.products-heading span {
  display: block;
  margin-bottom: 12px;

  color: var(--primary);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.products-heading h2 {
  margin-bottom: 18px;

  color: var(--dark);

  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
}

.products-heading p {
  color: var(--text-gray);

  font-size: 18px;
  line-height: 1.8;
}

/* Category */

.product-category {
  padding: 40px;

  background: #fff;

  border-radius: 12px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Header */

.category-header {
  display: flex;
  align-items: center;
  gap: 24px;

  margin-bottom: 30px;
}

.category-icon {
  width: 75px;
  height: 75px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(159, 101, 70, 0.08);

  color: var(--primary);

  font-size: 30px;
}

.category-header h3 {
  margin-bottom: 10px;

  color: var(--dark);

  font-size: 30px;
  font-weight: 700;
}

.category-header p {
  max-width: 750px;

  color: var(--text-gray);

  line-height: 1.8;
}

/* Product List */

.product-list {
  padding-top: 25px;

  border-top: 1px solid #e7e7e7;
}

.product-list ul {
  columns: 3;
  column-gap: 60px;

  padding-left: 20px;
}

.product-list li {
  margin-bottom: 14px;

  color: var(--text-gray);

  font-size: 16px;
  line-height: 1.7;
}

.product-list li::marker {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 991px) {
  .products-container {
    width: calc(100% - 50px);
  }

  .product-list ul {
    columns: 2;
  }
}

@media (max-width: 576px) {
  .products-section {
    padding: 70px 0;
  }

  .products-container {
    width: calc(100% - 30px);
  }

  .product-category {
    padding: 28px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-header h3 {
    font-size: 24px;
  }

  .product-list ul {
    columns: 1;
  }
}


.product-category {
    padding: 40px;
    margin-bottom: 35px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.product-category:last-child {
    margin-bottom: 0;
}