/* ================================================================
   FONTS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Mukta+Mahee:wght@200;300;400;500;600;700;800&display=swap');

/* ================================================================
   GLOBAL RESET & BASE
   (the two separate "*,*::before,*::after" resets in the original
   file have been combined into one — universal-selector rules have
   the lowest specificity so their position in the file never
   changes the result, this is a safe merge)
   ================================================================ */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #333;
  font-family: "Mukta Mahee", sans-serif;
}

/* Keeps anchor-linked sections from being hidden under the sticky nav bar */
section[id] {
  scroll-margin-top: 90px;
}

/* ================================================================
   TYPOGRAPHY UTILITY CLASSES
   (font-weight / style helper classes for the two brand fonts)
   ================================================================ */
.mukta-mahee-extralight { font-family: "Mukta Mahee", sans-serif; font-weight: 200; font-style: normal; }
.mukta-mahee-light      { font-family: "Mukta Mahee", sans-serif; font-weight: 300; font-style: normal; }
.mukta-mahee-regular    { font-family: "Mukta Mahee", sans-serif; font-weight: 400; font-style: normal; }
.mukta-mahee-medium     { font-family: "Mukta Mahee", sans-serif; font-weight: 500; font-style: normal; }
.mukta-mahee-semibold   { font-family: "Mukta Mahee", sans-serif; font-weight: 600; font-style: normal; }
.mukta-mahee-bold       { font-family: "Mukta Mahee", sans-serif; font-weight: 700; font-style: normal; }
.mukta-mahee-extrabold  { font-family: "Mukta Mahee", sans-serif; font-weight: 800; font-style: normal; }

.arvo-regular        { font-family: "Arvo", serif; font-weight: 400; font-style: normal; }
.arvo-bold           { font-family: "Arvo", serif; font-weight: 700; font-style: normal; }
.arvo-regular-italic { font-family: "Arvo", serif; font-weight: 400; font-style: italic; }
.arvo-bold-italic    { font-family: "Arvo", serif; font-weight: 700; font-style: italic; }

/* ================================================================
   NAVIGATION
   Two nav implementations exist in the markup — a legacy
   <ul><li><a> bar and a newer <nav><a> bar. Both are kept since
   they target different HTML structures.
   ================================================================ */

/* Legacy nav bar */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #b8ae47;
}

.nav-toggle {
  display: none;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font-family: "Mukta Mahee", sans-serif;
}

ul {
  list-style-type: none;
  background-color: #b8ae47;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-family: "Mukta Mahee", sans-serif;
}

ul li a:hover {
  background-color: #a09c3e;
}



/* Hover dropdown (e.g. FAQ under About) — .dropdown needs higher
   specificity than the plain "ul" rule above so it can override
   its display/position/z-index instead of inheriting them */
ul li.has-dropdown {
  position: relative;
}

ul li.has-dropdown .dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: #b8ae47;
  z-index: 200;
}

ul li.has-dropdown:hover .dropdown {
  display: flex;
}

ul li.has-dropdown .dropdown li a {
  padding: 12px 16px;
}

ul li.has-dropdown .dropdown li a:hover {
  background-color: #a09c3e;
}

/* Hamburger collapse — nothing shows in the closed bar except the
   toggle button; the full link list only appears once tapped open */
@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav ul li {
    display: none;
  }

  .site-nav ul.nav-open li {
    display: block;
  }
}

/* Newer nav bar (home page) */
nav {
  background: #b8ae47;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 14px 28px;
  display: block;
  transition: background 0.15s;
}

nav a:hover {
  background: rgba(0, 0, 0, 0.15);
}

/* ================================================================
   LEGACY HEADER / LOGO
   (large centered h1 + logo image used on older pages)
   ================================================================ */
#logo {
  display: block;
  margin: auto;
  width: 50%;
  padding-bottom: 20px;
}

.logo-mobile {
  display: none;
  margin: auto;
  width: 400px;
  max-width: 75%;
}

@media (max-width: 700px) {
  #logo.logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
}

h1 {
  display: flex;
  justify-content: center;
  color: #b8ae47;
  font-size: 75px;
}

h2 {
  font-family: "Arvo", serif;
  font-weight: 700;
  color: #b8ae47;
  text-align: center;
  font-size: 4rem;
  margin-top: 40px;
  margin-bottom: 24px;
}

#intro {
  font-size: large;
  display: flex;
  justify-content: center;
}

/* ================================================================
   SHARED FORM ELEMENTS
   (base <form>/<input>/<textarea>/<button> styling, used as the
   default look for any plain form on the site)
   ================================================================ */
form {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 36px;
  background-color: #fdfdf7;
  border: 1px solid #ddd9a0;
  border-radius: 4px;
}

label {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 600;
  color: #6b6420;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 8px 12px;
  font-family: "Mukta Mahee", sans-serif;
  font-size: 1rem;
  border: 1px solid #c9c46a;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #b8ae47;
  box-shadow: 0 0 0 2px rgba(184,174,71,0.15);
}

textarea {
  height: 120px;
  resize: vertical;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #b8ae47;
  color: white;
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button[type="submit"]:hover {
  background-color: #a09c3e;
}

/* ================================================================
   SHARED COMPONENTS
   (.section-title and the FAQ accordion each appeared twice in the
   original file with different values on the same selectors — they
   have been merged into a single rule per selector, keeping the
   final cascaded value for every property so the rendered result
   is unchanged)
   ================================================================ */
.section-title {
  font-family: "Arvo", serif;
  font-weight: 700;
  color: #b8ae47;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 36px;
  line-height: 1.2;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #e0dca0;
}

.faq-item:last-child {
  border-bottom: 1px solid #e0dca0;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: center;
  padding: 18px 32px;
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #b8ae47;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s;
}

.faq-btn:hover {
  background: #fafae8;
}

/* Two distinct icon classes appear in the markup (different pages
   use different class names on the chevron/plus icon) — kept as
   separate rules since they are not the same selector */
.faq-icon {
  font-size: 14px;
  color: #b8ae47;
  transition: transform 0.25s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-chevron {
  display: inline-block;
  font-size: 12px;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-body.open {
  max-height: 300px;
}

.faq-body-inner {
  font-family: "Mukta Mahee", sans-serif;
  padding: 0 40px 18px;
  font-size: 0.95rem;
  color: #5a5640;
  line-height: 1.75;
  text-align: center;
}

/* ================================================================
   SHARED PAGE LAYOUT
   (page header + two-column content body — used by About & Contact)
   ================================================================ */
.page-header {
  text-align: center;
  padding: 48px 0 0;
}

.page-header h1 {
  font-family: "Arvo", serif;
  font-weight: 700;
  color: #b8ae47;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 6px;
}

.page-header-rule {
  width: 60px;
  height: 2px;
  background: #b8ae47;
  margin: 18px auto 0;
  border: none;
}

.page-body {
  max-width: 860px;
  margin: 56px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
}

.page-body--single {
  display: block;
  max-width: 600px;
}

.column-divider {
  background-color: #ddd9a0;
  height: 100%;
  min-height: 300px;
}

.section-label {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8ae47;
  margin: 0 0 10px;
}

@media (max-width: 600px) {
  .page-body {
    grid-template-columns: 1fr;
    gap: 48px 0;
    margin: 32px auto 56px;
  }
  .column-divider {
    height: 1px;
    min-height: unset;
    width: 100%;
  }
  section {
    padding: 40px 20px;
  }
  .pricing-col {
    padding: 24px 22px;
  }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-photo {
  width: 320px;
  height: 220px;
  background-color: #ede9b8;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-body {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #5a5640;
  line-height: 1.85;
  margin: 0;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-intro {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #5a5640;
  line-height: 1.75;
  margin: 0 0 28px;
}

.contact-col {
  position: relative;
}

.contact-col .section-title {
  text-align: left;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.social-link {
  display: block;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 16px 20px;
  border: 1.5px solid #b8ae47;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.social-link:hover {
  background: #fafae8;
}

.social-link-icon {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  display: none;
}

.social-link-text {
  display: block;
  flex-direction: column;
}

.social-link-name {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6420;
  display: block;
  margin-bottom: 4px;
}

.social-link-handle {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: #000000;
  display: block;
}

.contact-decoration-top {
  position: absolute;
  top: 80px;
  right: 530px;
  width: 200px;
  z-index: 1;
  pointer-events: none;
}

.contact-decoration-side {
  position: absolute;
  top: 110px;
  right: -170px;
  width: 200px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(25deg);
}

.contact-cat {
  position: relative;
  margin-top: -60px;
  margin-left: 2
  0px;
  z-index: 3;
  width: 500px;
  max-width: 100%;
  display: block;
}

.contact-caption {
  font-size: 0.8rem;
  color: var(--text-muted, #888);
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-decoration-side {
    display: none;
  }
    .contact-decoration-top {
    display: none;
  }
    .contact-cat{
      margin-top: 20px;
    }
}
/* ================================================================
   HOME PAGE
   ================================================================ */
.site-header {
  text-align: center;
  padding: 28px 20px 10px;
}

.site-title {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: #b8ae47;
  letter-spacing: 0.06em;
  line-height: 1;
}

section {
  padding: 60px 24px;
}

.intro {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.intro-photo-wrap {
  flex-shrink: 0;
  width: 450px;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.intro-photo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.intro-text {
  flex: 1;
  min-width: 240px;
}

.intro--reverse .intro-photo-wrap {
  order: 2;
}

.intro--reverse .intro-text {
  order: 1;
}

.intro-text h2 {
  font-family: "Arvo", serif;
  font-weight: 700;
  color: #b8ae47;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.intro-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
}

.how-section {
  background: #f6f6f1;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.how-text {
  flex: 1;
  min-width: 240px;
}

.how-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1em;
}

.how-text p:last-child {
  margin-bottom: 0;
}

.how-img {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}

.how-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

#pricing {
  position: relative;
  overflow: hidden;
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-layout {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.pricing-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}

.pricing-img {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.pricing-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pricing-img-caption {
  font-size: 0.75rem;
  color: #888;
  max-width: 380px;
  line-height: 1.5;
  margin-top: 4px;
}

.pricing-cols {
  flex: 1;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-col {
  flex: 1;
  min-width: 220px;
  border: 2px solid #b8ae47;
  border-radius: 10px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.pricing-col h3 {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8ae47;
  margin-bottom: 14px;
}

.pricing-col p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 10px;
}

.pricing-col p:last-of-type {
  margin-top: 20px;
  margin-bottom: 0;
}

.pricing-col strong {
  color: #333;
  font-weight: 700;
}

.pricing-note {
  flex-basis: 100%;
  margin-top: 28px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  border-top: 1px solid #e8e4b8;
  padding-top: 20px;
}

.faq-section {
  background: #fdfdf7;
}

.hero-cta {
  margin-top: 20px;
  text-align: center;
}

.step-cols {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.step-col {
  flex: 1;
  min-width: 220px;
  border: 2px solid #b8ae47;
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
}

.step-col .step-number {
  font-family: "Arvo", serif;
  font-weight: 700;
  color: #b8ae47;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step-col h3 {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
}

.step-col p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ================================================================
   FEATURED WORK GRID (home page "Recent portraits")
   Separate from .row/.column (used by the actual Gallery page) so
   the two can have independent column counts per breakpoint.
   Desktop: 4 across x 2 rows = 8 photos.
   Mobile (<=700px): 2x2, with photos 5-8 hidden so only 4 show.
   ================================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  /*padding: 1rem 2rem;*/
}

@media (max-width: 700px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /*padding: 0.75rem 1rem;*/
  }
  .featured-grid .column:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 480px) {
  .featured-grid {
    /*padding: 0.75rem 1.25rem;*/
  }
}

.pricing-teaser {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-teaser p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}

.cta-section {

  position: relative;
  overflow: hidden;
}

/* Lets a decoration bleed across two adjacent sections (e.g. the
   Pricing teaser + CTA on the home page) by sizing/positioning it
   relative to a shared wrapper instead of a single section */
.cat-bleed-wrap {
  position: relative;
  overflow: hidden;
}

.cat-bleed {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(-25deg);
  width: 420px;
  max-width: 46vw;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.dog-bleed-wrap {
  position: relative;
  overflow: hidden;
}
.dog-bleed {
  position: absolute;
  top: 18%;
  left: -180px;
  transform: translateY(-25%) rotate(-5deg);
  width: 550px;
  max-width: 46vw;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.side-decoration {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: -1;
  pointer-events: none;
}

.side-decoration--right {
  right: -50px;
  max-width: 36vw;
  object-fit: contain;
}

@media (max-width: 900px) {
  .side-decoration,
  .cat-bleed,
  .dog-bleed {
    display: none;
  }
}

.cta-button {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  background-color: #b8ae47;
  color: #fff;
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #a09c3e;
}

/* Referenced in Commissions/Contact page copy for inline links —*/
.link-gold {
  color: #b8ae47;
  font-weight: 600;
  text-decoration: underline;
}

.link-gold:hover {
  color: #a09c3e;
}

.link-pink {
  color: #c9668a;
  font-weight: 600;
  text-decoration: underline;
}

.link-pink:hover {
  color: #a84e70;
}

footer {
  background: #b8ae47;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .intro,
  .how-inner {
    flex-direction: column;
  }



  .hero-tagline {
    display: none;
  }

  .pricing-layout,
  .pricing-cols {
    flex-direction: column;
  }

  /* About page pricing section: reverse the visual stacking order
     so the pricing boxes render above the photos on mobile, without
     touching the home page's pricing section (which doesn't have
     this modifier class). column-reverse flips the display order
     of pricing-images / pricing-cols while leaving the DOM order,
     and therefore .pricing-note's position after the layout, alone. */
  .pricing-layout.pricing-layout--reverse-mobile {
    flex-direction: column-reverse;
  }

  .site-title {
    font-size: 3rem;
  }
}

/* ================================================================
   LEGACY GALLERY GRID
   (div.gallery thumbnail grid with responsive columns)
   ================================================================ */
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive { width: 49.99999%; margin: 6px 0; }
}

@media only screen and (max-width: 500px) {
  .responsive { width: 100%; }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* ================================================================
   LIGHTBOX GALLERY
   (row/column grid + fullscreen modal slideshow)
   ================================================================ */
.row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  padding: 1rem 2rem;
}

.gallery-header {
  margin-top: 48px;
}

.column {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #fdfdf7;
}

@media (max-width: 900px) {
  .row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.75rem 1.25rem;
  }
}

.column img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cursor {
  cursor: pointer;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.19);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.92);
}

.modal-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 900px;
}

.close {
  color: #fff;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 1000;
}

.close:hover {
  color: #aaa;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 3px;
  user-select: none;
  transition: 0.3s;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.caption-container {
  text-align: center;
  background-color: #111;
  padding: 8px 16px;
  color: white;
  font-size: 13px;
}

.thumbs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  padding: 10px 0;
}

.thumb-arrow {
  flex-shrink: 0;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 6px 10px;
  user-select: none;
  border-radius: 3px;
  transition: background-color 0.15s;
}

.thumb-arrow:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.modal-thumbs {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: hidden;
  scroll-behavior: smooth;
  max-width: 448px;
  margin: 0;
}

.modal-thumbs .column {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
}

.demo {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.demo:hover, .demo.active {
  opacity: 1;
}

/* ================================================================
   COMMISSION PAGE
   ================================================================ */
.commission-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.commission-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  /* min-height: 180px; */
  margin-bottom: 20px;
  padding-left: 40px;
}

.commission-cat {
  width: 200px;
  max-width: 45%;
  rotate: 180deg;
  height: auto;
  margin-top: -50px;
  margin-bottom: -50px;
  z-index: 2;
}

.commission-heading {
  color: #b8ae47;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 15px;
}

.commission-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.commission-form {
  padding: 40px;
  background-color: #fdfdf7;
  border: 2px solid #ddd9a0;
  border-radius: 12px;
}

.commission-form label {
  display: block;
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 600;
  color: #b8ae47;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.commission-form .form-field {
  margin-bottom: 24px;
}

.commission-form input[type="text"],
.commission-form input[type="email"],
.commission-form input[type="number"],
.commission-form select,
.commission-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd9a0;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Mukta Mahee", sans-serif;
}

.commission-form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background-color: #b8ae47;
  color: #fff;
  border: 3px solid #7f7931;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
}

.commission-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.commission-info p {
  font-family: "Mukta Mahee", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.commission-info ul {
  display: block;
  background: none;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 16px;
  position: static;
  top: auto;
  z-index: auto;
}

.commission-info li {
  font-family: "Mukta Mahee", sans-serif;
  color: #333;
  margin-bottom: 6px;
}

.commission-decorations {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.commission-decorations .flower {
  width: 70px;
  height: auto;
}

.commission-closed {
  max-width: 750px;
  margin: 40px auto 0;
  padding: 60px 40px;
  background-color: #fdfdf7;
  border: 2px solid #ddd9a0;
  border-radius: 12px;
  text-align: center;
}

.commission-closed-title {
  font-family: "Mukta Mahee", sans-serif;
  font-weight: 700;
  color: #b8ae47;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.commission-closed-text {
  font-family: "Mukta Mahee", sans-serif;
  color: #b8ae47;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.commission-closed-date {
  font-weight: 700;
  margin-bottom: 40px;
}

.commission-closed-social-label {
  font-family: "Mukta Mahee", sans-serif;
  color: #b8ae47;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.commission-social-bar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #b8ae47;
  border-radius: 8px;
  padding: 16px 80px;
  width: 100%;
  max-width: 500px;
}

.commission-social-bar a {
  display: block;
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .commission-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .commission-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .commission-cat {
    display: none;
  }
}