:root {
  --ink: #3d434a;
  --gold: #b97a2d;
  --gold-hover: #9e6724;
  --line: #e7e1dd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.6 'Open Sans', Arial, sans-serif;
  background-color: #ffffff;
}

h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  line-height: 1.1;
  margin: 0;
}

h2 { font-size: 56px; }
h3 { margin: 0; font-size: 18px; font-weight: 700; }
p { margin: 0 0 16px; }

.shell {
  width: min(1200px, 88%);
  margin: auto;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navbar Styles --- */
.navbar {
  height: 90px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
}

.container-fluid.padded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5%;
  height: 100%;
}

.navbar-brand img { display: block; }

.navbar-nav {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: #31343a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: color 0.3s ease;
  cursor: pointer;
}
.nav-link:hover { color: #6d7278; }

.nav-item.dropdown { position: relative; }

/* === NEW: Dropdown Caret (Arrow) === */
.nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
}
.nav-link.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.3s ease;
}
.nav-item.dropdown:hover .nav-link.dropdown-toggle::after,
.nav-item.dropdown.open .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  list-style: none;
  padding: 16px 0;
  margin: 0;
  min-width: 220px;
  border-radius: 4px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  display: block;
  padding: 12px 32px;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.navbar-toggler, #mnu-toggler { display: none; }

/* --- Hero Section Styles --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  place-items: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background-color: #111;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1200px, 92%);
}
.hero-content h1 { font-size: clamp(56px, 5vw, 82px); line-height: 1.05; margin: 0 auto; }
.hero-content p { font-size: 18px; line-height: 1.6; max-width: 900px; margin: 28px auto 40px; }

.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font: 600 13px 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold { background: var(--gold); color: #fff; }
.gold:hover { background: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(185, 122, 45, 0.2); }
.outline { border-color: #fff; color: #fff; background: transparent; }
.outline:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

/* --- Main Content Sections --- */
.about { padding: 120px 0; display: grid; grid-template-columns: 46% 1fr; gap: 7%; align-items: center; }
.about > img { width: 100%; border-radius: 4px; }
.about h2 { margin-bottom: 24px; }
.about p { font-size: 16px; line-height: 1.7; color: #555; }

.products { padding: 40px 0 120px; }
.products > h2 { font-size: 48px; margin-bottom: 12px; }
.products .subtitle { font-size: 18px; color: #666; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 34px; margin-top: 48px; }
.products-grid img { width: 100%; aspect-ratio: 1.13; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.products-grid h3 { font-size: 20px; margin-bottom: 8px; }
.products-grid p { font-size: 15px; line-height: 1.6; color: #666; }

.note { text-align: center; font-size: 16px !important; line-height: 1.7 !important; margin-top: 64px !important; color: #666; }

.why { padding-bottom: 120px; display: grid; grid-template-columns: 30% 1fr; gap: 40px; }
.why h2 { font-size: 48px; margin-bottom: 16px; }
.why > div > p { font-size: 18px; color: #666; max-width: 280px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-grid article { min-height: 140px; background: #fbf8f6; padding: 32px 28px; border-radius: 4px; transition: transform 0.3s ease; }
.why-grid article:hover { transform: translateY(-4px); }
.why-grid b { font-size: 24px; font-weight: 500; color: #df9986; }
.why-grid h3 { font-size: 20px; font-weight: 600; margin: 12px 0 8px; }
.why-grid p { font-size: 15px; line-height: 1.6; color: #555; }

.reasons { color: #fff; background: url('assets/Section\ -\ Chapu.png') center/cover; padding: 120px max(6%, calc((100% - 1100px) / 2)); }
.reasons > div { max-width: 960px; }
.reasons h2 { font-size: 48px; margin-bottom: 16px; }
.reasons > div > p { max-width: 540px; font-size: 16px; line-height: 1.6; margin-bottom: 64px; color: #e5e5e5; }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 80px; }
.reason-grid h3 { font-size: 20px; font-family: 'Open Sans', sans-serif; font-weight: 500; margin-bottom: 12px; }
.reason-grid p { font-size: 15px; line-height: 1.6; color: #d1d1d1; }

.faq { padding: 120px 0; display: grid; grid-template-columns: 30% 1fr; gap: 60px; }
.faq h2 { font-size: 48px; }
.accord { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 24px 0; }
summary { cursor: pointer; list-style: none; color: #444; font-size: 18px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary b { font-size: 24px; font-weight: 400; }
.accord p { font-size: 16px; line-height: 1.6; color: #666; margin: 16px 24px 0 0; }

.visit { color: #fff; background: url('assets/Contact\ Us.png') center/cover; padding: 80px max(6%, calc((100% - 1200px) / 2)); }
.visit-in { display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: center; }
.visit h2, form h2 { font-size: 48px; margin-bottom: 24px; }
.visit p { font-size: 16px; line-height: 1.7; color: #e5e5e5; margin-bottom: 24px; }
.address-block { margin-top: 32px; }
.address-block b { font-size: 18px; color: #fff; }

form { background: #fff; color: #555; border-radius: 6px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
form h2 { color: #222; font-size: 36px; }
label { display: block; text-transform: uppercase; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
input, select, textarea { width: 100%; border: 1px solid #ddd; background: #fbfbfb; padding: 16px; margin-top: 8px; font: 14px 'Open Sans', Arial, sans-serif; outline-color: var(--gold); border-radius: 4px; transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { height: 100px; resize: vertical; }
form .btn { width: 100%; margin-top: 12px; }

footer { padding: 80px 5.5% 32px; color: #53575d; background: #fafafa; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.75fr 0.75fr 1.5fr 1.05fr; gap: 40px; }
.foot-logo { width: 140px; margin-bottom: 16px; }
.footer-grid h3 { font-size: 16px; color: #222; margin: 4px 0 16px; }
.footer-grid p, .footer-grid a { font-size: 14px; line-height: 1.8; color: #666; }
.footer-grid a { display: block; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.award { display: block; width: 130px; max-height: 50px; object-fit: contain; object-position: left; margin-bottom: 16px; }
.social-icons { display: flex; align-items: center; gap: 22px; margin-top: 18px; }
.social-icons a { color: #666; font-size: 18px; transition: .3s ease; }
.social-icons a:hover { color: #B97A2D; transform: translateY(-2px); }
.bottom { border-top: 1px solid #e5e5e5; margin-top: 60px; padding-top: 24px; text-align: center; color: #999; font-size: 13px; }

/* =========================================
   MOBILE RESPONSIVENESS & TYPOGRAPHY
   ========================================= */
@media (max-width: 991px) {
  h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
  h3 { font-size: 1.3rem !important; line-height: 1.4 !important; }
  p, .nav-link, .dropdown-item, label { font-size: 1rem !important; line-height: 1.5 !important; }
  
  body, main { overflow-x: hidden; }
  .padded { padding-left: 15px !important; padding-right: 15px !important; }
  
  .navbar { height: 75px; }
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 5.5%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid #f2f2f2;
    z-index: 999;
  }
  .navbar-collapse.show { display: block !important; }
  .navbar-nav { flex-direction: column; gap: 15px; align-items: flex-start; }
  
  /* === NEW: Hamburger Icon & X Animation === */
  .navbar-toggler { display: block; background: transparent; border: none; cursor: pointer; padding: 10px 0; margin-left: auto; }
  .navbar-toggler label { display: flex; flex-direction: column; gap: 5px; cursor: pointer; margin: 0; }
  .navbar-toggler span.oi { display: none; }
  .navbar-toggler label span { display: block; width: 28px; height: 3px; background: #333; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  
  /* Transforms to "X" when .active class is applied */
  .navbar-toggler.active label span:nth-of-type(1) { transform: translateY(8px) rotate(45deg); }
  .navbar-toggler.active label span:nth-of-type(2) { opacity: 0; }
  .navbar-toggler.active label span:nth-of-type(3) { transform: translateY(-8px) rotate(-45deg); }
  
  /* Dropdown Menus */
  .dropdown-menu { display: none; position: static; box-shadow: none; padding: 10px 0 0 15px; margin: 0; border: none; background: transparent; }
  .dropdown-menu.show { display: block; }
  .dropdown-item { padding: 8px 15px; font-size: 0.95rem !important; }
  
  .hero-content { padding: 40px 15px !important; text-align: center; }
  .cta-group { display: flex; flex-direction: column; gap: 15px; align-items: center; }
  .cta-group .btn { width: 100%; text-align: center; }
  
  .shell, .visit-in, .about, .faq, .why { display: flex !important; flex-direction: column !important; padding: 40px 15px !important; gap: 30px !important; }
  .shell img, .about img { width: 100% !important; height: auto !important; margin-bottom: 20px; }
  
  .products-grid, .why-grid, .reason-grid, .form-grid, .footer-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 25px !important; }
  .footer-grid { text-align: center; padding: 40px 15px !important; }
  .social-icons { justify-content: center; }
  .footer-grid > div:first-child { grid-column: span 1; }
}