html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1; /* takes remaining height */
  display: flex;
  flex-direction: column;
}


/* Base & fonts */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Georgia', serif; background:rgba(255, 255, 255, 0.95); color:#111; }
a, button { font-family: inherit; }

ul { list-style:none; padding:0; }
section { padding:60px 20px; }
.section-num {
  font-size:2rem; text-align:center;
  margin-bottom:1rem;
}

/* Float animation */
@keyframes float {0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

.navbar {
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 40px; background:#000; color:#fff;
}
.logo { position:relative; font-size:1.5rem; }
.float-num, .float-infinity {
  position:absolute; animation:float 3s infinite; color:#fff;
}
.float-num { top:-10px; left:-30px; font-size:0.8rem; }
.float-infinity { top:-10px; right:-60px; }

.menu { display:flex; gap:24px; }
.menu li { cursor:pointer; transition:color .3s; }
.menu li:hover { color:gold; }

/* Hero */
.hero {
  text-align:center; padding:120px 20px; position:relative;
}
.float-num-hero {
  position:absolute; top:20px; left:20px;
  animation:float 3s infinite; color:#000;
}
.line {
  width:120px; height:2px; background:#111;
  margin:12px auto; position:relative;
}
.line.bottom { width:240px; }
.dot, .diamond {
  position:absolute; left:50%; transform:translateX(-50%);
  background:#fff; padding:0 6px;
}
.dot { top:-8px; }
.diamond { top:-10px; }
.hero-heading {
  font-size:3rem; line-height:1.2;
  margin:20px 0; color:#111;
}
.hero-heading span {
  display:inline-block; color:gold;
  filter:drop-shadow(0 0 6px gold);
  animation:drop 2s infinite alternate;
}
@keyframes drop{0%{filter:drop-shadow(0 0 4px gold);}100%{filter:drop-shadow(0 0 12px gold);}}

.hero-sub { margin:8px 0; font-size:1.1rem; color:#555; }
.hero-buttons { margin-top:24px; display:flex; gap:20px; justify-content:center; }
.hero-buttons button {
  padding:12px 24px; border:2px solid #111;
  background:transparent; color:#111;
  position:relative; overflow:hidden; transition:.4s;
}
.hero-buttons button::before {
  content:''; position:absolute; top:0; left:0;
  height:100%; width:0; background:#111; z-index:-1;
  transition:width .4s;
}
.hero-buttons button:hover::before { width:100%; }
.hero-buttons button:hover { color:#fff; }
.infinity {
  position:absolute; bottom:20px; right:20px;
  font-size:1.5rem; color:#000;
  animation:float 3s infinite;
}

/* About section */
.about {background: #ffffff};

.about h2 { text-align:center; margin-bottom:24px; }
.about-content { max-width:800px; margin:0 auto; text-align:center; }
.about-text p { margin-bottom:16px; color:#444; line-height:1.6; }
.diamond-line {
  font-size:1.5rem; color:#111; margin:24px 0;
}
.about blockquote {
  font-style:italic; margin-top:28px; color:#333;
}
.years-highlight {
  text-align:center; font-size:1.5rem; margin-top:40px;
}
.years-highlight span { font-size:3rem; color:gold; }

/* Section 3: Masterpiece Section */
.masterpiece-section {
  width: 100vw;
  background: #f9f9f9; /* ⬅ slightly darker */
  padding: 100px 0;
  text-align: center;
  font-family: 'Georgia', serif;
  color: #2b2b2b;
  margin-left: calc(-50vw + 50%); /* removes side spacing */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Optional side spacing */
}

/* Section Number and Line */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-num {
  font-size: 40px;
  color: #e4c98e;
  font-family: 'Georgia', serif;
}

.section-line-dot {
  width: 90px;
  height: 2px;
  background: #e4c98e;
  position: relative;
  margin: 12px 0 40px;
}

.section-line-dot::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #e4c98e;
  border-radius: 50%;
}

/* Title */
.masterpiece-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.masterpiece-title .highlight-gold {
  color: #c89200;
  font-style: italic;
}

/* Subtitle */
.masterpiece-subtitle {
  font-size: 16px;
  color: #777;
  font-family: 'Lato', sans-serif;
  margin-bottom: 60px;
}

/* Grid Layout */
.masterpiece-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
}

/* Image */
.masterpiece-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}


.masterpiece-image img:hover {
  transform: scale(1.08) translateZ(10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.masterpiece-image {
  position: relative;
  max-width: 550px;
  margin-top: 50px;
}



/* Right Content */
.masterpiece-content {
  max-width: 500px;
  padding: 0;
  margin: 0;
}

/* Signature Tag */
.signature-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c89200;
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2;
}


/* Highlight Stat */
.highlight-stat {
  margin-top: 30px;
}

.stat-number {
  font-size: 48px;
  color: #c89200;
  font-family: 'Georgia', serif;
}

.stat-label {
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
}

/* Dimensions Grid */
.dimensions-grid {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.dimension .value {
  font-size: 18px;
  color: #c89200;
  font-weight: 600;
}

.dimension .label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

/* Days */
.days-of-creation {
  margin-bottom: 25px;
}

.days-number {
  font-size: 30px;
  color: #c89200;
  font-family: 'Georgia', serif;
}

.days-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  font-family: 'Lato', sans-serif;
}

/* Description */
.masterpiece-desc {
  font-size: 15px;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* CTA Button */
.inquire-btn {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 13px;
  color: #c89200;
  background: transparent;
  border: 1px solid #c89200;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.inquire-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #c89200;
  z-index: -1;
  transition: width 0.4s ease;
}

.inquire-btn:hover::before {
  width: 100%;
}

.inquire-btn:hover {
  color: white;
}

@media (max-width: 768px) {
  .masterpiece-grid {
    flex-direction: column;
    align-items: center;
  }

  .masterpiece-content {
    text-align: center;
  }

  .signature-tag {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
  }
}



/* Collection */
.collection .cards {
  display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin:20px 0;
}
.card {
  flex:1 1 150px; background:#f0f0f0;
  text-align:center; padding:20px; border-radius:8px; font-size:1rem;
}
.coll-buttons { display:flex; gap:20px; justify-content:center; margin-top:16px; }
.coll-buttons button {
  padding:12px 24px; border:2px solid #111;
  background:transparent; cursor:pointer; transition:.4s;
}
.coll-buttons button:hover {
  background:#111; color:#fff;
}

/* Exhibitions */
.exhibitions ul {
  max-width:600px; margin:0 auto 20px auto; color:#444; line-height:1.6;
  text-align:center;
}
.exhibitions button {
  display:block; margin:20px auto; padding:12px 24px;
  border:2px solid #111; background:transparent; cursor:pointer;
  transition:.4s;
}
.exhibitions button:hover {
  background:#111; color:#fff;
}

/* Consultation */
.consultation .consult-list {
  display:flex; justify-content:center; gap:24px; margin:16px 0;
  list-style:none; color:#444;
}
.consult-buttons {
  display:flex; justify-content:center; gap:20px; margin-top:16px;
}
.consult-buttons button {
  padding:12px 24px; border:2px solid #111;
  background:transparent; cursor:pointer; transition:.4s;
}
.consult-buttons button:hover {
  background:#111; color:#fff;
}

/* Footer */
footer {
  text-align:center; padding:40px 20px; background:#f0f0f0; color:#111;
}
.footer-dot {
  font-size:2rem; color:#111;
}
.footer-cols {
  display:flex; flex-wrap:wrap; justify-content:center; gap:40px;
  margin:24px 0;
}
.footer-cols div {
  min-width:180px; text-align:left;
}
.footer-copy {
  color:#555; font-size:0.9rem;
}

/* Section 1: Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}


/* Heading */
.hero h1 {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Gold Italic Word */
.gold {
  color: #c89200;
}

.italic {
  font-style: italic;
}

/* Divider Line with Star */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.divider hr {
  border: none;
  border-top: 1px solid #c89200;
  width: 80px;
  margin: 0 10px;
}

.star {
  color: #c89200;
  font-size: 18px;
}

/* Subtitle & Highlight */
.subtitle {
  font-size: 1.2rem;
  color: #444;
  margin: 10px 0;
}

.highlight {
  font-size: 1.1rem;
  color: #c89200;
  margin-bottom: 40px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  border: 1px solid #c89200;
  color: #c89200;
  text-decoration: none;
  padding: 12px 26px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #c89200;
  z-index: 0;
  transition: width 0.3s ease;
}

.hero-buttons .btn:hover::before {
  width: 100%;
}

.hero-buttons .btn:hover {
  color: #fff;
}

.hero-buttons .btn {
  position: relative;
  z-index: 1;
}

/* Floating "01" on the left */
.hero-floating-left {
  position: absolute;
  top: 100px;
  left: 30px;
  font-size: 2rem;
  color: #c89200;
  font-family: 'Georgia', serif;
  animation: float 3s ease-in-out infinite;
}

/* Floating "∞" at bottom right */
.hero-floating-right {
  position: absolute;
  bottom: 40px;
  right: 30px;
  font-size: 2rem;
  color: #c89200;
  font-family: 'Georgia', serif;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation on Content */
.hero-content {
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 120px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    word-break: break-word;
  }

  .subtitle,
  .highlight {
    font-size: 1rem;
    margin: 8px 0;
  }

  .divider hr {
    width: 50px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 90%;
    max-width: 300px;
    transition: all 0.3s ease;
  }

  .hero-floating-left {
    font-size: 26px;
    top: 70px;
    left: 10px;
  }

  .hero-floating-right {
    font-size: 28px;
    bottom: 25px;
    right: 12px;
  }

  .hero-content {
    padding-top: 30px;
  }
}

 

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95); /* semi-transparent */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  font-family: 'Georgia', serif;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 2px;
  color:#c89200;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color:#c89200;
  padding: 8px 12px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #c89200;
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-buttons .btn {
  position: relative;
  border: 1px solid #c89200;
  color: #c89200;
  text-decoration: none;
  padding: 12px 26px;
  font-size: 0.95rem;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #c89200;
  z-index: -1;
  transition: width 0.4s ease;
}

.hero-buttons .btn:hover::before {
  width: 100%;
}

.hero-buttons .btn:hover {
  color: white;
}


.floating-left {
  position: absolute;
  top: 100px; /* adjust as needed */
  left: 30px;
  font-size: 72px;
  font-family: 'Georgia', serif;
  color: #c89200;
  animation: floatUpDown 3s ease-in-out infinite;
  z-index: 0;
}

.floating-right {
  position: absolute;
  bottom: 40px;
  right: 30px;
  font-size: 60px;
  font-family: 'Georgia', serif;
  color: #c89200;
  animation: floatUpDown 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatLeftRight {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
.nav-line-dot {
  width: 90%;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
}

.nav-line-dot::before {
  content: '';
  position: absolute;
  left: 40px; /* Slightly off-center to left */
  top: -4px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
:root {
  --gold: #c89200;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 20px;
  text-align: center;
  background:  #fefdf9;
}

/* Floating Numbers */
.floating-left,
.floating-right {
  position: absolute;
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

.floating-left {
  top: 80px;
  left: 40px;
}

.floating-right {
  bottom: 40px;
  right: 40px;
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Main Heading */
.hero h1 {
  font-size: 48px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}

.patience {
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 0 8px rgba(200, 146, 0, 0.4);
}

/* Subtitle */
.subtitle {
  margin-top: 20px;
  font-size: 18px;
  color: #444;
}

.highlight {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.hero-btn {
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.hero-btn::before {
  content: '';
  position: absolute;
  background: var(--gold);
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 0.4s ease;
}

.hero-btn:hover::before {
  width: 100%;
}

.hero-btn:hover {
  color: #fff;
}

.hero-btn span,
.hero-btn::before {
  z-index: 1;
}

/* Top short line with dot */
.top-line-dot {
  width: 70px;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 10px;
  position: relative;
}

.top-line-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -4px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}
/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  background-color: #fffefc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: bold;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color:#c89200;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* === Hero Section === */
.hero {
  background: #fdfcf9;
  min-height: 100vh;
  padding: 140px 20px 100px;
  text-align: center;
  position: relative;
}

/* Floating Numbers */
.floating-left,
.floating-right {
  position: absolute;
  font-size: 56px;
  font-weight: bold;
  color: var(--gold);
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

.floating-left {
  top: 100px;
  left: 50px;
}

.floating-right {
  bottom: 50px;
  right: 50px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Main Heading */
.hero h1 {
  font-size: 48px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
  margin-bottom: 30px;
}

.patience {
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 0 8px rgba(200, 146, 0, 0.4);
}

/* Top short line with dot */
.top-line-dot {
  width: 70px;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
}

.top-line-dot::after {
  content: '';
  position: absolute;
  left: 10%;
  top: -4px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

/* Fade Line with Diamond */
.fade-line-diamond {
  width: 300px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px auto 30px;
  position: relative;
}

.fade-line-diamond::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--gold);
}

/* Subtitle */
.subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.highlight {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-btn {
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.hero-btn::before {
  content: '';
  position: absolute;
  background: var(--gold);
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 0.4s ease;
}

.hero-btn:hover::before {
  width: 100%;
}

.hero-btn:hover {
  color: #fff;
}

.hero-btn span,
.hero-btn::before {
  z-index: 1;
}
.top-line-dot {
  width: 80px;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
}

.top-line-dot::after {
  content: '';
  position: absolute;
  left: 50%; /* Center the dot */
  top: -4px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}
.top-line-dot {
  width: 120px;
  height: 1px;
  background-color: var(--gold);
  margin: 20px auto;
  position: relative;
}

.top-line-dot::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
}
.divider {
  width: 300px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* space around the diamond */
}

.divider hr {
  flex: 1;
  height: 1px;
  border: none;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.star {
  color: var(--gold);
  font-size: 14px;
  transform: scale(1.2);
}
/* --- HERO SECTION UPDATED --- */
.hero {
  position: relative;
  padding: 60px 60px 60px; /* reduced bottom padding */
  text-align: center;
  min-height: 85vh; /* so it stays proportionate */
  background: var(--bg-light);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 40px;  /* space between navbar line and heading */
}

/* Top heading */
.hero h1 {
  font-family: var(--font-main);
  font-size: 54px;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Diamond divider spacing */
.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 30px;
  gap: 20px;
  width: 300px;
}

.subtitle {
  font-size: 17px;
  color: #333;
  margin-bottom: 8px;
}

.highlight {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 40px; /* reduced */
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}
/* Hero main section */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 140px; /* Increased space from top line */
  background: var(--bg-light);
  text-align: center;
}

/* Hero heading */
.hero h1 {
  font-family: var(--font-main);
  font-size: 64px;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 50px; /* Space between heading and diamond line */
  line-height: 1.4;
}

/* Diamond divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px; /* Space below line */
}

.divider hr {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border: none;
}

.divider .star {
  font-size: 18px;
  color: var(--gold);
}

/* Subtitle */
.subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 12px; /* space between subtitle lines */
}

/* Highlighted gold subtitle */
.highlight {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 50px; /* space between subtitle and buttons */
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 0; /* already managed above */
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000 !important;
  padding: 30px 60px; /* ⬅ increased top and bottom padding */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.about-section {
  background: #fdfcf9;
  padding: 6rem 4rem;
  font-family: 'Playfair Display', serif;
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-number {
  font-size: 56px;
  font-weight: 700;
  color: #c89200;
  opacity: 0.5;
  z-index:1;
}

.section-line-dot {
  width: 100px;
  height: 1px;
  background: #c89200;
  margin: 0.5rem auto 2rem;
  position: relative;
}
.section-line-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #c89200;
  border-radius: 50%;
  position: absolute;
  top: -4.5px;
  left: 50%;
  transform: translateX(-50%);
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.about-title .with-stars {
  font-size: 1.2rem;
  color: #c89200;
  padding: 0 1rem;
}
.gold {
  color: #c89200;
}
.italic {
  font-style: italic;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.diamond-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  position: relative;
  margin: 2rem 0;
}
.diamond-line::before {
  content: '◆';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #c89200;
  font-size: 1rem;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 2rem;
  color: #444;
  position: relative;
}
.q-mark {
  font-size: 2rem;
  color: #c89200;
  vertical-align: middle;
  margin: 0 0.5rem;
}

.about-image {
  flex: 0.8;
  min-width: 240px;
  text-align: right;
  padding-left: 1rem;
}

.about-image img {
  width: 90%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.quote {
  margin-top: 2rem;
  text-align: left;
  position: relative;
  padding-left: 1rem;
}

.q-top {
  font-size: 3rem;
  color: #c89200;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.q-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  padding-left: 2rem;
  padding-right: 2rem;
}

.q-bottom {
  text-align: right;
  font-size: 3rem;
  color: #c89200;
  margin-top: -0.5rem;
  padding-right: 1rem;
}
.diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 2.5rem 0;
}

.diamond-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c89200, transparent);
  opacity: 0.6;
}

.diamond-divider .divider-diamond {
  color: #c89200;
  font-size: 1.4rem;
  line-height: 1;
}
.hero {
  background: #fdfcf9 !important;
}

.about-section {
  background: #ffffff !important;
}
.masterpiece-section {
  background: #fdfcf9 !important;
}
/* SECTION CONTAINER */
.section-own {
  background: #ffffff;
  padding: 80px 120px;
  text-align: center; 
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;


}

/* MAIN HEADING */
.own-heading {
  font-size: 38px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  position: relative;
}

.own-heading .gold-italic {
  font-style: italic;
  color: #c7a942;
  font-family: serif;
}

.own-heading .stars {
  font-size: 20px;
  color: #c7a942;
  margin-left: 8px;
}

/* SUBTEXT */
.own-subtext {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* DIVIDER (Gold line + dot) */
.gold-divider {
  border-top: 1px solid #c7a942;
  margin: 40px auto;
  width: 100px;
  position: relative;
}
.gold-divider .dot {
  width: 10px;
  height: 10px;
  background: #c7a942;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

/* BUTTONS */
.own-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;  /* ✅ Add this line */
}


/* CONSULT WRAPPER (Box with golden corner accents) */
.consult-wrapper {
  background: #fff;
  padding: 40px 30px;
  max-width: 900px;
  width: 100%;
  position: relative;
  margin: 60px auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Corner Accents */
.consult-wrapper::before,
.consult-wrapper::after {
  content: "";
  position: absolute;
  border: 2px solid #d4af37;
  width: 30px;
  height: 30px;
}
.consult-wrapper::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.consult-wrapper::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* CONSULT HEADER */
.consult-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.consult-header h3 {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
}
.diamond {
  font-size: 16px;
  color: #d4af37;
}

/* CONSULT TEXT */
.consult-text {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* AUDIENCE COLUMNS */
.audience-roles {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.audience-card {
  text-align: center;
  max-width: 220px;
}
.diamond-icon {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 10px;
}
.audience-card h4 {
  color: #d4af37;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.audience-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}
.custom-footer {
  background: #000 !important;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  color: #fff;
  padding: 100px 0 100px; /* ⬅️ Increase top & bottom padding */
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}
.footer-title,
.footer-desc,
.footer-copy,
.footer-cols p {
  color: #ccc;
}
.footer-cols h4 {
  color: #f4c542;
}
.footer-cols p:hover {
  color: #fff;
}
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-divider .line {
  height: 1px;
  width: 60px;
  background: gold;
}

.footer-divider .dot {
  color: gold;
  font-size: 18px;
  margin: 0 12px;
}

.footer-name {
  font-size: 22px;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

.footer-title {
  font-size: 16px;
  margin: 10px 0 4px;
  color: #b5b5b5;
}

.footer-desc {
  font-size: 14px;
  margin-bottom: 30px;
  color: #999;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.footer-cols h4 {
  color: #f4c542;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-cols p {
  font-size: 13px;
  margin: 6px 0;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-cols p:hover {
  color: #f4c542;
}

.footer-copy {
  margin-top: 40px;
  font-size: 12px;
  color: #777;
}
.footer-name {
  font-family: 'Georgia', serif;
  font-size: 32px; /* adjust size as needed */
  font-weight: bold;
  color: #d4af37;
  text-align: center;
  margin-bottom: 40px;
}
