﻿: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;
}

.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 {
  display: none;
}

#mnu-toggler {
  display: none;
}

/* --- Section Styles --- */
.hero {
  min-height: 90vh;
  display: flex;
  place-items: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(#0006, #0006), url('assets/Banner.png') center/cover;
}

.hero > div {
  width:min(1200px,92%);
}

.hero h1 {
  font-size: clamp(56px, 5vw, 82px);
  line-height: 1.05;
  margin: 0 auto;
}

.hero 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);
}

.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;
}

.status {
  font-size: 14px;
  text-align: center;
  margin: 16px 0 0;
  color: var(--gold);
}

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;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  h2 { font-size: 40px; }
  .about, .faq, .why { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-in { grid-template-columns: 1fr; gap: 40px; }
  .reason-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .navbar { height: 70px; }
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 6%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid #f2f2f2;
  }
  .navbar-collapse.show { display: block; }
  .navbar-nav { flex-direction: column; gap: 20px; align-items: flex-start; }
  .navbar-toggler { display: block; background: transparent; border: none; cursor: pointer; padding: 0; }
  .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: 26px; height: 2px; background: #333; transition: 0.3s; }
  .dropdown-menu { position: static; box-shadow: none; padding: 12px 0 0 16px; display: none; }
  .nav-item.dropdown.open .dropdown-menu { display: block; }
  
  .hero h1 { font-size: 42px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .form-grid { grid-template-columns: 1fr; }
}