/* =========================================================
   ZEVAR GALLERY — Pure CSS (no Tailwind, no JavaScript)
   Palette (logo-matched): Deep Navy #0D2B5C | Navy Dark #071A3D
   Elegant Gold #BF9A3E | Royal Blue accent #1E4D8C | Cream #FFFDF8
   NOTE: variable names kept as-is (--maroon/--red) to avoid touching
   every usage site — only the underlying color values changed.
   ========================================================= */

:root {
  --maroon: #0D2B5C;
  /* Deep Navy Blue — primary */
  --maroon-dark: #071A3D;
  /* darkest navy — navbar / footer / hero */
  --gold: #BF9A3E;
  /* Elegant Gold — secondary */
  --gold-light: #E1C688;
  /* lighter gold — hovers/glows */
  --gold-dark: #8C6B22;
  /* deep gold — small accents */
  --red: #1E4D8C;
  /* Royal/Dark Blue — accent (repurposed from red) */
  --cream: #FFFDF8;
  --cream-dark: #F8F4EE;
  --ink: #1E2733;
  /* dark navy-charcoal text */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--maroon-dark);
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* =============== Layout helpers =============== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section {
  padding: 6rem 1.25rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2.5rem;
  }
}



/* =============== Typography helpers =============== */
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: .75rem;
}

.eyebrow-gold {
  color: var(--gold);
}

.eyebrow-maroon {
  color: var(--maroon);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  line-height: 1.2;
}

.section-heading.on-dark {
  color: var(--cream);
}

.text-gold-accent {
  color: var(--gold-dark);
  font-style: italic;
}

.lede {
  margin-top: 1rem;
  color: rgba(30, 39, 51, .6);
  line-height: 1.7;
}

/* =============== Buttons =============== */
.btn-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 600;
  font-size: .9rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(191, 154, 62, .5);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -6px rgba(191, 154, 62, .6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-weight: 500;
  font-size: .9rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: rgba(191, 154, 62, .12);
  transform: translateY(-2px);
}

/* =============== Navbar =============== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(7, 26, 61, .88);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(13, 43, 92, .18);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 1rem 2.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo-badge {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  transition: transform .7s ease;
}

.logo:hover .logo-badge {
  transform: rotate(360deg);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: .02em;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
  font-size: .9rem;
  color: var(--cream);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding-bottom: 3px;
  color: var(--cream);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: none;
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
    align-items: center;
  }
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 600;
  font-size: .85rem;
  padding: .6rem 1.25rem;
  border-radius: 999px;
  transition: background .3s ease;
}

.nav-whatsapp:hover {
  background: var(--gold-dark);
}

.nav-whatsapp svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* Mobile menu (pure CSS, checkbox-driven) */
.menu-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hamburger {
  display: flex;
  width: 2.25rem;
  height: 1.75rem;
  position: relative;
  cursor: pointer;
  z-index: 60;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.ham-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .35s ease;
}

.ham-line:nth-child(1) {
  top: 2px;
}

.ham-line:nth-child(2) {
  top: 12px;
}

.ham-line:nth-child(3) {
  top: 22px;
}

.menu-toggle:checked~.hamburger .ham-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle:checked~.hamburger .ham-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked~.hamburger .ham-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu{
  position:fixed; top:64px; left:0; right:0; background: var(--maroon-dark); z-index:55;
  max-height: calc(100vh - 64px);
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  gap:1.1rem; padding: 1.75rem 1.25rem;
  overflow-y:auto;
  transform: translateY(-150%); transition: transform .4s ease;
}
@media (min-width: 1024px){ .mobile-menu{ display:none; } }
.menu-toggle:checked ~ .mobile-menu{ transform: translateY(0); }

.mobile-link{ font-family:'Cormorant Garamond', serif; font-size:1.35rem; color: var(--cream); }


/* =============== Hero =============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
background:
    radial-gradient(circle at 80% 20%, rgba(191, 154, 62, .12), transparent 45%),
    linear-gradient(120deg, rgba(11, 26, 58, .55) 0%, rgba(61, 15, 26, .5) 55%, rgba(5, 14, 36, .6) 100%),
    url("photos/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(191, 154, 62, 0.03) 0 2px, transparent 2px 40px);
}

.thread-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .35;
  pointer-events: none;
}

.thread-1 {
  top: 18%;
  left: -10%;
  width: 60%;
  transform: rotate(-8deg);
}

.thread-2 {
  bottom: 12%;
  right: -10%;
  width: 50%;
  transform: rotate(6deg);
}

.thread-3 {
  top: 10%;
  left: -5%;
  width: 40%;
  opacity: .15;
}

@media (max-width: 1023px) {
  .thread-line {
    display: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 8rem 1.25rem 5rem;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 767px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.1;
}

.hero-heading em {
  color: var(--gold);
  font-style: italic;
}

.hero-lede {
  margin-top: 1.5rem;
  color: rgba(255, 253, 248, .8);
  max-width: 28rem;
  line-height: 1.7;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  color: var(--gold);
}

.stat-label {
  color: rgba(255, 253, 248, .7);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.hero-emblem {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-emblem {
    display: flex;
  }
}

.emblem-ring {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(191, 154, 62, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatSlow 6s ease-in-out infinite;
}

.emblem-ring-inner {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(191, 154, 62, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinSlow 30s linear infinite;
}

.glass-emblem {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(191, 154, 62, .4);
}

.glass-emblem .emblem-letter {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 3rem;
}

.glass-emblem .emblem-caption {
  color: rgba(191, 154, 62, .7);
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-top: .5rem;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.float-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.dot-1 {
  top: 5%;
  left: 15%;
  animation: floatDot 4s ease-in-out infinite;
}

.dot-2 {
  bottom: 10%;
  right: 8%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: floatDot 5s ease-in-out infinite .5s;
}

.dot-3 {
  top: 45%;
  right: -2%;
  animation: floatDot 4.5s ease-in-out infinite 1s;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(191, 154, 62, .8);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: bounceCue 1.8s ease-in-out infinite;
  z-index: 10;
}

@keyframes bounceCue {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* =============== Why Choose Us =============== */
.grid-3 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #fff;
  border: 1px solid rgba(191, 154, 62, .18);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 24px -12px rgba(13, 43, 92, .12);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -16px rgba(13, 43, 92, .22);
  border-color: var(--gold);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold);
}

.why-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
}

.why-card p {
  font-size: .9rem;
  color: rgba(30, 39, 51, .6);
  margin-top: .5rem;
  line-height: 1.6;
}

/* =============== Chain Divider =============== */
.chain-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 2.5rem 1.25rem;
  background: var(--cream);
}

.chain-divider span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
}

.chain-divider span:nth-child(2n) {
  border-color: var(--red);
}

.chain-divider span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 22px;
  height: 1px;
  background: var(--gold-dark);
  opacity: .5;
}

.chain-divider span:last-child::before {
  display: none;
}

/* =============== Featured Collections =============== */
.bg-band {
  background: linear-gradient(to bottom, var(--cream-dark), var(--cream));
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 12px 28px -14px rgba(13, 43, 92, .25);
}

.jewel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.25) saturate(1.3) contrast(1.02);
  transition: transform .7s ease;
}

.feature-card:hover .jewel-img {
  transform: scale(1.12);
}

.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(7, 26, 61, .85), transparent 55%);
}

.feature-overlay span {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

/* =============== About =============== */
.about {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
}

.about-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-media {
  position: relative;
}

.about-media img {
  width: 90%;
  height: 590px;
  object-fit: cover;
  border-radius: .5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .4);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--maroon-dark);
  border-radius: .5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .3);
  display: none;
}

@media (min-width: 640px) {
  .about-badge {
    display: block;
  }
}

.about-badge .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge .est {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.about-lede {
  margin-top: 1.25rem;
  color: rgba(255, 253, 248, .75);
  line-height: 1.7;
}

.about-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255, 253, 248, .85);
  font-size: .95rem;
}

.check-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
}

/* =============== Gallery / Masonry =============== */
.masonry {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .masonry {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 1024px) {
  .masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

.masonry-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px -14px rgba(13, 43, 92, .3);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* =============== Product cards (Signature collections) =============== */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card .jewel-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px -16px rgba(13, 43, 92, .28);
}

.product-card .prod-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.product-card .prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.25) saturate(1.3);
  transition: transform .6s ease;
}

.product-card:hover .prod-img-wrap img {
  transform: scale(1.1);
}

.product-card .prod-body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card .prod-cat {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.product-card .prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: .2rem;
}

.product-card .prod-price {
  font-size: .8rem;
  color: var(--ink);
  opacity: .6;
  margin-top: .3rem;
}

.product-card .prod-btn {
  margin-top: .8rem;
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--maroon);
  border-bottom: 1px solid var(--maroon);
  padding-bottom: 1px;
}

/* =============== Testimonials =============== */
.testimonials {
  background: var(--maroon-dark);
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  text-align: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-quote {
  margin-top: 1.25rem;
  color: rgba(255, 253, 248, .8);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.6;
}

.testimonial-name {
  margin-top: 1rem;
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .03em;
}

/* =============== Services =============== */
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 154, 62, .18);
  transition: transform .4s ease, box-shadow .4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px -16px rgba(13, 43, 92, .2);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: rgba(30, 77, 140, .3);
  font-weight: 700;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.service-card p {
  font-size: .9rem;
  color: rgba(30, 39, 51, .6);
  margin-top: .5rem;
  line-height: 1.6;
}

/* =============== Visit Store =============== */
.visit-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.visit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  border: 1px solid rgba(191, 154, 62, .15);
}

.visit-icon {
  font-size: 1.3rem;
}

.visit-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.visit-item p {
  font-size: .9rem;
  color: rgba(30, 39, 51, .6);
  margin-top: .25rem;
}

.visit-hours {
  background: var(--maroon);
  border-radius: .75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visit-hours h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
}

.visit-hours p:first-of-type {
  font-size: .7rem;
  color: rgba(255, 253, 248, .7);
  margin-top: .25rem;
}

.visit-hours .hours-value {
  color: var(--cream);
  font-weight: 600;
}

.map-frame {
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .2);
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* =============== Footer =============== */
.footer {
  background: var(--maroon-dark);
  color: rgba(255, 253, 248, .8);
  padding: 4rem 1.25rem 2rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 2.5rem 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.footer-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
}

.footer-brand span {
  color: var(--gold);
}

.footer-about {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 253, 248, .6);
}

.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
}

.footer-link {
  color: rgba(255, 253, 248, .8);
  transition: color .3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255, 253, 248, .6);
}

.social-row {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  text-transform: uppercase;
  transition: all .3s ease;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  border-top: 1px solid rgba(191, 154, 62, .15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255, 253, 248, .5);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* =============== Floating buttons =============== */
.float-btn {
  position: fixed;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .35);
  transition: transform .3s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: currentColor;
}

.whatsapp-btn {
  background: #25D366;
  right: 24px;
  bottom: 24px;
}

.call-btn {
  background: var(--maroon);
  right: 24px;
  bottom: 88px;
}

.call-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.top-btn {
  background: var(--gold);
  color: var(--maroon-dark);
  right: 24px;
  bottom: 152px;
}

.top-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* =============== Load-in animation (pure CSS, no scroll trigger needed) =============== */
.reveal {
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}