/* =========================================================
   SWAGATA BOSE — shared stylesheet
   Rebuilt from the original WordPress/Elementor site
   ========================================================= */

:root {
  --bg: #000000;
  --bg-alt: #0c0c0c;
  --footer-bg: #242222;
  --red: #db0000;
  --pink: #fe0467;
  --tan: #f1d8b9;
  --gold: #d9a86c;
  --box-tan: #ffd9a2;
  --body-grey: #b9b9b9;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--body-grey);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease;
}

.container-xl {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ---------- Headings & type helpers ---------- */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0;
}

.eyebrow-script {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  color: #eee;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 700;
  font-size: 1.9rem;
  text-align: center;
}

.title-frame {
  display: inline-block;
  border: 1px solid var(--red);
  color: var(--tan);
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.4rem;
  padding: 10px 34px;
  background: rgba(255, 255, 255, .08);
}

/* ---------- Buttons ---------- */

.btn-outline-brand {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  background: transparent;
  transition: background .25s ease, color .25s ease;
}

.btn-outline-brand:hover {
  background: var(--gold);
  color: #000;
}

.btn-solid-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid var(--red);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.btn-solid-red:hover {
  background: transparent;
  color: var(--red);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
  border-bottom: 1px solid #151515;
}

.site-header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--tan);
  color: var(--tan);
  font-size: 1.3rem;
  padding: 4px 10px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid #151515;
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav li {
    border-top: 1px solid #151515;
  }

  .main-nav a {
    display: block;
    padding: 16px 40px;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--footer-bg);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-grid p {
  font-size: .92rem;
  color: #cfcfcf;
  max-width: 34ch;
}

.footer-links h5 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d8d8d8;
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
}

.footer-social .fb {
  background: #3b5998;
}

.footer-social .tw {
  background: #1da1f2;
}

.footer-social .yt {
  background: #ff0000;
}

.footer-bottom {
  border-top: 1px solid #363333;
  text-align: center;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: .85rem;
  color: #cfcfcf;
}

.footer-bottom a {
  color: #cfcfcf;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================================================
   HOME PAGE
   ========================================================= */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: none;
  align-items: center;
}

.hero-slide.active {
  display: flex;
  padding-right: 10%;
}

.hero-slide img.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .85;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0 90px;
}

.hero-inner img {
  width: 30%;
}

.hero-art {
  width: 340px;
  border: 4px solid #000;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .6);
}

.hero-caption {
  position: relative;
  z-index: 2;
  padding: 0 90px 40px;
}

.hero-caption h1 {
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 3px;
}

.hero-caption p {
  color: #ddd;
  max-width: 36ch;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ddd;
  font-size: 2.4rem;
  z-index: 3;
  cursor: pointer;
  padding: 10px 18px;
}

.hero-nav-btn.prev {
  left: 6px;
}

.hero-nav-btn.next {
  right: 6px;
}

.hero-nav-btn:hover {
  color: var(--pink);
}

@media (max-width: 860px) {

  .hero,
  .hero-slide {
    min-height: 480px;
  }

  .hero-inner {
    justify-content: center;
    padding: 0 20px;
  }

  .hero-inner img {
    width: 120%;
  }

  .hero-art {
    width: 220px;
  }

  .hero-caption {
    display: none;
  }

  .hero-slide.active {
    padding-left: 10%;
  }

  .hero-portrait {
    display: none;
  }
}

/* About preview */
.about-preview {
  padding: 90px 120px;
  text-align: center;
}

.about-preview .section-title {
  margin-bottom: 50px;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.about-preview-grid img {
  border: 1px solid #2a2a2a;
}

.about-preview-grid p {
  margin-bottom: 18px;
  font-size: .95rem;
}

@media (max-width: 860px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-preview-grid img {
    margin: 0 auto;
    max-width: 240px;
  }

  .about-preview-grid p {
    text-align: left;
  }
}

@media (max-width: 700px) {

  .about-preview {
    padding: 60px 20px;
  }

  .about-preview .section-title {
    margin-bottom: 30px;
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .about-preview-grid img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .about-preview-grid p {
    font-size: 0.88rem;
    line-height: 1.7;
    text-align: left;
  }

  .about-preview-grid .btn-outline-brand {
    margin-top: 5px;
  }

  /* .about-preview-grid .btn-outline-brand {
    display: table;
    margin: 10px auto 0;
} */
}

/* Gallery preview (home) */
.gallery-preview {
  background: var(--bg-alt);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
}

/* ---- Art Gallery slider (home page) ---- */
.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0 45px;
}

.gallery-slider-viewport {
  overflow: hidden;
  flex: 1;
}

.gallery-slider-track {
  display: flex;
  transition: transform .5s ease;
}

.gallery-slide-item {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
}

.gallery-slide-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid #2a2a2a;
  transition: transform .4s ease;
}

.gallery-slide-item a:hover img {
  transform: scale(1.04);
}

.gallery-slide-item span {
  display: block;
  margin-top: 18px;
  font-size: .82rem;
  letter-spacing: 3px;
  color: #ddd;
}

.gallery-nav-btn {
  flex: 0 0 auto;
  background: none;
  border: 1px solid #3a3a3a;
  color: #ddd;
  font-size: 1.8rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .25s ease;
}

.gallery-nav-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery-nav-btn[disabled] {
  opacity: .3;
  cursor: default;
}

.gallery-nav-btn[disabled]:hover {
  background: none;
  border-color: #3a3a3a;
  color: #ddd;
}

@media (max-width: 900px) {
  .gallery-slide-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .gallery-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  .gallery-slider {
    gap: 8px;
  }
}

/* Videos */
.videos-section {
  background: #fff;
  padding: 90px 0;
}

.videos-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.219);
  padding: 60px;
  text-align: center;
}

.videos-card .section-title {
  margin-bottom: 40px;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border: none;
}

/* Testimonials */
.testimonials {
  padding: 90px 0 40px;
  text-align: center;
}

.testimonials .eyebrow-script {
  font-size: 1.6rem;
}

.testimonials .section-title {
  margin-bottom: 50px;
}

.testi-track {
  max-width: 620px;
  margin: 0 auto;
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
}

.testi-slide h4 {
  font-size: 1.17rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.testi-slide .role {
  color: var(--tan);
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 4px 0 12px;
}

.stars {
  color: #f2b100;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.testi-slide q {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.8rem;
  color: #eee;
}

.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.testi-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.testi-dots button.active {
  background: var(--red);
  border-color: var(--red);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.page-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-title {
  text-align: center;
  padding: 46px 0;
}

.page-banner-title .c-head {
  padding: 10px;
}

@media (max-width: 700px) {
  .page-banner {
    height: 300px;
  }

  .page-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* =========================================================
   ABOUT PAGE — IMAGE LEFT / CONTENT RIGHT
   ========================================================= */

.about-intro {
  padding: 0px 0 80px;
}

.about-intro .container-xl {
  max-width: 1150px;
  margin: 0 auto;
}

.about-intro .section-title {
  margin-bottom: 50px !important;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  max-width: 1150px;
  margin: 0 auto;
}

.about-intro-grid>img {
  width: 500px;
  height: 650px;
  object-fit: cover;
  border: 1px solid #262626;
  display: block;
  align-self: center;
}


/* Right content */
.about-intro-grid>div {
  width: 100%;
}

.about-intro-grid h3 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0 0 20px;
}

.about-intro-grid p {
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Tablet */
@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
  }

  .about-intro-grid>img {
    max-width: 320px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .about-intro {
    padding: 10px 0 60px;
  }

  .about-intro .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    max-width: 550px;
    margin: 0 auto;
  }

  @media (max-width: 700px) {
    .about-intro-grid>img {
      width: 100%;
      max-width: 400px;
      height: 350px;
      object-fit: cover;
      margin: 0 auto;
    }
  }


  .about-intro-grid h3 {
    text-align: center;
    font-size: 1.4rem;
  }

  .about-intro-grid p {
    text-align: left;
    font-size: .9rem;
  }
}

.about-lists {
  width: 100%;
  padding: 60px 0 90px;
}

.about-lists-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.about-lists-grid {
  width: 100%;
}

.about-lists-grid>div {
  margin-bottom: 45px;
}

.about-lists h3 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #fff;
}

.about-lists ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-lists li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: .9rem;
  line-height: 1.7;
}

.about-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* COLLECTION */
.about-collection {
  margin-bottom: 0 !important;
}

.about-collection p {
  font-size: .9rem;
  line-height: 1.8;
  max-width: 70ch;
}

/* RIGHT IMAGE */
.about-lists-image {
  width: 100%;
}

.about-lists-image img {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  border: 1px solid #262626;
  margin: 0 auto;
  display: block;
}

/* TABLET */
@media (max-width: 900px) {
  .about-lists-wrapper {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .about-lists-image img {
    height: 430px;
  }
}

/* MOBILE */
@media (max-width: 700px) {
  .about-lists {
    padding: 40px 0 70px;
  }

  .about-lists-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 550px;
  }

  /* Image comes after content on mobile */
  .about-lists-image {
    order: 2;
  }

  .about-lists-grid {
    order: 1;
  }

  .about-lists-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 450px;
  }
}

.participations {
  padding: 40px 0 100px;
  text-align: center;
}

.participations .eyebrow-script {
  font-size: 1.5rem;
}

.participations .section-title {
  margin-bottom: 46px;
}

.particip-list {
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.particip-list div {
  background: var(--box-tan);
  color: #1a1a1a;
  padding: 16px 26px;
  font-size: .92rem;
}

/* =========================================================
   ART GALLERY PAGE
   ========================================================= */

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 50px 0 10px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #3a3a3a;
  color: var(--tan);
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: all .25s ease;
}

.filter-btn:hover {
  border-color: var(--red);
  color: #fff;
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery-grid figure {
  transition: opacity .35s ease, transform .35s ease;
}

.gallery-grid figure.is-hidden {
  display: none;
}

.gallery-grid {
  padding: 30px 0 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figure::after {
  content: "\002B";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  background: rgba(219, 0, 0, 0);
  opacity: 0;
  transition: all .3s ease;
}

.gallery-grid figure:hover::after {
  background: rgba(219, 0, 0, .45);
  opacity: 1;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border: 2px solid #222;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-wrap {
  padding: 20px 0 100px;
}

.contact-wrap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.contact-details .eyebrow-script {
  font-size: 1.5rem;
}

.contact-details .section-title {
  margin-bottom: 26px;
  text-align: left;
}

.contact-details address {
  font-style: normal;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 22px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: .98rem;
  color: #ddd;
}

.contact-line .ico {
  width: 22px;
  text-align: center;
  color: var(--tan);
  font-size: 1.1rem;
}

.contact-whatsapp {
  color: #ddd;
  font-size: .98rem;
}

.contact-whatsapp a {
  color: #25D366;
  font-weight: 600;
}

.contact-form {
  background: #0d0d0d;
  border: 1px solid #232323;
  padding: 40px;
}

.contact-form label {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 8px;
}

.contact-form .field {
  margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #000;
  border: 1px solid #2b2b2b;
  color: #fff;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #000;
  border: 1px dashed #333;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.captcha-question {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.15rem;
  letter-spacing: 1px;
  user-select: none;
  min-width: 130px;
}

.captcha-row input {
  flex: 1;
}

.captcha-refresh {
  background: none;
  border: 1px solid #333;
  color: var(--tan);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
}

.form-msg {
  margin-top: 16px;
  font-size: .88rem;
  padding: 12px 16px;
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(37, 211, 102, .12);
  color: #46e08a;
  border: 1px solid #1f7a45;
}

.form-msg.error {
  display: block;
  background: rgba(219, 0, 0, .12);
  color: #ff6363;
  border: 1px solid #6b1414;
}

@media (max-width: 900px) {
  .contact-wrap-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 700px) {

  .contact-details .eyebrow-script {
    text-align: left;
  }

  .contact-details .section-title {
    text-align: left;

  }

  .contact-form {
    text-align: left;
  }
}



/* =========================================================
   BLOG PAGE
   ========================================================= */

/* =========================================================
   BLOG PAGE
   ========================================================= */

.blog-intro {
  text-align: center;
  padding: 10px 0 50px;
}

.blog-intro p {
  max-width: 62ch;
  margin: 18px auto 0;
  font-size: .95rem;
}

.blog-grid {
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background: #0c0c0c;
  border: 1px solid #202020;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Blog image */
.blog-card .thumb {
  height: 250px;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .thumb img {
  transform: scale(1.06);
}

/* Blog content */
.blog-card .body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.18rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Description hidden by default */
.blog-details {
  display: none;
  margin-bottom: 20px;
}

.blog-details p {
  font-size: .87rem;
  line-height: 1.8;
  margin: 0;
}

/* Show description after clicking */
.blog-card.open .blog-details {
  display: block;
}

/* Read More button */
.blog-readmore {
  align-self: flex-start;
  background: none;
  border: none;
  border-bottom: 1px solid var(--pink);
  padding: 0 0 3px;
  color: var(--pink);
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}

.blog-readmore:hover {
  color: #fff;
  border-color: #fff;
}

/* Change to Read Less when opened */
.blog-card.open .blog-readmore {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .blog-card .thumb {
    height: 230px;
  }

  .blog-card .body {
    padding: 22px 20px 26px;
  }

  .blog-card h3 {
    font-size: 1.15rem;
  }
}

/* generic page hero title block reused across inner pages */
.inner-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #050505;
}

.inner-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.inner-hero .inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero .title-frame {
  margin-bottom: 0;
}

.page-top-space {
  height: 40px;
}

/* ---------- Blog page: exhibition invitation feature ---------- */

.exhibition-feature {
  padding: 0 0 70px;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 60px;
  align-items: center;
  background: #0c0c0c;
  border: 1px solid #202020;
  padding: 44px;
}

.exhibition-poster {
  position: relative;
  display: block;
  border: 1px solid var(--red);
  padding: 8px;
  overflow: hidden;
}

.exhibition-poster img {
  width: 100%;
  height: auto;
  transition: transform .5s ease;
}

.exhibition-poster:hover img {
  transform: scale(1.03);
}

.poster-zoom {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .78);
  color: var(--tan);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease;
}

.exhibition-poster:hover .poster-zoom {
  opacity: 1;
}

.exhibition-info .eyebrow-script {
  color: var(--gold);
}

.exhibition-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.25;
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  margin: 4px 0 6px;
}

.exhibition-sub {
  color: var(--tan);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 28px;
}

.exhibition-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}

.exhibition-facts li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.6;
}

.exhibition-facts i {
  color: var(--pink);
  width: 20px;
  text-align: center;
  margin-top: 5px;
}

.exhibition-facts strong {
  display: block;
  color: var(--white);
  font-weight: 500;
}

.exhibition-guests {
  border-top: 1px solid #262626;
  padding-top: 22px;
  margin-bottom: 30px;
}

.exhibition-guests p {
  font-size: .87rem;
  margin: 0 0 10px;
}

.exhibition-guests span {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .exhibition-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px;
  }

  .exhibition-poster {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .exhibition-grid {
    padding: 20px;
  }

  .exhibition-title {
    font-size: 1.7rem;
  }

  .poster-zoom {
    opacity: 1;
  }
}



/* =========================================================
   MEDIA PAGE
========================================================= */

.media-section {
  padding: 120px 0;
  background: #f7f6f2;
  color: #181818;
  overflow: hidden;
}

.media-section .container {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
}


/* =========================================================
   PRESS & CLIPPINGS HEADING
========================================================= */



.press-heading {
  max-width: 640px;
  margin-bottom: 55px;
}

.press-heading .media-eyebrow {
  display: block;

  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;

  margin-bottom: 25px;

  color: #181818;
}

.press-heading h1 {
  margin: 0 0 20px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(48px, 5vw, 70px);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -1.5px;

  color: #ff0000;
}

.press-heading p {
  margin: 0;

  font-family: "Poppins", sans-serif;

  font-size: 14px;

  line-height: 1.8;

  color: #555;

  max-width: 600px;
}


/* =========================================================
   PRESS GRID
========================================================= */

.press-grid {
  columns: 3;
  column-gap: 26px;
}

.press-item {
  position: relative;

  display: block;

  width: 100%;

  margin: 0 0 26px;

  padding: 10px;

  border: 0;

  background: #fff;

  cursor: zoom-in;

  break-inside: avoid;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.press-item:hover,
.press-item:focus-visible {

  transform: translateY(-6px);

  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.16),
    0 4px 10px rgba(0, 0, 0, 0.06);

  outline: none;
}

.press-item img {
  display: block;

  width: 100%;
  height: auto;
}


/* =========================================================
   IMAGE NUMBER
========================================================= */

.press-num {
  position: absolute;

  left: 10px;
  bottom: 10px;

  background: #181818;

  color: #fff;

  font-family: Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 2px;

  padding: 5px 9px;

  opacity: 0;

  transition: opacity 0.3s ease;
}

.press-item:hover .press-num,
.press-item:focus-visible .press-num {
  opacity: 1;
}


/* =========================================================
   PRESS LIGHTBOX
========================================================= */

.press-lightbox {
  position: fixed;

  inset: 0;

  z-index: 3000;

  display: none;

  align-items: center;
  justify-content: center;

  background: rgba(8, 8, 8, 0.98);

  padding: 30px;
}

.press-lightbox.active {
  display: flex;
}


/* =========================================================
   LIGHTBOX IMAGE
========================================================= */

.press-stage {
  margin: 0;

  max-width: 92vw;

  text-align: center;
}

.press-stage img {
  display: inline-block;

  max-width: 100%;

  max-height: 84vh;

  width: auto;
  height: auto;

  background: #fff;

  padding: 8px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.press-stage figcaption {
  margin-top: 14px;

  color: #bdbdbd;

  font-family: Arial, sans-serif;

  font-size: 11px;

  letter-spacing: 3px;

  text-transform: uppercase;
}


/* =========================================================
   LIGHTBOX BUTTONS
========================================================= */

.press-close,
.press-nav {

  position: absolute;

  background: none;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #fff;

  cursor: pointer;

  line-height: 1;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.press-close:hover,
.press-nav:hover {

  background: #fff;

  color: #000;

  border-color: #fff;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.press-close {

  top: 22px;

  right: 22px;

  width: 46px;

  height: 46px;

  font-size: 30px;

  font-weight: 300;
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

.press-nav {

  top: 50%;

  transform: translateY(-50%);

  width: 52px;

  height: 52px;

  font-size: 36px;

  padding: 0 0 5px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.press-prev {
  left: 22px;
}

.press-next {
  right: 22px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .media-section {
    padding: 90px 0;
  }

  .press-gallery {
    padding-top: 55px;
  }

  .press-grid {
    columns: 2;

    column-gap: 20px;
  }

  .press-item {
    margin-bottom: 20px;
  }

  .press-heading {
    margin-bottom: 45px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

  .media-section {
    padding: 70px 0;
  }

  .media-section .container {
    width: min(100% - 36px, 600px);
  }

  .press-gallery {
    padding-top: 45px;
  }

  .press-heading {
    margin-bottom: 35px;
  }

  .press-heading .media-eyebrow {
    font-size: 9px;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
  }

  .press-heading h1 {
    font-size: 43px;

    letter-spacing: -1px;

    line-height: 0.98;
  }

  .press-heading p {
    font-size: 13px;

    line-height: 1.75;
  }


  /* Two-column mobile masonry */

  .press-grid {
    columns: 2;

    column-gap: 12px;
  }

  .press-item {
    padding: 6px;

    margin-bottom: 12px;
  }

  .press-num {
    display: none;
  }


  /* =====================================================
       MOBILE LIGHTBOX
    ====================================================== */

  .press-lightbox {
    padding: 20px;
  }

  .press-stage {
    max-width: 92vw;
  }

  .press-stage img {
    max-width: 100%;

    max-height: 76vh;

    padding: 5px;
  }

  .press-stage figcaption {
    margin-top: 10px;

    font-size: 9px;

    letter-spacing: 2px;
  }


  /* Mobile navigation moves to bottom */

  .press-nav {

    top: auto;

    bottom: 22px;

    transform: none;

    width: 46px;

    height: 46px;

    font-size: 30px;
  }

  .press-prev {
    left: 20px;
  }

  .press-next {
    right: 20px;
  }


  /* Mobile close */

  .press-close {

    top: 15px;

    right: 15px;

    width: 40px;

    height: 40px;

    font-size: 26px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .media-section .container {
    width: calc(100% - 24px);
  }

  .press-grid {
    column-gap: 8px;
  }

  .press-item {
    padding: 4px;

    margin-bottom: 8px;
  }

  .press-heading h1 {
    font-size: 38px;
  }

}

/* Paragraph spacing inside expanded blog cards */
.blog-details p+p {
  margin-top: 14px;
}

/* PDF download link */
.blog-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 20px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}

.blog-download:hover {
  background: var(--pink);
  color: #000;
}

/* ==============================
   Invitation Image Gallery
   ============================== */

.invitation-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;
}

.invitation-lightbox.active {
  display: flex;
}

.invitation-viewer {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
}

.invitation-viewer img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.invitation-close,
.invitation-prev,
.invitation-next {
  position: fixed;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 100000;

  transition: all 0.3s ease;
}

.invitation-close:hover,
.invitation-prev:hover,
.invitation-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.invitation-close {
  top: 25px;
  right: 30px;
  font-size: 22px;
}

.invitation-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.invitation-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.invitation-counter {
  color: #fff;
  margin-top: 15px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {

  .invitation-lightbox {
    padding: 15px;
  }

  .invitation-viewer img {
    max-width: 92vw;
    max-height: 80vh;
  }

  .invitation-close {
    top: 15px;
    right: 15px;
  }

  .invitation-prev {
    left: 12px;
  }

  .invitation-next {
    right: 12px;
  }

  .invitation-close,
  .invitation-prev,
  .invitation-next {
    width: 42px;
    height: 42px;
  }
}