/* ============================================================
   HEALET JEWELRY — Luxury Dark Theme
   Design System: Cormorant (headings) + Montserrat (body)
   Palette: Deep Black #0a0a0a · Gold #c9a96e · Ivory #f0ebe2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg-0:       #0a0a0a;
  --bg-1:       #0f0f0f;
  --bg-2:       #141414;
  --bg-3:       #1a1918;
  --bg-4:       #222018;

  --gold:       #c9a96e;
  --gold-light: #e0c899;
  --gold-dark:  #8a6e3e;
  --gold-glow:  rgba(201, 169, 110, 0.18);

  --text-1:     #f0ebe2;
  --text-2:     #b8ae9e;
  --text-3:     #6e6558;

  --border:     rgba(201, 169, 110, 0.15);
  --border-sub: rgba(255, 255, 255, 0.06);

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:     150ms;
  --t-mid:      280ms;
  --t-slow:     450ms;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 6px 24px rgba(201, 169, 110, 0.22);
  --radius:     2px;
}

/* ── Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  background-color: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', serif;
  color: var(--text-1);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.01em;
}

a, a:hover, a:focus {
  text-decoration: none;
}

a:hover, a:focus {
  color: initial;
}

.btn, .btn:focus {
  outline: none !important;
  box-shadow: none;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.layout_padding        { padding: 90px 0; }
.layout_padding2       { padding: 45px 0; }
.layout_padding2-top   { padding-top: 45px; }
.layout_padding2-bottom{ padding-bottom: 45px; }
.layout_padding-top    { padding-top: 90px; }
.layout_padding-bottom { padding-bottom: 90px; }

.long_section {
  margin-left: 45px;
  margin-right: 45px;
  padding-left: 15px;
  padding-right: 15px;
}

/* ── Section Headings ─────────────────────────────────────── */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Cormorant', serif;
}

.heading_container h2 {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--text-1);
}

.heading_container h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
  transition: width var(--t-mid) var(--ease);
}

.heading_container:hover h2::after {
  width: 80px;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* ── Header ───────────────────────────────────────────────── */
.header_section {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_section.innerpage_header {
  position: relative;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.custom_nav-container {
  padding-left: 0;
  padding-right: 0;
}

/* ── Logo ─────────────────────────────────────────────────── */
.navbar-brand {
  margin-top: 10px;
}

.navbar-brand span {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color var(--t-fast) var(--ease);
}

.navbar-brand:hover span {
  color: var(--gold);
}

/* ── Hamburger Menu Button ───────────────────────────────── */
.custom_menu-btn {
  position: fixed;
  right: 25px;
  top: 15px;
  width: 50px;
  height: 50px;
}

.custom_menu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 7;
  border-radius: 50%;
  transition: all var(--t-slow) var(--ease);
}

.custom_menu-btn.menu_btn-style::before {
  width: 100vh;
  height: 100vh;
  background-color: var(--bg-0);
  transform: scale(5);
  border-radius: 0;
}

.custom_menu-btn button {
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: relative;
  z-index: 999;
  margin: 0;
  cursor: pointer;
}

.custom_menu-btn button span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text-1);
  margin: 3px 0;
  transition: all var(--t-mid) var(--ease);
  border-radius: 1px;
}

.custom_menu-btn .s-2 {
  transition: all 0.1s var(--ease);
  width: 15px;
  align-self: flex-start;
  margin-left: 14px;
}

.menu_btn-style button span {
  background-color: var(--text-1);
}

.menu_btn-style button .s-1 {
  transform: rotate(45deg) translate(5px, 5px);
  width: 22px;
}

.menu_btn-style button .s-2 {
  transform: translateX(60px);
  opacity: 0;
}

.menu_btn-style button .s-3 {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 22px;
}

/* ── Overlay Nav ──────────────────────────────────────────── */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s var(--ease);
  z-index: 9;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.overlay a {
  padding: 0;
  text-decoration: none;
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-2);
  display: block;
  transition: all var(--t-mid) var(--ease);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0;
}

.overlay a:hover {
  color: var(--gold);
  letter-spacing: 0.22em;
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  z-index: 99;
}

.menu_width {
  width: 100%;
}

.menu_width.overlay a {
  opacity: 1;
}

/* ── Hero / Slider ────────────────────────────────────────── */
.slider_section {
  min-height: 100vh;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.slider_section .row {
  align-items: center;
}

.slider_section .detail-box {
  position: relative;
  z-index: 4;
  color: var(--text-1);
  padding: 75px 0;
}

.slider_section .detail-box h1 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--text-1);
}

.slider_section .detail-box h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.slider_section .detail-box p {
  width: 75%;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-2);
  line-height: 1.8;
}

.slider_section .detail-box .slider-link {
  display: inline-block;
  padding: 13px 48px;
  background-color: transparent;
  color: var(--gold);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: all var(--t-mid) var(--ease);
  margin-top: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.slider_section .detail-box .slider-link:hover {
  background-color: var(--gold);
  color: var(--bg-0);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.25em;
}

.slider_section .slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.slider_section .slider_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  filter: brightness(0.45) saturate(0.6);
}

.slider_section .slider_bg {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.88) 35%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

/* ── Products / Shop ─────────────────────────────────────── */
.shop_section {
  background-color: var(--bg-1);
}

.shop_section .heading_container {
  margin-bottom: 20px;
}

.shop_section .box {
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  position: relative;
  padding: 10px;
  margin-top: 25px;
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
}

.shop_section .box:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.shop_section .box a {
  color: var(--text-1);
}

.shop_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 260px;
  background: linear-gradient(145deg, var(--bg-2), var(--bg-1));
  border-radius: 6px;
  overflow: hidden;
}

.shop_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.shop_section .box:hover .img-box img {
  transform: scale(1.06);
}

.shop_section .box .detail-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px 8px;
}

.shop_section .box .detail-box h6 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.shop_section .box .detail-box h6 span {
  color: var(--gold);
  font-weight: 600;
}

.shop_section .box .new {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg-0);
  box-shadow: 0 4px 10px rgba(201, 169, 110, 0.4);
}

.shop_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.shop_section .btn-box a {
  display: inline-block;
  padding: 13px 48px;
  background-color: transparent;
  color: var(--gold);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: all var(--t-mid) var(--ease);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop_section .btn-box a:hover {
  background-color: var(--gold);
  color: var(--bg-0);
  box-shadow: var(--shadow-gold);
}

/* ── About ────────────────────────────────────────────────── */
.about_section {
  background-color: var(--bg-0);
  padding: 90px 0;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  position: relative;
  padding: 25px 0 0 25px;
}

.about_section .img-box img {
  width: 100%;
  position: relative;
  filter: brightness(0.85) contrast(1.05);
}

.about_section .img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, var(--gold-dark), transparent);
  opacity: 0.5;
}

.about_section .detail-box p {
  margin-top: 14px;
  margin-bottom: 35px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
}

.about_section .detail-box a {
  display: inline-block;
  padding: 13px 48px;
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transition: all var(--t-mid) var(--ease);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.about_section .detail-box a:hover {
  background-color: var(--gold);
  color: var(--bg-0);
  box-shadow: var(--shadow-gold);
}

/* ── Offer Banners ────────────────────────────────────────── */
.offer_section {
  background-color: var(--bg-1);
}

.offer_section .row > div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.offer_section .box {
  margin: 6px;
  height: 100%;
  position: relative;
  min-height: 175px;
  overflow: hidden;
}

.offer_section .box img {
  width: 100%;
  min-height: 100%;
  transition: transform var(--t-slow) var(--ease);
  filter: brightness(0.6) saturate(0.7);
}

.offer_section .box:hover img {
  transform: scale(1.04);
}

.offer_section .box .detail-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--text-1);
  padding: 28px;
  background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.1) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.offer_section .box .detail-box h2 {
  font-weight: 700;
  color: var(--text-1);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 9px 32px;
  background-color: transparent;
  color: var(--gold);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: all var(--t-mid) var(--ease);
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.offer_section .box .detail-box a:hover {
  background-color: var(--gold);
  color: var(--bg-0);
}

.offer_section .box.offer-box1        { min-height: 225px; }
.offer_section .box.offer-box1 .detail-box { justify-content: flex-start; padding-top: 36px; }
.offer_section .box.offer-box1 .detail-box h2 { font-size: 3rem; }
.offer_section .box.offer-box2 .detail-box h2,
.offer_section .box.offer-box3 .detail-box h2 { font-size: 2rem; }
.offer_section .box.offer-box2 .detail-box { align-items: flex-end; justify-content: flex-end; }
.offer_section .box.offer-box3 .detail-box { align-items: flex-start; justify-content: flex-end; }

/* ── Blog ─────────────────────────────────────────────────── */
.blog_section {
  background-color: var(--bg-0);
  padding: 90px 0;
}

.blog_section .heading_container {
  align-items: center;
}

.blog_section .heading_container h2::after {
  margin-left: auto;
  margin-right: auto;
}

.blog_section .box {
  margin-top: 55px;
  background-color: var(--bg-2);
  border: 1px solid var(--border-sub);
  transition: all var(--t-mid) var(--ease);
  overflow: hidden;
}

.blog_section .box:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog_section .box .img-box {
  position: relative;
  overflow: hidden;
}

.blog_section .box .img-box .blog_date {
  position: absolute;
  left: 20px;
  bottom: -15px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background-color: var(--gold);
  color: var(--bg-0);
  margin: 0;
  text-align: center;
  border: none;
  letter-spacing: 0.02em;
  line-height: 1.3;
  z-index: 1;
}

.blog_section .box .img-box img {
  width: 100%;
  filter: brightness(0.75) saturate(0.7);
  transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}

.blog_section .box:hover .img-box img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(0.8);
}

.blog_section .box .detail-box {
  margin-top: 10px;
  padding: 28px 24px;
}

.blog_section .box .detail-box h5 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-1);
  margin-bottom: 10px;
}

.blog_section .box .detail-box p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.blog_section .box .detail-box a {
  display: inline-block;
  padding: 9px 28px;
  background-color: transparent;
  color: var(--gold);
  border-radius: var(--radius);
  border: 1px solid var(--gold-dark);
  transition: all var(--t-mid) var(--ease);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.blog_section .box .detail-box a:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
}

/* ── Testimonial ──────────────────────────────────────────── */
.client_section {
  background-color: var(--bg-1);
}

.client_section .heading_container {
  align-items: center;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 45px;
  padding: 45px 35px;
  border-radius: var(--radius);
  background-color: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  box-shadow: var(--shadow-md);
  position: relative;
}

.client_section .box::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.client_section .box .img-box {
  margin-bottom: 20px;
  min-width: 100px;
  max-width: 100px;
  overflow: hidden;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  filter: grayscale(0.3);
}

.client_section .box .detail-box {
  display: flex;
  flex-direction: column;
}

.client_section .box .detail-box .name h6 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.client_section .box .detail-box p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-2);
}

.client_section .box .detail-box .fa-quote-left {
  color: var(--gold);
  opacity: 0.5;
  font-size: 20px;
  margin-top: 16px;
}

.client_section .carousel_btn-container {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: unset;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  opacity: 1;
  background-color: var(--bg-2);
  border-radius: var(--radius);
  margin: 0 4px;
  transition: all var(--t-fast) var(--ease);
  color: var(--gold);
}

.client_section .carousel-control-prev i,
.client_section .carousel-control-next i {
  color: var(--gold);
  font-size: 14px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}

.client_section .carousel-control-prev:hover i,
.client_section .carousel-control-next:hover i {
  color: var(--bg-0);
}

.client_section .carousel-control-next {
  left: initial;
}

/* ── Info / Newsletter ────────────────────────────────────── */
.info_section {
  background-color: var(--bg-3);
  color: var(--text-1);
  border-top: 1px solid var(--border);
}

.info_section .info_form_social_row {
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-sub);
}

.info_section .info_form {
  width: 100%;
}

.info_section .info_form form {
  display: flex;
  align-items: flex-end;
}

.info_section .info_form form input {
  flex: 1;
  background-color: transparent;
  height: 48px;
  padding-left: 0;
  outline: none;
  color: var(--text-1);
  border: none;
  border-bottom: 1px solid var(--text-3);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: border-color var(--t-fast) var(--ease);
}

.info_section .info_form form input:focus {
  border-bottom-color: var(--gold);
}

.info_section .info_form form input::placeholder {
  color: var(--text-3);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.info_section .info_form form button {
  background-color: var(--gold);
  color: var(--bg-0);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  outline: none;
  border: 1px solid var(--gold);
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
}

.info_section .info_form form button:hover {
  background-color: transparent;
  color: var(--gold);
}

.info_section .social_box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.info_section .social_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-3);
  color: var(--text-2);
  border-radius: var(--radius);
  transition: all var(--t-fast) var(--ease);
}

.info_section .social_box a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background-color: var(--gold-glow);
}

.info_section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 18px;
}

.info_section .info_links .info_links_menu {
  display: flex;
  flex-direction: column;
}

.info_section .info_links .info_links_menu a {
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: all var(--t-fast) var(--ease);
}

.info_section .info_links .info_links_menu a:not(:nth-last-child(1)) {
  margin-bottom: 10px;
}

.info_section .info_links .info_links_menu a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.info_section .info_insta .insta_box {
  display: flex;
  align-items: center;
}

.info_section .info_insta .insta_box .img-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  background-color: var(--bg-2);
  border: 1px solid var(--border-sub);
}

.info_section .info_insta .insta_box .img-box img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(0.4);
}

.info_section .info_insta .insta_box p {
  margin: 0;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

.info_section .info_insta .insta_box:not(:nth-last-child(1)) {
  margin-bottom: 14px;
}

.info_section .info_detail p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.8;
}

.info_section .info_contact a {
  display: flex;
  align-items: center;
  color: var(--text-2);
  margin-bottom: 12px;
  font-size: 13px;
  transition: color var(--t-fast) var(--ease);
}

.info_section .info_contact a i {
  margin-right: 10px;
  width: 20px;
  color: var(--gold-dark);
}

.info_section .info_contact a:hover {
  color: var(--gold);
}

.info_section .info_contact a:hover i {
  color: var(--gold);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer_section {
  position: relative;
  text-align: center;
  background-color: var(--bg-0);
  border-top: 1px solid var(--border-sub);
}

.footer_section p {
  color: var(--text-3);
  padding: 24px 0;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer_section p a {
  color: var(--gold-dark);
  transition: color var(--t-fast) var(--ease);
}

.footer_section p a:hover {
  color: var(--gold);
}

/* ── Scroll Fade-in Animations ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
