* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.header-container {
  max-width:92%;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  width: 100%;
}
.section--pad {
  padding: 60px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
  transform: translateY(-2px);
}
.btn--gold {
  background: #C6A25A;
  color: #0B2341;
}
.btn--gold:hover {
  background: #d4b06e;
  box-shadow: 0 10px 24px rgba(198, 162, 90, .35);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: #C6A25A;
  border-color: #C6A25A;
}
.btn--outline-gold:hover {
  background: #C6A25A;
  color: #0B2341;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn--outline-white:hover {
  background: #fff;
  color: #0B2341;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--navy-outline {
  background: transparent;
  color: #0B2341;
  border-color: #0B2341;
}
.btn--navy-outline:hover {
  background: #0B2341;
  color: #fff;
  transform: translateY(-2px);
}

.topbar
{
  background: #142e4f;
  border-bottom: 1px solid #E6E8EB;
  font-size: 14px;
  color: #ffffff;

}
.topbar .topbar-container
{
  display: flex;
  align-items: center;
  gap:40px;
  padding:10px 32px 10px 110px;
}
.topbar .topbar-item
{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size:15px;
  font-weight:500;
}
.topbar .topbar-item svg
{
  width:24px;
  height:24px;
  color: #C6A25A;
  flex-shrink: 0;
}

header.header
{
  background: #faf9f6;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom:1px solid #cccccc;
}
header .nav
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}
header .logo
{
  display: flex;
  flex-direction: column;
  line-height: 1;
}
header .logo-main
{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: #0B2341;
  letter-spacing: .03em;
}
header .logo-sub {
  font-size: 10px;
  letter-spacing: .35em;
  color: #C6A25A;
  font-weight: 600;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #C6A25A;
}
header .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
header .nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #0B2341;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  position: relative;
}
header .nav-links a.active {
  color: #C6A25A;
  border-bottom: 2px solid #C6A25A;
}
header .nav-links a:not(.active):hover {
  color: #C6A25A;
}
header .nav-links svg {
  width: 11px;
  height: 11px;
  margin-top: 1px;
}
header .nav-cta {
  display: flex;
  align-items: center;
}
header .nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  header .nav-links {
    display: none;
  }
  header .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #0B2341;
  }
}

@media (max-width: 900px) {
  .section--pad {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .topbar .topbar-container {
    display: none;
  }
  header .nav {
    padding: 18px 20px;
  }
  .header-container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  header .nav {
    padding: 10px 15px;
  }
  .header-container {
    padding: 0 15px;
  }
  .section--pad {
    padding: 40px 0;
  }
}








/* ============================
   HEADER - BASE / DESKTOP
   ============================ */
.header .header-container.nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
}

.header .nav-links {
   display: flex;
   align-items: center;
   gap: 32px;
}

.header .nav-links > a,
.header .nav-item > .submenu-toggle {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 0.02em;
   text-decoration: none;   
   color: inherit;
}

.header .nav-item {
   position: relative;
}

.header .nav-item .submenu-toggle svg {
   width: 16px;
   height: 16px;
   transition: transform 0.25s ease;
}

/* ---- desktop hover submenu ---- */
.header .submenu {
   position: absolute;
   top: 100%;
   left:0;
   min-width:300px;
   background: #ffffff;
   border-radius:8px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
   padding:8px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(8px);
   transition: all 0.2s ease;
   z-index:40;
}

.header .submenu a {
   display: block;
   padding: 10px 12px;
   border-radius: 6px;
   font-size: 15px;
   text-decoration: none;
   color: inherit;
}

.header .submenu a:hover {
   background: #f4f4f4;
}

/* show submenu on hover (desktop only) */
.header .nav-item.has-submenu:hover .submenu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

/* hamburger hidden on desktop */
.header .menu-toggle {
   display: none;
}

.nav-overlay {
   display: none;
}



/* ============================
   Desktop / TABLET / MOBILE (<=1024px)
   ============================ */
@media (max-width: 1024px) {

   .header .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 30px;
      height: 30px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 60;
   }
   .header .menu-toggle .bar {
      width: 100%;
      height: 2px;
      background: var(--kaloya-navy, #0b2545);
      border-radius: 2px;
      transition: all 0.3s ease;
   }
   .header.nav-open .menu-toggle .bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
   }
   .header.nav-open .menu-toggle .bar:nth-child(2) {
      opacity: 0;
   }
   .header.nav-open .menu-toggle .bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
   }
   .header .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 78%;
      max-width: 340px;
      background: #fff;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 60px 24px 24px;
      box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
      transition: right 0.35s ease;
      z-index: 55;
      overflow-y: auto;
   }
   .header.nav-open .nav-links {
      right: 0;
   }
   .header .nav-links > a,
   .header .nav-item {
      width: 100%;
      padding: 14px 0;
      border-bottom: 1px solid #eee;
   }
   .header .nav-item .submenu-toggle {
      width: 100%;
      justify-content: space-between;
   }
   .header .nav-item.submenu-open .submenu-toggle svg {
      transform: rotate(180deg);
   }
   .header .submenu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
   }
   .header .nav-item.submenu-open .submenu {
      max-height: 450px;
      padding: 4px 0 4px 12px;
   }
   .header .submenu a {
      padding: 10px;
   }
   .header .nav-cta {
      display: none;
   }
   .nav-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 50;
   }
   .header.nav-open ~ .nav-overlay,
   body.nav-open .nav-overlay {
      opacity: 1;
      visibility: visible;
   }
   body.nav-open {
      overflow: hidden;
   }
}

@media (max-width: 480px) {
   .header .nav-links {
      width: 100%;
      max-width: none;
   }
}





/* Breadcrumb CSS */

.breadcrumb-panel
{
	padding:10px 0px 12px 0px;
	border:1px solid #cccccc;
}


.breadcrumb-arrow
{
	font-size:12px;
}

.breadcrumb-link
{
	font-size:15px;
	color:#000000;
}
.breadcrumb-link a
{
	font-size:15px;
	color:#ab740c;
	text-decoration:none;
}
.breadcrumb-link a:hover
{
	font-size:15px;
	color:#000000;
	text-decoration:underline;
}