:root {
  --ink: #1c1712;
  --charcoal: #251f19;
  --cream: #fbf5ea;
  --soft-cream: #fffaf1;
  --birch: #efe1ca;
  --sand: #e7d2ad;
  --champagne: #eadab7;
  --gold: #b99758;
  --deep-gold: #8e6d32;
  --muted: #74695d;
  --white: #ffffff;
  --line: rgba(185, 151, 88, .34);
  --shadow: 0 24px 80px rgba(28, 23, 18, .14);
  --heading-font: Georgia, 'Times New Roman', serif;
  --body-font: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 245, 234, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 300px;
}

.brand-logo {
  display: block;
  width: clamp(320px, 47vw, 760px);
  max-height: 110px;
  object-fit: contain;
}

.nav-right {


  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-switcher {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, .82);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font: 700 12px var(--body-font);
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-call,
.button {
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 800;
  letter-spacing: .04em;
}

.nav-call {
  background: linear-gradient(135deg, var(--gold), #d5bd82);
  color: var(--ink);
  padding: 12px 19px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(185, 151, 88, .24);
}

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 84px 7%;
  background:
    radial-gradient(circle at 14% 16%, rgba(234, 218, 183, .7), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(185, 151, 88, .25), transparent 32%),
    linear-gradient(135deg, #fffaf1 0%, #f3e4cd 46%, #2b241d 46.2%, #17120f 100%);
}

.hero-card {
  width: min(920px, 100%);
  background: rgba(255, 250, 241, .95);
  border: 1px solid rgba(185, 151, 88, .38);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 74px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  inset: 18px;
  border: 1px solid rgba(185, 151, 88, .22);
}

.hero-card::after {
  right: -130px;
  top: -130px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(185, 151, 88, .34);
  background: rgba(239, 225, 202, .33);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--deep-gold);
  text-transform: uppercase;
  letter-spacing: .19em;
  font: 800 12px var(--body-font);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

h3 {
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 670px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-actions,
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
  font-size: 13px;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--gold), #d7be82);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(185, 151, 88, .25);
}

.secondary {
  border: 1px solid var(--gold);
  color: var(--ink);
  background: rgba(255, 255, 255, .54);
}

.light {
  background: var(--soft-cream);
  border: 1px solid rgba(185, 151, 88, .35);
  color: var(--deep-gold);
}

.dark {
  background: var(--ink);
  color: var(--white);
}

.rating-row {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  font: 700 14px var(--body-font);
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: .08em;
}

.section {
  padding: 86px 7%;
}

.intro {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.intro p:last-child {
  font-size: 18px;
  color: var(--muted);
}

.about-description {
  background: linear-gradient(180deg, var(--cream), var(--birch));
  padding-top: 30px;
}

.description-card {
  width: min(980px, 100%);
  margin: 0 auto;
  background: rgba(255, 250, 241, .72);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 54px);
  box-shadow: 0 18px 46px rgba(28, 23, 18, .07);
}

.description-card p:last-child {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--white);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cards {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--soft-cream);
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 245px;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(28, 23, 18, .06);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(185, 151, 88, .22);
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--deep-gold);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
}

.card p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.hiring {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .7), transparent 34%),
    linear-gradient(135deg, #efe1ca, #fffaf1 55%, #eadab7);
}

.hiring-layout {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: block;
}

.hiring-copy {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 250, 241, .78);
  box-shadow: 0 24px 70px rgba(28, 23, 18, .12);
  padding: clamp(34px, 6vw, 74px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hiring-copy::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(185, 151, 88, .24);
  border-radius: 28px;
  pointer-events: none;
}

.hiring-copy > * {
  position: relative;
  z-index: 1;
}

.hiring h2 {
  font-size: clamp(58px, 10vw, 112px);
  line-height: .85;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hiring-intro {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  max-width: 780px;
  margin: 0 auto;
}

.role-list {
  display: grid;
  gap: 16px;
  margin: 36px auto;
  max-width: 700px;
}

.role-item {
  background: var(--white);
  border: 1px solid rgba(185, 151, 88, .44);
  border-radius: 22px;
  padding: 20px 24px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(28, 23, 18, .06);
}

.role-item::before,
.role-item::after {
  content: "✦";
  color: var(--gold);
  font-size: clamp(18px, 2.6vw, 30px);
}

.preferred {
  color: var(--muted);
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.25;
  margin: 0 auto 30px;
  max-width: 760px;
  font-family: var(--heading-font);
  font-weight: 700;
}

.hiring-actions {
  justify-content: center;
}

.hiring .button {
  font-size: 14px;
  padding: 16px 28px;
}

.business-hours {
  background:
    radial-gradient(circle at 16% 18%, rgba(234, 218, 183, .58), transparent 28%),
    linear-gradient(180deg, var(--soft-cream), var(--cream));
}

.hours-card {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 241, .88);
  box-shadow: 0 20px 54px rgba(28, 23, 18, .09);
  padding: clamp(30px, 5vw, 58px);
}

.hours-card h2 {
  text-align: left;
  margin-bottom: 26px;
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(185, 151, 88, .25);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  padding: 16px 20px;
  font-size: clamp(17px, 2vw, 20px);
}

.hour-row span {
  font-weight: 800;
  color: var(--ink);
}

.hour-row strong {
  color: var(--deep-gold);
  text-align: right;
}

.hour-row.closed {
  background: rgba(239, 225, 202, .5);
}

.hour-row.closed strong {
  color: var(--muted);
}

.info {
  background:
    linear-gradient(135deg, rgba(28, 23, 18, .92), rgba(28, 23, 18, .98)),
    linear-gradient(45deg, var(--charcoal), #0f0d0b);
  color: var(--white);
}

.info-box {
  width: min(850px, 100%);
  margin: auto;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(234, 218, 183, .34);
  padding: clamp(30px, 5vw, 52px);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.info .eyebrow {
  color: var(--champagne);
}

.info-grid {
  margin: 22px 0 28px;
  display: grid;
  gap: 13px;
}

.info a {
  color: var(--champagne);
}

.info p {
  font-size: 18px;
}

.info strong {
  color: var(--champagne);
}

.hiring-contact-line a {
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 218, 183, .45);
}

.divider {
  color: var(--champagne);
  margin: 0 6px;
}

.info-hours-block {
  display: grid;
  gap: 12px;
}

.mini-hours {
  display: grid;
  gap: 8px;
  max-width: 440px;
}

.mini-hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(234, 218, 183, .18);
  padding-bottom: 6px;
}

.mini-hours div:last-child {
  border-bottom: 0;
}

.mini-hours span:first-child {
  color: var(--white);
  font-weight: 700;
}

.mini-hours span:last-child {
  color: var(--champagne);
  text-align: right;
}

footer {
  background: #0d0b0a;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  padding: 24px;
  font-family: var(--body-font);
}



.faq-section {
  background: linear-gradient(180deg, var(--white), var(--soft-cream));
}

.faq-list {
  width: min(920px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 250, 241, .86);
  border: 1px solid rgba(185, 151, 88, .34);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(28, 23, 18, .06);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(185, 151, 88, .62);
  box-shadow: 0 18px 42px rgba(28, 23, 18, .09);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--heading-font);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--deep-gold);
  border: 1px solid rgba(185, 151, 88, .45);
  background: rgba(255, 255, 255, .65);
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--ink);
}

.faq-item p {
  color: var(--muted);
  font-size: 17px;
  padding: 0 26px 24px;
  max-width: 760px;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-right {
    justify-content: flex-start;
  }

  .intro,
  .cards,
  .hiring-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }
  .brand-logo {
    width: min(100%, 520px);
    max-height: 84px;
  }

  .language-switcher {
    width: 100%;
    border-radius: 18px;
    flex-wrap: wrap;
  }

  .lang-btn {
    flex: 1;
  }

  .nav-call,
  .button {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 48px 5%;
  }

  .section {
    padding: 60px 5%;
  }

  h1 {
    font-size: clamp(44px, 16vw, 70px);
  }

  .role-item {
    padding: 18px 16px;
  }

  .hour-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hour-row strong {
    text-align: left;
  }
}


/* Cleaner luxury layout + soft transitions */
:root {
  --shadow: 0 18px 50px rgba(28, 23, 18, .10);
}

body {
  overflow-x: hidden;
}

.site-header {
  background: rgba(251, 245, 234, .88);
}

.nav {
  width: min(1120px, 92%);
  padding: 12px 0;
}

.brand-logo {
  width: clamp(260px, 35vw, 560px);
  max-height: 86px;
}

.nav-right {
  gap: 12px;
}

.language-switcher {
  background: rgba(255, 250, 241, .64);
  box-shadow: 0 8px 24px rgba(28, 23, 18, .04);
}

.lang-btn,
.nav-call,
.button {
  transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, color .24s ease, border-color .24s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--deep-gold);
}

.nav-call:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(185, 151, 88, .24);
}

.hero {
  min-height: 70vh;
  padding: 72px 7%;
  background:
    radial-gradient(circle at 15% 18%, rgba(234, 218, 183, .70), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(185, 151, 88, .18), transparent 34%),
    linear-gradient(135deg, #fffaf1 0%, #f3e4cd 56%, #efe1ca 100%);
}

.hero-card,
.description-card,
.hiring-copy,
.hours-card,
.info-box,
.card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hero-card {
  width: min(840px, 100%);
  border-radius: 30px;
  padding: clamp(34px, 5.4vw, 64px);
}

.hero-card::after {
  opacity: .58;
}

h1 {
  font-size: clamp(44px, 6.2vw, 78px);
  max-width: 720px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.hero-text,
.intro p:last-child,
.description-card p:last-child {
  font-size: 17px;
  max-width: 760px;
}

.section {
  padding: 96px 7%;
}

.about-description {
  padding-top: 76px;
}

.intro {
  width: min(1040px, 100%);
  gap: 64px;
}

.section-heading,
.cards {
  width: min(1060px, 100%);
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.card {
  min-height: 0;
  padding: 28px;
}

.card:hover,
.hour-row:hover,
.role-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(28, 23, 18, .10);
  border-color: rgba(185, 151, 88, .55);
}

.card-number {
  margin-bottom: 12px;
  font-size: 24px;
}

h3 {
  font-size: 26px;
}

.hiring-layout {
  width: min(940px, 100%);
}

.hiring-copy {
  padding: clamp(32px, 5vw, 58px);
}

.hiring h2 {
  font-size: clamp(46px, 7vw, 82px);
  margin-bottom: 18px;
}

.hiring-intro {
  font-size: clamp(17px, 1.6vw, 20px);
}

.role-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  gap: 14px;
  margin: 30px auto;
}

.role-item {
  padding: 24px 18px;
  font-size: clamp(24px, 3.2vw, 40px);
  min-height: 116px;
  flex-direction: column;
}

.role-item::before,
.role-item::after {
  font-size: 18px;
}

.preferred {
  font-size: clamp(18px, 2.2vw, 25px);
  max-width: 640px;
}

.business-hours {
  background: linear-gradient(180deg, var(--soft-cream), var(--cream));
}

.hours-card {
  width: min(920px, 100%);
  padding: clamp(32px, 5vw, 56px);
}

.hours-card h2 {
  margin-bottom: 10px;
}

.hours-note {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.hours-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hour-row {
  padding: 17px 18px;
  background: rgba(255, 255, 255, .68);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hour-row.closed {
  background: rgba(239, 225, 202, .62);
}

.info-box {
  width: min(760px, 100%);
}

.info-grid {
  gap: 16px;
}

.info-grid p {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(234, 218, 183, .16);
}

.info-grid p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-grid a {
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 218, 183, .38);
}

.info-hours-block,
.mini-hours {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .cards,
  .hours-list,
  .role-list {
    grid-template-columns: 1fr;
  }

  .role-item {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: min(100%, 420px);
    max-height: 70px;
  }

  .hero-actions,
  .info-actions,
  .hiring-actions {
    gap: 10px;
  }

  .section {
    padding: 64px 5%;
  }
}


/* Open hours sign style */
.business-hours {
  background:
    radial-gradient(circle at 18% 18%, rgba(234, 218, 183, .55), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #fbf5ea 100%);
}

.open-hours-board {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) clamp(28px, 5vw, 48px);
  text-align: center;
  background: rgba(255, 250, 241, .62);
  border: 1px solid rgba(185, 151, 88, .42);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(28, 23, 18, .08);
  backdrop-filter: blur(8px);
}

.open-hours-board h2 {
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(46px, 6vw, 68px);
  line-height: .92;
}

.hours-ornament {
  width: min(320px, 82%);
  height: 32px;
  margin: 18px auto 20px;
  position: relative;
}

.hours-ornament::before,
.hours-ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 2px;
  background: var(--ink);
  opacity: .9;
}

.hours-ornament::before { left: 0; }
.hours-ornament::after { right: 0; }

.hours-ornament {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 5px, var(--ink) 5px 7px, transparent 7px),
    radial-gradient(ellipse at 42% 50%, transparent 0 11px, var(--ink) 11px 13px, transparent 13px),
    radial-gradient(ellipse at 58% 50%, transparent 0 11px, var(--ink) 11px 13px, transparent 13px);
}

.hours-ornament.bottom {
  margin: 20px auto 0;
  transform: rotate(180deg);
}

.open-hours-board .hours-list {
  width: min(410px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.open-hours-board .hour-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 3px 0;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.25;
  color: var(--ink);
  transition: transform .25s ease, color .25s ease;
}

.open-hours-board .hour-row:hover {
  transform: translateX(4px);
  box-shadow: none;
  border-color: transparent;
}

.open-hours-board .hour-row span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
}

.open-hours-board .hour-row strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-align: right;
  color: var(--ink);
  white-space: nowrap;
}

.open-hours-board .hour-row.closed strong {
  color: var(--ink);
}

@media (max-width: 560px) {
  .open-hours-board {
    padding: 32px 22px;
  }

  .open-hours-board h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .open-hours-board .hours-list {
    width: 100%;
  }

  .open-hours-board .hour-row {
    gap: 18px;
    font-size: 16px;
  }
}


/* Refined description, location note, and premium hours section */
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: -4px 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(185, 151, 88, .36);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.location-pill::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
}

.refined-description {
  width: min(1080px, 100%);
  position: relative;
  overflow: hidden;
}

.refined-description::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(185, 151, 88, .22);
  background: rgba(234, 218, 183, .18);
}

.description-body {
  position: relative;
  z-index: 1;
  max-width: 920px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.8;
}

.description-highlights {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.description-highlights span {
  border: 1px solid rgba(185, 151, 88, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  color: var(--deep-gold);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.premium-hours-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(185, 151, 88, .16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(234, 218, 183, .7), transparent 26%),
    linear-gradient(180deg, #fffaf1 0%, #f5ead8 100%);
}

.premium-hours-board {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(38px, 6vw, 72px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(255, 250, 241, .94)),
    radial-gradient(circle at 20% 20%, rgba(234, 218, 183, .36), transparent 34%);
  border: 1px solid rgba(185, 151, 88, .46);
  box-shadow: 0 28px 90px rgba(28, 23, 18, .12);
  position: relative;
  overflow: hidden;
}

.premium-hours-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(185, 151, 88, .24);
  border-radius: 28px;
  pointer-events: none;
}

.premium-hours-board::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(185, 151, 88, .12);
  border: 1px solid rgba(185, 151, 88, .2);
}

.hours-header,
.premium-hours-board .hours-list,
.hours-divider {
  position: relative;
  z-index: 1;
}

.hours-header {
  text-align: left;
}

.premium-hours-board h2 {
  text-align: left;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .88;
}

.hours-subtitle {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.hours-divider {
  display: none;
}

.premium-hours-board .hours-list {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 0;
}

.premium-hours-board .hour-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(185, 151, 88, .22);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.2;
  transition: transform .25s ease, border-color .25s ease;
}

.premium-hours-board .hour-row:last-child {
  border-bottom: 0;
}

.premium-hours-board .hour-row:hover {
  transform: translateX(5px);
  border-color: rgba(185, 151, 88, .5);
}

.premium-hours-board .hour-row span {
  font-family: var(--body-font);
  font-weight: 800;
  text-align: left;
  color: var(--ink);
}

.premium-hours-board .hour-row strong {
  font-family: var(--body-font);
  font-weight: 800;
  text-align: right;
  color: var(--deep-gold);
  white-space: nowrap;
}

.premium-hours-board .hour-row.closed strong {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  border: 1px solid rgba(185, 151, 88, .36);
  border-radius: 999px;
  background: rgba(239, 225, 202, .56);
  padding: 5px 12px;
  color: var(--muted);
}

.info-grid p:first-child span {
  color: var(--champagne);
  font-weight: 800;
}

@media (max-width: 760px) {
  .premium-hours-board {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .premium-hours-board h2,
  .hours-header {
    text-align: center;
  }

  .hours-divider {
    display: block;
    height: 28px;
    margin: -8px auto 0;
    width: min(280px, 80%);
    background:
      linear-gradient(var(--gold), var(--gold)) left 50% / 42% 1px no-repeat,
      linear-gradient(var(--gold), var(--gold)) right 50% / 42% 1px no-repeat;
  }

  .hours-divider span {
    display: block;
    width: 9px;
    height: 9px;
    margin: 9px auto 0;
    transform: rotate(45deg);
    background: var(--gold);
  }

  .premium-hours-board .hour-row {
    gap: 14px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .premium-hours-board .hour-row {
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
  }

  .premium-hours-board .hour-row span,
  .premium-hours-board .hour-row strong {
    text-align: center;
    justify-self: center;
  }
}


/* Fixed top-down hours board: cleaner, no clipping, still decorative */
.premium-hours-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(185, 151, 88, .16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(234, 218, 183, .64), transparent 28%),
    linear-gradient(180deg, #fffaf1 0%, #f5ead8 100%);
}

.premium-hours-board {
  width: min(720px, 100%);
  display: block !important;
  padding: clamp(34px, 6vw, 62px) clamp(26px, 6vw, 58px) !important;
  text-align: center;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,241,.92)),
    radial-gradient(circle at 50% 0%, rgba(185,151,88,.16), transparent 38%);
}

.premium-hours-board::before {
  inset: 16px;
  border-radius: 25px;
}

.premium-hours-board::after {
  display: none;
}

.hours-header {
  text-align: center !important;
  margin-bottom: 18px;
}

.premium-hours-board h2 {
  text-align: center !important;
  margin: 0;
  font-size: clamp(44px, 9vw, 76px) !important;
  line-height: 1 !important;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: normal;
}

.hours-subtitle {
  margin: 12px auto 0;
  font-size: clamp(15px, 2vw, 18px);
}

.hours-divider {
  display: block !important;
  position: relative;
  z-index: 1;
  width: min(360px, 82%);
  height: 30px;
  margin: 12px auto 20px;
  background:
    linear-gradient(var(--gold), var(--gold)) left 50% / 39% 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50% / 39% 1px no-repeat;
}

.hours-divider::before,
.hours-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-top: 0;
  border-left: 0;
  opacity: .85;
}

.hours-divider::before {
  left: 42%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 0 0 12px 0;
}

.hours-divider::after {
  right: 42%;
  transform: translate(50%, -50%) rotate(135deg);
  border-radius: 0 0 12px 0;
}

.hours-divider span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255,250,241,.96);
}

.hours-divider.bottom {
  margin: 20px auto 0;
}

.premium-hours-board .hours-list {
  width: min(480px, 100%);
  margin: 0 auto !important;
  display: grid !important;
  gap: 0 !important;
}

.premium-hours-board .hour-row {
  display: grid !important;
  grid-template-columns: minmax(120px, 1fr) minmax(170px, auto) !important;
  align-items: center;
  gap: clamp(18px, 5vw, 54px) !important;
  min-height: 42px;
  padding: 8px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 1.25 !important;
  transform: none !important;
}

.premium-hours-board .hour-row:hover {
  transform: none !important;
}

.premium-hours-board .hour-row span,
.premium-hours-board .hour-row strong {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(16px, 2.1vw, 20px) !important;
  line-height: 1.25 !important;
  white-space: nowrap;
}

.premium-hours-board .hour-row span {
  text-align: left !important;
  font-weight: 600 !important;
  color: var(--ink);
}

.premium-hours-board .hour-row strong {
  text-align: right !important;
  justify-self: end;
  font-weight: 500 !important;
  color: var(--ink) !important;
}

.premium-hours-board .hour-row.closed strong {
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  color: var(--ink) !important;
  justify-self: end !important;
}

@media (max-width: 520px) {
  .premium-hours-board {
    padding: 34px 22px !important;
  }

  .premium-hours-board .hours-list {
    width: 100%;
  }

  .premium-hours-board .hour-row {
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    min-height: 38px;
  }

  .premium-hours-board .hour-row span,
  .premium-hours-board .hour-row strong {
    font-size: 15px !important;
    text-align: initial;
  }
}

/* Final hours fix: simple top-down list, no clipping */
.premium-hours-board {
  width: min(680px, 100%) !important;
}

.premium-hours-board .hours-list {
  width: min(420px, 100%) !important;
  margin: 6px auto 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.premium-hours-board .hour-row {
  display: block !important;
  min-height: auto !important;
  padding: 6px 0 !important;
  text-align: center !important;
  line-height: 1.35 !important;
  white-space: normal !important;
}

.premium-hours-board .hour-row span,
.premium-hours-board .hour-row strong,
.premium-hours-board .hour-row.closed strong {
  display: inline !important;
  font-size: clamp(17px, 2.2vw, 21px) !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  text-align: center !important;
  justify-self: auto !important;
  color: var(--ink) !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.premium-hours-board .hour-row span {
  font-weight: 700 !important;
}

.premium-hours-board .hour-row span::after {
  content: ":";
  margin-right: 8px;
}

.premium-hours-board .hour-row strong {
  font-weight: 500 !important;
}

@media (max-width: 520px) {
  .premium-hours-board .hours-list {
    width: 100% !important;
    gap: 8px !important;
  }

  .premium-hours-board .hour-row span,
  .premium-hours-board .hour-row strong,
  .premium-hours-board .hour-row.closed strong {
    font-size: 16px !important;
  }
}


/* Gallery section */
.work-gallery {
  background:
    radial-gradient(circle at 8% 12%, rgba(234, 218, 183, .55), transparent 26%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.centered-heading {
  text-align: center;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.before-after-card {
  width: min(1180px, 100%);
  margin: 36px auto 30px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .86);
  box-shadow: 0 18px 54px rgba(28, 23, 18, .09);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.before-after-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.comparison-grid figure,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--soft-cream);
  border: 1px solid rgba(185, 151, 88, .24);
  box-shadow: 0 14px 38px rgba(28, 23, 18, .08);
}

.comparison-grid img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}

.comparison-grid figure:hover img,
.gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.comparison-grid figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(28, 23, 18, .78);
  color: var(--white);
  font: 800 12px var(--body-font);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  min-height: 100%;
}

.gallery-caption {
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, rgba(255,250,241,.98), rgba(251,245,234,.94));
}

.gallery-caption h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 8px;
}

.gallery-caption p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .before-after-card,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .before-after-copy {
    grid-column: 1 / -1;
    text-align: center;
  }
}

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

  .before-after-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .gallery-caption {
    padding: 18px;
  }
}


/* Review carousel */
.review-showcase {
  background:
    radial-gradient(circle at 15% 12%, rgba(185, 151, 88, .18), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--white));
  overflow: hidden;
}

.review-shell {
  width: min(1120px, 100%);
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.review-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 32px min(12vw, 120px);
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(82vw, 460px);
  scroll-snap-align: center;
  border: 1px solid rgba(185, 151, 88, .32);
  border-radius: 28px;
  background: rgba(255, 250, 241, .92);
  box-shadow: 0 14px 40px rgba(28, 23, 18, .08);
  padding: clamp(24px, 3vw, 34px);
  transform: scale(.92);
  opacity: .62;
  transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease, border-color .35s ease;
  min-height: 390px;
  max-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-card.is-active {
  transform: scale(1.05);
  opacity: 1;
  border-color: rgba(185, 151, 88, .66);
  box-shadow: 0 24px 68px rgba(28, 23, 18, .14);
}

.review-stars {
  color: var(--gold);
  letter-spacing: .12em;
  font-size: 20px;
  margin-bottom: 18px;
}

.review-text {
  position: relative;
  max-height: 156px;
  overflow: hidden;
  transition: max-height .35s ease;
}

.review-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0), rgba(255, 250, 241, .96));
}

.review-card.is-expanded {
  max-height: none;
}

.review-card.is-expanded .review-text {
  max-height: 980px;
  overflow: visible;
}

.review-card.is-expanded .review-text::after {
  display: none;
}

.review-text p {
  font-family: var(--heading-font);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.43;
  color: var(--ink);
  margin-bottom: 15px;
}

.review-expand {
  align-self: flex-start;
  border: 1px solid rgba(185, 151, 88, .45);
  background: rgba(255, 255, 255, .58);
  color: var(--deep-gold);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 16px 0 16px;
  font: 800 11px var(--body-font);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.review-expand:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.review-card span,
.review-source {
  color: var(--deep-gold);
  font: 800 12px var(--body-font);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: auto;
}

.review-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .92);
  color: var(--deep-gold);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(28, 23, 18, .08);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 4px auto 0;
}

.review-dot {
  width: 16px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(185, 151, 88, .35);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.review-dot.active {
  width: 42px;
  background: var(--gold);
  transform: scaleY(1.15);
}


.review-card.is-hidden {
  display: none;
}

.review-load-wrap {
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
}

.review-load-more[hidden] {
  display: none;
}

.review-load-more {
  min-width: 190px;
}

@media (max-width: 720px) {
  .review-shell {
    grid-template-columns: 1fr;
  }

  .review-arrow {
    display: none;
  }

  .review-track {
    padding: 28px 11vw;
  }

  .review-card {
    flex-basis: 82vw;
  }
}


.footer-socials {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-socials a {
  color: var(--champagne);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-socials a:hover {
  color: var(--gold);
}


/* Detailed services menu */
.service-menu {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  border: 1px solid rgba(185, 151, 88, .34);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .95), rgba(251, 245, 234, .88)),
    radial-gradient(circle at 10% 10%, rgba(185, 151, 88, .14), transparent 34%);
  box-shadow: 0 18px 46px rgba(28, 23, 18, .07);
  padding: clamp(28px, 4vw, 46px);
}

.service-menu-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.service-menu-head h3 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 10px;
}

.service-menu-head p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-category {
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(185, 151, 88, .25);
  border-radius: 22px;
  padding: 22px;
  min-height: 100%;
}

.service-category h4 {
  font-family: var(--body-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--deep-gold);
  margin-bottom: 16px;
}

.service-category ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.service-category li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  padding-left: 18px;
  position: relative;
}

.service-category li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 151, 88, .10);
}

@media (max-width: 980px) {
  .service-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .service-category {
    padding: 20px;
  }
}


/* Review read-more fix */
.review-card.is-expanded .review-text {
  max-height: none;
}



.review-card,
.review-item,
.testimonial-card,
[data-review-card] {
  transition: transform 0.32s ease, opacity 0.32s ease, box-shadow 0.32s ease;
}

.review-card.active,
.review-card.is-active,
.review-item.active,
.review-item.is-active,
.testimonial-card.active,
.testimonial-card.is-active,
[data-review-card].active,
[data-review-card].is-active {
  transform: scale(1.035);
  opacity: 1;
  z-index: 2;
}



.service-note {
  margin: 24px auto 0;
  padding: 18px 22px;
  max-width: 980px;
  border: 1px solid rgba(190, 154, 90, 0.28);
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.72);
  color: var(--text, #2b2724);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}



.gallery-note {
  margin: 22px auto 0;
  max-width: 760px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.78);
  border: 1px solid rgba(190, 154, 90, 0.24);
  color: var(--muted, #6d6258);
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
}


.stack-gallery-card {
  position: relative;
  cursor: pointer;
  isolation: isolate;
}

.stack-gallery-card:focus-visible {
  outline: 2px solid #b78935;
  outline-offset: 4px;
}

.stack-gallery-card .stack-visual,
.stack-gallery-card .stack-visual::before,
.stack-gallery-card .stack-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(183, 137, 53, 0.18);
  box-shadow: 0 20px 40px rgba(53, 37, 19, 0.08);
  z-index: -1;
}
.stack-gallery-card .stack-visual { transform: translate(18px, -14px) rotate(2deg); }
.stack-gallery-card .stack-visual::before { transform: translate(10px, -8px) rotate(1deg); }
.stack-gallery-card .stack-visual::after { transform: translate(22px, -16px) rotate(4deg); }
.stack-gallery-card:hover { transform: translateY(-4px); }
.stack-gallery-card { transition: transform .28s ease, box-shadow .28s ease; }

.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.82);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 32px;
  z-index: 9999;
}
.lightbox-content {
  max-width: min(92vw, 980px);
  margin: 0 auto;
  background: #f8f3eb;
  border-radius: 26px;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.lightbox-image {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
  background: #efe6d8;
}
.lightbox-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 8px 4px;
}
.lightbox-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.lightbox-count {
  margin: 0;
  color: #76685b;
}
.lightbox-arrow,
.lightbox-close {
  border: none;
  background: rgba(255,255,255,0.16);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}
@media (max-width: 860px) {
  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-content { width: 100%; }
  .lightbox-meta { flex-direction: column; align-items: flex-start; }
}


/* Stronger stacked-card indicator for galleries with more photos */
.stack-gallery-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  margin-right: 18px;
}
.stack-gallery-card .stack-visual,
.stack-gallery-card .stack-visual::before,
.stack-gallery-card .stack-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
}
.stack-gallery-card .stack-visual {
  inset: auto 0 0 0;
  top: 0;
  background: rgba(255, 250, 241, 0.95);
  border: 1px solid rgba(183, 137, 53, 0.2);
  box-shadow: 0 16px 28px rgba(53, 37, 19, 0.08);
  transform: translate(16px, -12px) rotate(2.5deg);
  z-index: -2;
}
.stack-gallery-card .stack-visual::before {
  background: rgba(250, 244, 232, 0.98);
  border: 1px solid rgba(183, 137, 53, 0.24);
  box-shadow: 0 14px 24px rgba(53, 37, 19, 0.07);
  transform: translate(10px, -8px) rotate(1.25deg);
  z-index: -1;
}
.stack-gallery-card .stack-visual::after {
  display: none;
}
.stack-gallery-card::after {
  content: "View more";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20,16,12,0.72);
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}
.stack-gallery-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 720px) {
  .stack-gallery-card { margin-right: 10px; }
  .stack-gallery-card::after { font-size: 11px; padding: 5px 8px; }
}



/* Fix stacked photo cards so the extra cards actually show */
.stack-gallery-card {
  overflow: visible !important;
  padding-top: 18px;
  padding-right: 18px;
}

.stack-gallery-card > img {
  position: relative;
  z-index: 1;
  border-radius: 24px 24px 0 0;
}

.stack-gallery-card .gallery-caption {
  position: relative;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}

.stack-gallery-card .stack-visual {
  position: absolute;
  inset: 0;
  top: 18px;
  right: 18px;
  left: 0;
  bottom: 0;
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.98);
  border: 1px solid rgba(183, 137, 53, 0.20);
  box-shadow: 0 14px 26px rgba(53, 37, 19, 0.08);
  transform: translate(16px, -12px) rotate(2.4deg);
  z-index: 0;
  pointer-events: none;
}

.stack-gallery-card .stack-visual::before,
.stack-gallery-card .stack-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(250, 244, 232, 0.98);
  border: 1px solid rgba(183, 137, 53, 0.24);
  box-shadow: 0 12px 22px rgba(53, 37, 19, 0.07);
  pointer-events: none;
}

.stack-gallery-card .stack-visual::before {
  transform: translate(10px, -8px) rotate(1.2deg);
}

.stack-gallery-card .stack-visual::after {
  display: none;
}

.gallery-grid {
  overflow: visible;
}

@media (max-width: 720px) {
  .stack-gallery-card {
    padding-top: 14px;
    padding-right: 12px;
  }

  .stack-gallery-card .stack-visual {
    top: 14px;
    right: 12px;
    transform: translate(12px, -9px) rotate(2deg);
  }

  .stack-gallery-card .stack-visual::before {
    transform: translate(8px, -6px) rotate(1deg);
  }
}




/* Final stacked-card styling: neat, visible, 2 cards behind */
.stack-gallery-card {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-top: 26px !important;
  padding-right: 26px !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
}

.stack-gallery-card > img,
.stack-gallery-card > .gallery-caption {
  position: relative;
  z-index: 3;
}

.stack-gallery-card > img {
  border-radius: 24px 24px 0 0;
  box-shadow: 0 18px 34px rgba(42, 30, 17, 0.10);
}

.stack-gallery-card > .gallery-caption {
  border-radius: 0 0 24px 24px;
  box-shadow: 0 18px 34px rgba(42, 30, 17, 0.10);
}

.stack-gallery-card .stack-visual {
  position: absolute !important;
  top: 14px !important;
  left: 6px !important;
  right: 12px !important;
  bottom: 14px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(244, 233, 214, 1), rgba(237, 224, 201, 1)) !important;
  border: 1.5px solid rgba(183, 137, 53, 0.34) !important;
  box-shadow: 0 16px 28px rgba(53, 37, 19, 0.09) !important;
  transform: translate(14px, -12px) rotate(2.4deg) !important;
  z-index: 1 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.stack-gallery-card .stack-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(236, 223, 200, 1), rgba(228, 213, 188, 1)) !important;
  border: 1.5px solid rgba(183, 137, 53, 0.42) !important;
  box-shadow: 0 14px 24px rgba(53, 37, 19, 0.08) !important;
  transform: translate(12px, -10px) rotate(1.15deg) !important;
  opacity: 1 !important;
}

.stack-gallery-card .stack-visual::after {
  display: none !important;
}

.stack-gallery-card::after {
  content: "View more";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.gallery-grid,
.gallery-card {
  overflow: visible !important;
}

@media (max-width: 720px) {
  .stack-gallery-card {
    padding-top: 20px !important;
    padding-right: 18px !important;
  }

  .stack-gallery-card .stack-visual {
    top: 11px !important;
    left: 4px !important;
    right: 8px !important;
    bottom: 10px !important;
    transform: translate(10px, -8px) rotate(2deg) !important;
  }

  .stack-gallery-card .stack-visual::before {
    transform: translate(8px, -6px) rotate(1deg) !important;
  }
}




/* Final top-only photo stack using real photos */
.stack-gallery-card {
  padding-top: 42px !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
  position: relative !important;
  isolation: isolate !important;
}

.stack-gallery-card .stack-visual {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 76px !important;
  bottom: auto !important;
  z-index: 1 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.stack-gallery-card .stack-visual::before,
.stack-gallery-card .stack-visual::after {
  display: none !important;
}

.stack-gallery-card .stack-layer {
  position: absolute;
  left: 50%;
  width: calc(100% - 34px);
  height: 170px;
  border-radius: 24px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 1.5px solid rgba(183, 137, 53, 0.24);
  box-shadow: 0 14px 26px rgba(53, 37, 19, 0.10);
}

.stack-gallery-card .stack-layer-1 {
  top: 14px;
  transform: translateX(-50%) rotate(1deg);
  background-image: var(--stack-photo-1);
  z-index: 1;
}

.stack-gallery-card .stack-layer-2 {
  top: 0;
  transform: translateX(-50%) rotate(2deg);
  background-image: var(--stack-photo-2);
  z-index: 0;
  opacity: 0.98;
}

.stack-gallery-card > img,
.stack-gallery-card > .gallery-caption {
  position: relative;
  z-index: 3;
}

.stack-gallery-card > img {
  border-radius: 24px 24px 0 0;
}

.stack-gallery-card > .gallery-caption {
  border-radius: 0 0 24px 24px;
}

.stack-gallery-card::after {
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
}

@media (max-width: 720px) {
  .stack-gallery-card {
    padding-top: 32px !important;
  }
  .stack-gallery-card .stack-visual {
    height: 58px !important;
  }
  .stack-gallery-card .stack-layer {
    width: calc(100% - 24px);
    height: 136px;
  }
  .stack-gallery-card .stack-layer-1 {
    top: 10px;
  }
  .stack-gallery-card .stack-layer-2 {
    top: 0;
  }
}
