/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   ROOT VARIABLES (Your Theme)
================================ */
:root {
  --sepia: #AD9B86;
  --walnut: #75604E;
  --truffle: #262219;
  --porcelain: #F4F5F1;
}

/* ===============================
   TYPOGRAPHY
================================ */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--porcelain);
  color: var(--truffle);
}

h1, h2, h3, .ital-title {
  font-family: 'Cormorant Garamond', serif;
}

/* ===============================
   NAVBAR
================================ */
.ital-navbar {
  background: var(--porcelain);
  border-bottom: 1px solid var(--sepia);
  padding: 15px 0 !important;
}

/* NAV LINKS */
.ital-nav-links .nav-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 10px;
  cursor: pointer;
  transition: 0.2s;
}

.ital-nav-links .nav-link:hover {
  color: var(--truffle);
}

/* CTA BUTTON */
.ital-btn-outline {
  border: 1px solid var(--walnut);
  background: transparent;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
	text-decoration: none;
	 color: var(--walnut);
}

.ital-btn-outline:hover {
  background: var(--walnut);
  color: var(--porcelain);
}

/* ===============================
   DROPDOWN (DESKTOP)
================================ */
.ital-dropdown {
  position: relative;
}

.ital-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--porcelain);
  border: 1px solid var(--sepia);
  min-width: 220px;
  display: none;
  z-index: 100;
	
}

.ital-dropdown:hover .ital-dropdown-menu {
  display: block;
}

.ital-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--walnut);
  text-decoration: none;
  border-bottom: 1px solid rgba(173,155,134,0.2);
  cursor: pointer;
}

.ital-dropdown-menu a:hover {
  background: rgba(173,155,134,0.1);
  color: var(--truffle);
}

/* ===============================
   MOBILE TOGGLE
================================ */
.ital-menu-toggle {
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===============================
   MOBILE MENU (FULLSCREEN)
================================ */
.ital-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--truffle);
  transform: translateY(-100%);
  transition: 0.4s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ital-mobile-menu.active {
  transform: translateY(0);
}

/* CLOSE BUTTON */
.ital-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--sepia);
  cursor: pointer;
}

/* MOBILE CONTENT */
.ital-mobile-inner {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

/* LINKS */
.ital-mobile-links {
  list-style: none;
  margin-bottom: 40px;
}

.ital-mobile-links li {
  margin: 20px 0;
}

.ital-mobile-links a {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  text-decoration: none;
  cursor: pointer;
}

/* MOBILE DROPDOWN */
.ital-mobile-dropdown span {
  display: block;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--sepia);
  cursor: pointer;
	text-transform: uppercase; 
}

.ital-mobile-submenu {
  display: none;
  margin-top: 10px;
}

.ital-mobile-dropdown.active .ital-mobile-submenu {
  display: block;
}

.ital-mobile-submenu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #fff;
}

/* ===============================
   PRIMARY BUTTON
================================ */
.ital-btn-primary {
  background: var(--sepia);
  border: none;
  padding: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--porcelain);
  cursor: pointer;
  transition: 0.3s;
}

.ital-btn-primary:hover {
  background: var(--walnut);
}

/* HERO */
.ital-hero {
 min-height: calc(100vh - 70px); /* subtract navbar */
  display: flex;
	background: var(--porcelain);
}
.container-fluid{
	padding: 0;
}
/* LEFT */
.ital-hero-left {
  display: flex;
  align-items: center;
}


.ital-hero-inner {
   padding: 80px;   /* ✅ EXACT as you want */
  width: 100%;
}

/* CONTENT */
.ital-hero-content {
  max-width: 520px;
}
.ital-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 30px;
}

.ital-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 25px;
}

.ital-title em {
  color: var(--walnut);
  font-style: italic;
}

.ital-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--walnut);
  margin-bottom: 40px;
}

/* BUTTONS */
.ital-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ital-btn-primary {
  background: var(--truffle);
  color: #fff;
  padding: 12px 30px;
  letter-spacing: 2px;
  font-size: 12px;
}

.ital-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  cursor: pointer;
}

/* RIGHT SIDE */
.ital-hero-right {
  background: var(--truffle);
  position: relative;
  min-height: 100vh;
}

.ital-hero-img {
  max-width: 300px;
}

/* BADGE */
.ital-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  border: 1px solid var(--sepia);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-align: center;
  color: var(--sepia);
}
@media (max-width: 991px) {
  .ital-hero-left {
    padding: 60px 20px;
  }

  .ital-title {
    font-size: 42px;
  }

  .ital-hero-right {
    min-height: 300px;
  }

  .ital-badge {
    display: none;
  }
}
.ital-btn-primary {
  background: var(--truffle);
  color: var(--porcelain);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s;
	text-decoration: none;
}

.ital-btn-primary:hover {
  background: var(--walnut);
}
.ital-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
/* SECTION */
.ital-stats {
  background: var(--truffle);
  padding: 50px 0;
}

/* ITEM */
.ital-stat-item {
/*  margin-bottom: 30px;*/
}

/* ICON */
.ital-stat-icon {
  font-size: 20px;
  color: var(--sepia);
/*  margin-bottom: 10px;*/
}

/* NUMBER */
.ital-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--sepia);
  margin-bottom: 8px;
}

/* LABEL */
.ital-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(173,155,134,0.6);
}
/* SECTION */
.ital-portfolio {
  padding: 80px 0 0;
  background: var(--porcelain);
}

/* TITLE */
.ital-section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 60px;
}

/* ROW */
.ital-portfolio-row {
  margin-bottom: 80px;
}

/* SIDE ITEMS */
.ital-brand-item {
  text-align: center;
}

.ital-brand-sub {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--sepia);
}

.ital-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin: 10px 0;
}
/* BRAND LOGO */
.ital-brand-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* CENTER LOGO (bigger) */
.ital-brand-logo.center {
  max-width: 220px;
  margin-bottom: 20px;
}
.ital-brand-logo:hover {
  opacity: 1;
  transition: 0.3s ease;
}
@media (max-width: 991px) {

  .ital-brand-logo {
    max-width: 140px;
  }

  .ital-brand-logo.center {
    max-width: 180px;
  }

}
/* ALIGNMENT FIX */
.ital-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HIGHLIGHT CARD ALIGNMENT */
.ital-brand-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ital-brand-location {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--sepia);
  margin-top: 10px;
}

.ital-brand-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* CENTER CARD */
.ital-brand-highlight {
  background: var(--truffle);
  color: var(--sepia);
  padding: 80px 40px;
}

.ital-brand-highlight h2 {
  letter-spacing: 6px;
  font-size: 28px;
}

.ital-brand-highlight p {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 15px 0;
}

.ital-brand-highlight a {
    display: inline-block;
    margin-top: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sepia);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* DIVIDER */
.ital-divider {
  height: 1px;
  background: var(--sepia);
  margin-top: 0;
}
@media (max-width: 991px) {

  .ital-portfolio-row {
    gap: 40px;
  }

  .ital-brand-highlight {
    padding: 60px 20px;
  }

}
/* SECTION */
.ital-what {
  padding: 100px 0;
  background: var(--porcelain);
}

/* LEFT */
.ital-what-left {
  padding-right: 60px;
}

.ital-what-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin: 20px 0;
}

.ital-what-title em {
  color: var(--walnut);
  font-style: italic;
}

.ital-what-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--walnut);
  margin-bottom: 40px;
}

/* GRID */
.ital-what-grid {
  display: grid;
  	grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* BOX */
.ital-box {
  padding: 40px 30px;
}

.ital-box span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--sepia);
}

.ital-box h5 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 10px 0;
}

.ital-box p {
	    color: var(--walnut);
  font-size: 13px;
  line-height: 1.8;
}

/* LIGHT */
.ital-box.light {
  background: var(--porcelain);
  color: var(--truffle);
}

/* DARK */
.ital-box.dark {
  background: var(--truffle);
  color: var(--porcelain);
}

.ital-box.dark p {
  color: var(--sepia);
}


@media (max-width: 991px) {

  .ital-what-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .ital-what-title {
    font-size: 36px;
  }

  .ital-what-grid {
    grid-template-columns: 1fr;
  }

}
/* FOOTER */
.ital-footer {
  padding: 20px 0;
  border-top: 1px solid var(--sepia);
  background: var(--porcelain);
}

/* LOGO */
.ital-footer-logo {
  height: 30px;
  opacity: 0.8;
}

/* LINKS */
.ital-footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ital-footer-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  text-decoration: none;
  transition: 0.2s;
}

.ital-footer-links a:hover {
  color: var(--truffle);
}

/* COPYRIGHT */
.ital-footer-copy {
  font-size: 12px;
  color: var(--sepia);
}
@media (max-width: 768px) {

  .ital-footer {
    text-align: center;
  }

  .ital-footer-links {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }

  .ital-footer-logo {
    margin-bottom: 15px;
  }

}

/*ABOUT US*/

/* SECTION */
.ital-about-hero {
  padding: 100px 0 0;
  background: var(--porcelain);
}

/* LEFT */
.ital-about-left {
  padding-right: 60px;
}

.ital-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
}

.ital-about-title em {
  color: var(--walnut);
  font-style: italic;
}

/* RIGHT */
.ital-about-right p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--walnut);
  margin-bottom: 24px;
}

@media (max-width: 991px) {

  .ital-about-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .ital-about-title {
    font-size: 40px;
  }

  .ital-about-right p {
    max-width: 100%;
  }

}
/* SECTION */
.ital-values {
  padding: 50px 0;
  background: var(--porcelain);
}

/* ROW SPACING */
.ital-values-row {
  margin-top: 60px;
}

/* ITEM */
.ital-value-item {
  padding: 0 40px;
}

/* NUMBER */
.ital-value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--sepia);
  display: block;
  margin-bottom: 10px;
}

/* TITLE */
.ital-value-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.ital-value-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--walnut);
}

/* VERTICAL DIVIDER */
.ital-value-border {
  border-left: 1px solid rgba(173,155,134,0.4);
}
@media (max-width: 991px) {

  .ital-value-item {
    padding: 0;
    margin-bottom: 40px;
  }

  .ital-value-border {
    border-left: none;
  }

}
/*Reatilers*/
/* SECTION */
.ital-retailer {
  padding: 100px 0;
  background: var(--truffle);
  color: var(--porcelain);
}

/* LEFT */
.ital-retailer-left {
  padding-right: 60px;
}

/* TEXT */
.ital-retailer-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--sepia);
  margin: 30px 0;
  max-width: 520px;
}

/* BUTTON VARIANT */
.ital-btn-light {
  background: var(--walnut);
  color: var(--porcelain);
}

/* RIGHT LIST */
.ital-retailer-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.ital-retailer-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(173,155,134,0.3);
  font-size: 14px;
  line-height: 1.7;
  color: var(--sepia);
  position: relative;
  padding-left: 20px;
}

/* DASH BEFORE TEXT */
.ital-retailer-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sepia);
}
@media (max-width: 991px) {

  .ital-retailer-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

}
/*CONTACT*/
/* SECTION */
.ital-contact {
  min-height: 100vh;
}

/* INNER WRAPPER */
.ital-contact-inner {
  padding: 80px 60px;
}

/* LEFT */
.ital-contact-left {
  background: var(--porcelain);
}

/* RIGHT */
.ital-contact-right {
  background: var(--truffle);
  color: var(--porcelain);
}

/* META WRAPPER */
.ital-contact-meta {
  margin-top: 40px;
}

/* EACH BLOCK */
.ital-meta-block {
  margin-bottom: 28px; /* tighter, consistent spacing */
}

/* LABEL */
.ital-meta-block span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 6px;
}
.ital-contact-left .ital-divider {
  margin-top: 40px;
  max-width: 90%;
}
.ital-contact-desc {
  margin-top: 20px;
  margin-bottom: 30px;
}
/* VALUE */
.ital-meta-block p {
  font-size: 15px;
  color: var(--truffle);
  margin: 0;
}
/* FORM OVERRIDE FOR DARK BG */
.ital-contact-right .ital-form input,
.ital-contact-right .ital-form textarea,
.ital-contact-right .ital-form select {
  color: var(--porcelain);
  border-bottom: 1px solid rgba(173,155,134,0.4);
}

.ital-contact-right .ital-form input::placeholder,
.ital-contact-right .ital-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
@media (max-width: 991px) {

  .ital-contact-inner {
    padding: 60px 20px;
  }

}
/* FIELD WRAPPER */
.ital-field {
  margin-bottom: 35px;
}

/* LABEL */
.ital-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 10px;
}

/* INPUT / SELECT / TEXTAREA */
.ital-field input,
.ital-field select,
.ital-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(173,155,134,0.5);
  padding: 8px 0;
  font-size: 14px;
  color: var(--porcelain);
}

/* REMOVE BOOTSTRAP STYLE */
.ital-field input:focus,
.ital-field select:focus,
.ital-field textarea:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid var(--sepia);
}

/* PLACEHOLDER */
.ital-field textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

/* SELECT FIX */
.ital-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}