@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111111;
  color: #ffffff;
}

/* Hello Bar */
.hello-bar {
  width: 100%;
  background: #0d0d0d; /* slightly darker than nav for separation */
  color: var(--ink-light);
  text-align: center;
  padding: 0.6rem 1rem; /* increased from ~0.4, smaller than original */
  font-size: 0.95rem;   /* subtle bump */
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hello-bar p {
  margin: 0;
}

.hello-bar a {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: none;
}

.hello-bar a:hover {
  text-decoration: underline;
}

/* Navigation Wrapper */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(17,17,17,0.90);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  transition: none;
}

.nav-links a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d4d4d4;
}

.nav-links a.is-active {
  color: #d7c9a3;
}

.nav-links a.is-active:hover {
  color: #d7c9a3;
}

/* CTA button */
.nav-cta {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.nav-cta-desktop {
  margin-left: 1.5rem;
}

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-left: 1rem;
  cursor: pointer;
  width: 40px;
  height: 32px;
}

.nav-toggle-line {
  display: block;
  width: 30px;
  height: 2px;
  margin: 3px 0;
  background-color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

@media (max-width: 960px) {
  .nav-container {
    padding: 0.6rem 1.25rem;
  }

  /* Show hamburger, hide desktop CTA and inline links */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.75rem;

    /* start hidden */
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;

    transition: transform 0.2s ease;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  /* When data-visible=true, show menu */
  .nav-links[data-visible="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a.nav-cta-mobile {
    color: #111111;
  }
  .nav-links a.nav-cta-mobile:hover {
    color: #d7c9a3;
  }

  /* Optional: animate hamburger to "X" when open */
  .nav-toggle[aria-expanded="true"] .nav-toggle-line {width: 30px; height: 4px; margin: 0;}
  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  margin-top: 0;
  background-color: #111111;
  overflow: hidden;
}

/* Background media (photo now, video later) */
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/elite-live-wedding-hero-image.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient + content container */
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: inherit;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.9) 0%,
    rgba(17, 17, 17, 0.75) 35%,
    rgba(17, 17, 17, 0.25) 70%,
    rgba(17, 17, 17, 0) 100%
  );
}

/* Inner content */
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  color: #ffffff;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #d7c9a3; /* champagne accent */
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 700; /* Montserrat 700 */
  margin: 0 0 0.75rem;
  text-align: left;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  max-width: 480px;
  margin: 0 0 1.75rem;
  color: #e2e2e2;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Reusable buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.btn-primary {
  background: #d7c9a3;
  color: #111111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: #111111;
  color: #d7c9a3;
  border: #d7c9a3 solid 1px;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: #ffffff;
  transform: translateY(-1px);
  color: #d7c9a3;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }

  .hero-inner {
    padding: 5rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-video {
    display: none;
  }

  .hero-media {
    background-image: url('/assets/images/elite-live-wedding-hero-image.JPG');
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
  }
}

/* Generic section layout */
.section {
  padding: 4rem 2rem;
}

.section-dark {
  background-color: #1a1a1a; /* slightly lighter than #111 */
}

.section-alt {
  background-color: #111111; /* use for alternating sections later */
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section headings */
.section-header {
  margin-bottom: 1.75rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #ffffff;
}

.section-kicker {
  font-size: 1rem;
  font-weight: 500;
  color: #d7c9a3; /* champagne accent */
  margin: 0;
}

/* Welcome body text */
.welcome-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 1rem;
}

.welcome-body p:last-child {
  margin-bottom: 0;
}

/* Optional subtle divider under section */
.section-dark + .section,
.section-alt + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .section-title {
    font-size: 1.4rem;
  }
}

/* Services */

/* Centered header variant */
.section-header-center {
  text-align: center;
}

.section-header-center .section-title {
  margin-bottom: 0.35rem;
}

.section-header-center .section-kicker {
  font-size: 0.95rem;
}

/* Services grid */
.services-grid {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Service cards */
.service-card {
  background-color: #181818;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              border-color 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(215, 201, 163, 0.6); /* champagne accent */
}

.service-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.service-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d9d9d9;
}

/* Responsive layout */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Why Choose Elite Live */

/* Pillars grid */
.pillars-grid {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Pillar cards */
.pillar-card {
  background-color: #141414;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pillar-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.pillar-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.pillar-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d3d3d3;
}

/* Responsive */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Testimonials */

/* Testimonials grid */
.testimonials-grid {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Testimonial cards */
.testimonial-card {
  position: relative;
  background-color: #181818;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.testimonial-card--placeholder {
  border-style: dashed;
  border-color: rgba(215, 201, 163, 0.5); /* champagne accent */
}

/* Big quote mark */
.testimonial-quote-mark {
  position: absolute;
  top: 0.75rem;
  left: 1.4rem;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(215, 201, 163, 0.45);
  pointer-events: none;
}

/* Text & meta */
.testimonial-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e3e3e3;
  padding-left: 1.1rem; /* offset for the quote mark */
}

.testimonial-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #b5b5b5;
}

.testimonial-name {
  font-weight: 600;
  color: #ffffff;
}

.testimonial-name a {
  color: #ffffff;
  text-decoration: underline;
}

.testimonial-name a:hover {
  color: #cab88a;
}

.testimonial-detail {
  font-weight: 400;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem 1.5rem 1.25rem;
  }

  .testimonial-quote-mark {
    top: 0.7rem;
    left: 1.15rem;
  }

  .testimonial-text {
    padding-left: 1rem;
  }
}

/* Contact Section */

/* CTA strip */
.section-cta {
  /* background: #111111; */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Text block */
.section-cta-text {
  max-width: 750px;
}

.section-cta-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.section-cta-subtitle {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #d9d9d9;
} 

.section-cta-contact {
  margin: 0;
  font-size: 0.95rem;
  color: #e3e3e3;
}

.section-cta-contact a {
  color: #d7c9a3;
  text-decoration: none;
  font-weight: 600;
}

.section-cta-contact a:hover {
  text-decoration: underline;
}

.section-cta-phone {
  font-size: 0.95rem;
  margin: 0.75rem 0 0;
  color: #e3e3e3;
}

.section-cta-phone a {
  color: #d7c9a3;
  font-weight: 600;
  text-decoration: none;
}

.section-cta-phone a:hover {
  text-decoration: underline;
}

/* Actions */
.section-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Reuses .btn, .btn-primary, .btn-ghost from hero */
.section-cta .btn-primary {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 800px) {
  .section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-cta-actions {
    width: 100%;
  }
}

/* Gallery & FAQ Teaser */

/* Wrapper */
.teaser-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

/* Card layout */
.teaser-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #181818;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2rem;
  gap: 2rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

/* Text block */
.teaser-text-block {
  max-width: 600px;
}

.teaser-title {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.teaser-subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d0d0d0;
}

/* Teaser image placeholder – use real images when ready */
.teaser-image {
  flex-shrink: 0;
  height: 140px;
  width: 220px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #222;
  opacity: 0.85;
}

/* Example placeholder images (replace with your own paths) */
.teaser-gallery-img {
  background-image: url('/assets/images/gallery/wedding-1.jpeg');
}

.teaser-faq-img {
  background-image: url('/assets/images/elite-live-faq.jpg');
}

/* Hover effects */
.teaser-card:hover .teaser-image {
  opacity: 1;
}

.teaser-card:hover {
  border-color: rgba(215, 201, 163, 0.4); /* champagne accent */
}

/* Responsive */
@media (max-width: 900px) {
  .teaser-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .teaser-image {
    width: 100%;
    height: 180px;
  }
}

/* Footer */

.site-footer {
  background-color: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem 1.5rem;
  color: #d0d0d0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 2.5rem;
}

/* Columns */
.footer-col {
  font-size: 0.9rem;
}

/* Logo / brand */
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  margin: 0;
  line-height: 1.7;
  color: #bfbfbf;
}

/* Headings */
.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #d7c9a3; /* champagne accent */
}

/* Contact */
.footer-contact {
  margin: 0;
  line-height: 1.7;
}

.footer-contact a {
  color: #d7c9a3;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Optional social */
.footer-social {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  font-size: 0.8rem;
  text-decoration: none;
  color: #d0d0d0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  background-color: #d7c9a3;
  color: #111111;
  border-color: #d7c9a3;
}

/* Bottom strip */
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.9rem;
}

.footer-bottom-text {
  margin: 0;
  font-size: 0.8rem;
  color: #8f8f8f;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2.5rem 1.5rem 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* === NAV CTA VISIBILITY CONTROL === */

/* Desktop default: show desktop CTA, hide mobile CTA */
.nav-cta-desktop {
  display: inline-flex;
  margin-left: 1.5rem;
}

.nav-cta-mobile {
  display: none;
}

/* Mobile: hide desktop CTA, show mobile CTA */
@media (max-width: 960px) {
  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 0.25rem;
    width: fit-content;
  }
}

/* Contact page layout */
.contact-main {
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-left,
.contact-right {
  width: 100%;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1.25rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d0d0d0;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #151515;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #777777;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #d7c9a3;
  box-shadow: 0 0 0 1px rgba(215, 201, 163, 0.4);
  background-color: #181818;
}

.form-field textarea {
  resize: vertical;
}

.form-field-inline {
  margin-top: -0.25rem;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #d0d0d0;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Submit button */
.contact-submit {
  margin-top: 0.25rem;
}

/* Right-hand panels */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-panel {
  background-color: #151515;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.5rem 1.4rem;
}

.contact-panel-muted {
  background-color: #131313;
}

.contact-panel-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-panel-subtitle {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-panel-text {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d0d0d0;
}

.contact-panel-highlight {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-panel-highlight a {
  color: #d7c9a3;
  text-decoration: none;
  font-weight: 600;
}

.contact-panel-highlight a:hover {
  text-decoration: underline;
}

/* List in panels */
.contact-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #d0d0d0;
}

/* Responsive layout for contact page */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-right {
    margin-top: 1.75rem;
  }

  .form-row {
    flex-direction: column;
  }
}

/* Gallery page */

.gallery-main {
  margin-top: 0;
}

.gallery-intro {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d0d0d0;
}

.gallery-caption {
  display: none;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

/* Item */
.gallery-item {
  background-color: none;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 10px;
}

/* Image wrapper */
.gallery-image-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-image-wrap img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* Hover effect */
.gallery-item:hover .gallery-image-wrap img {
  transform: scale(1.05);
}

.gallery-item a.glightbox {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-link .gallery-image-wrap img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-image-wrap img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image-wrap img {
    height: 220px;
  }
}

/* About page */

.about-main {
  margin-top: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-main-copy {
  width: 100%;
}

.about-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 1rem;
}

.about-text-small {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0 0 0.75rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card {
  background-color: #151515;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.5rem 1.4rem;
}

.about-aside-title {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.about-aside-subtitle {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.about-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #d0d0d0;
}

/* Steps / process */
.about-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-step {
  background-color: #181818;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1.4rem 1.4rem;
}

.about-step-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.about-step-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d3d3d3;
}

/* FAQ section */
.faq-section {
  scroll-margin-top: 80px; /* so anchor isn't hidden under nav */
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  background-color: #151515;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
}

/* Remove default details disclosure marker, we’ll style it */
.faq-item > summary {
  list-style: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Add a simple + / - indicator via ::after */
.faq-question::after {
  content: "+";
  font-size: 1.1rem;
  margin-left: 0.75rem;
  color: #d7c9a3;
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d3d3d3;
}

/* Responsive for About */
@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-aside {
    margin-top: 1.75rem;
  }

  .about-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-steps {
    grid-template-columns: 1fr;
  }
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent-light);
  color: var(--ink-dark);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 9000;
}

#back-to-top:hover {
  background: var(--accent-light-hover, #cab88a);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-alert{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.contact-alert-success{ background:green; }
.contact-alert-error{ background:red; }
.contact-alert ul{ margin: .5rem 0 0; padding-left: 1.2rem; }