:root {
  --bg-dark: #0f3b3f;
  --bg-light: #1f6f78;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --text-light: #f2f2f2;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.25);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-light);
  background:
    linear-gradient(rgba(10, 30, 32, 0.75), rgba(10, 30, 32, 0.75)),
    image-set(
      url("../images/opt/background.avif") type("image/avif"),
      url("../images/opt/background.webp") type("image/webp"),
      url("../images/opt/background.jpg") type("image/jpeg")
    ) center / cover no-repeat fixed;
  line-height: 1.6;
}

/* ==== A11y ==== */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
picture:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

/* ==== Header / hero ==== */
header {
  text-align: center;
  padding: 3rem 1rem 1.25rem;
  border-bottom: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.imgLogo {
  display: block;
  /* max-width: 340px; */
  /* width: 45%; */
  min-width: 380px;
  margin-top: -7.5rem;
  height: auto;
}

header h1.under-image,
header p.usp.under-image {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1.1;
  margin-top: -9rem;
  position: relative;
  z-index: 2;
}

header .usp {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--gold);
  opacity: 0.8;
  text-align: center;
  max-width: 90%;
}

/* ==== Nav ==== */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  position: relative;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.25rem 0.1rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

nav a:hover::after,
nav a:focus-visible::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ==== Sections ==== */
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ==== Cards ==== */
.card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.30));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.card-interactive {
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-interactive:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ==== Lists ==== */
ul {
  list-style: none;
}
li {
  margin-bottom: 0.6rem;
}

ul.subsection {
  list-style: circle;
}
ul.subsection li {
  margin-left: 1.5rem;
}

/* ==== Pricing ==== */
.price {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
  padding: 0.5rem 0.6rem;
  border-radius: 4px;
}
.price strong {
  color: var(--gold);
  font-size: 1.05rem;
  white-space: nowrap;
}
.price:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.02);
}

.note {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.note-small {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ==== Contact grid ==== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.contact-grid > .card {
  height: 100%;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-card .contact-block {
  margin-bottom: 0;
}
.contact-card .contact-meta {
  margin-bottom: 0;
}
.contact-map {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 280px;
}
.contact-map .map-iframe {
  flex: 1 1 auto;
  min-height: 260px;
  max-height: 480px;
}
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-end;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.map-open-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==== Contact CTAs ==== */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-height: 44px;
}
.contact-cta:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.contact-cta--primary {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
  font-weight: 700;
}
.contact-cta--primary:hover {
  background: #e6c14a;
  color: #1a1a1a;
}
.contact-cta .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-cta__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
}
.contact-cta__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}
.contact-cta--primary .contact-cta__value {
  font-size: 1.25rem;
}

.contact-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.contact-meta .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 3px;
}

/* ==== Footer ==== */
footer {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-top: 2px solid var(--gold);
  font-size: 0.9rem;
}

.footer-grid {
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  text-align: left;
  padding: 0 1.5rem;
}
.footer-grid > div {
  padding: 0 1rem;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-grid > div:last-child {
  border-right: none;
}
.footer-grid h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-grid ul li {
  margin-bottom: 0;
}
.footer-grid a {
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.4;
}
.footer-grid a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1rem;
}

/* ==== QR ==== */
img.qr {
  max-width: 180px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
}

/* ==== Details / accordions ==== */
detail.style1 {
  list-style: none;
}

summary {
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  min-height: 44px;
}
summary:hover {
  background: var(--gold-soft);
}
summary::-webkit-details-marker {
  display: none;
}

summary .serviceTitle,
summary > h3 {
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  flex: 1;
  margin: 0;
}

.style1 summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-right: 4px;
  margin-top: -4px;
}

details[open].style1 > summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

details[open].style1 > :not(summary) {
  border-left: 3px solid var(--gold);
  padding-left: 0.9rem;
  margin-left: 0.6rem;
  margin-top: 0.5rem;
}
/* Reset margin-top for lists/paragraphs that come consecutively inside an open details */
details[open].style1 > p + p,
details[open].style1 > ul + p,
details[open].style1 > p + ul {
  margin-top: 0.4rem;
}

p.marginTop {
  margin-top: 6px;
}

/* Hover for #sluzby items */
#sluzby ul li {
  padding: 0.2rem 0.3rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
#sluzby ul li:hover {
  transform: translateX(4px);
}
#sluzby ul li:has(details[open]):hover,
#sluzby ul li:has(details[open]) {
  transform: none;
}

/* ==== Logo container leftovers (kept for safety) ==== */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* ==== Profile / about ==== */
.row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.column.left {
  flex: 1 1 70%;
}
.column.right {
  flex: 0 0 auto;
}
.profile-img {
  border-radius: 15%;
  width: 125px;
  height: 125px;
}

/* ==== CTA buttons ==== */
.cta-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  min-height: 44px;
  line-height: 1.5;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-cta:hover {
  background: #e6c14a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}
.btn-cta-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.btn-cta-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-cta-secondary:hover {
  background: var(--gold-soft);
  color: var(--gold);
}

/* ==== Misc helpers ==== */
.card-center { text-align: center; }
.link-gold {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 3px;
}
.link-gold:hover {
  text-decoration-color: var(--gold);
}
.map-iframe {
  border: none;
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  border-radius: var(--radius-sm);
}
.underline {
  border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
  padding: 0.4rem 0;
  margin-bottom: 1rem;
}

/* ==== Voucher visual ==== */
.voucher-card {
  position: relative;
  margin: 1.5rem auto;
  max-width: 420px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15), transparent 50%),
    linear-gradient(135deg, #143e42 0%, #0a2a2c 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(212, 175, 55, 0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
}
.voucher-card::before,
.voucher-card::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.voucher-card::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 8px;
}
.voucher-card::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 8px;
}
.voucher-card__brand {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.voucher-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0.4rem 0;
}
.voucher-card__sub {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* ==== Gallery ==== */
.grid-gallery {
  --size: 100px;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(6, var(--size));
  grid-auto-rows: var(--size);
  gap: 5px;
  place-items: start center;
  margin-bottom: var(--size);
}
.grid-gallery > figure {
  grid-column: auto / span 2;
  width: calc(var(--size) * 2);
  height: calc(var(--size) * 2);
  display: block;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.grid-gallery > figure:nth-child(5n - 1) {
  grid-column: 2 / span 2;
}
.grid-gallery picture {
  display: block;
  width: 100%;
  height: 100%;
}
.grid-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  clip-path: path(
    "M90,10 C100,0 100,0 110,10 190,90 190,90 190,90 200,100 200,100 190,110 190,110 110,190 110,190 100,200 100,200 90,190 90,190 10,110 10,110 0,100 0,100 10,90Z"
  );
  transition: clip-path var(--transition), filter 0.5s, border-radius var(--transition);
  cursor: pointer;
  display: block;
}
.grid-gallery:has(img:hover) img:not(:hover) {
  filter: brightness(0.5) contrast(0.5);
}
.grid-gallery img:hover {
  clip-path: path(
    "M0,0 C0,0 200,0 200,0 200,0 200,100 200,100 200,100 200,200 200,200 200,200 100,200 100,200 100,200 100,200 0,200 0,200 0,100 0,100 0,100 0,100 0,100Z"
  );
  border-radius: var(--radius-sm);
  transition: clip-path var(--transition), filter var(--transition), border-radius var(--transition);
  z-index: 1;
}
.grid-gallery a:focus {
  outline: 1px dashed black;
  outline-offset: -5px;
}
.grid-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.7rem 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1.3;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.grid-gallery figure:hover figcaption {
  opacity: 1;
}

/* ==== Lightbox ==== */
.lightbox {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox > picture {
  max-width: 90%;
  max-height: 80%;
  display: flex;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  color: white;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background var(--transition);
}
.nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.prev { left: 16px; }
.next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 60px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

.dots {
  position: absolute;
  bottom: 25px;
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: white;
  transform: scale(1.2);
}

/* ==== Scroll-to-top FAB ==== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 50;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  header {
    padding: 2.5rem 1rem 3rem;
  }
  header h1 {
    font-size: 2.2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  nav {
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-grid > div {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
  }
  .footer-grid > div:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.9rem;
    letter-spacing: 1px;
    margin-top: -4rem;
  }
  header .usp {
    font-size: 0.82rem;
    letter-spacing: 0.8px;
  }
  .grid-gallery {
    --size: 80px;
    grid-template-columns: repeat(4, var(--size));
  }
  .grid-gallery > figure:nth-child(5n - 1) {
    grid-column: auto / span 2;
  }
  .price {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .price span {
    word-break: break-word;
  }
  .map-iframe {
    height: auto;
    min-height: 240px;
  }
  .row {
    flex-direction: column;
  }
  .column.left,
  .column.right {
    width: 100%;
  }
  .cta-row {
    flex-direction: column;
  }
  .btn-cta {
    text-align: center;
  }
  .lightbox-counter {
    bottom: 55px;
  }
  .voucher-card {
    aspect-ratio: auto;
    min-height: 200px;
  }
}

/* ==== Reduced motion ==== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Legal documents */
.legal-doc {
  line-height: 1.8;
}
.legal-doc h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  text-align: left;
}
.legal-doc h2:first-child {
  margin-top: 0;
}
.legal-doc h3 {
  font-size: 1.05rem;
  color: var(--gold);
  margin: 1.4rem 0 0.4rem;
}
.legal-doc p {
  margin-bottom: 1rem;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  padding-left: 0.5rem;
}
.legal-doc ul li,
.legal-doc ol li {
  margin-bottom: 0.4rem;
  list-style: disc;
}
.legal-doc ol li {
  list-style: decimal;
}
.legal-doc dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1rem;
  margin: 1rem 0;
}
.legal-doc dt {
  font-weight: 600;
  color: var(--gold);
}
.legal-doc dd {
  margin: 0;
}

.breadcrumb {
  max-width: 1000px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
}
.breadcrumb a {
  text-decoration: none;
  font-size: 0.95rem;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .legal-doc dl {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .legal-doc dt {
    margin-top: 0.6rem;
  }
}

.footer-bottom .footer-sep {
  color: var(--gold);
  margin: 0 0.35rem;
  opacity: 0.7;
}

/* ==== Opening hours card ==== */
.hours-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hours-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.hours-header .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0.15rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hours-title {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-light);
  opacity: 0.9;
}
.hours-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: background 0.3s, box-shadow 0.3s;
}
.hours-status.is-open .hours-status__dot {
  background: #5fd17a;
  box-shadow: 0 0 0 4px rgba(95, 209, 122, 0.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.hours-status.is-closed .hours-status__dot {
  background: #d96b6b;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(95, 209, 122, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(95, 209, 122, 0.0); }
}
.hours-status.is-open .hours-status__text { color: #5fd17a; }
.hours-status.is-closed .hours-status__text { color: #d96b6b; }

.hours-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row dt {
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hours-row dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  color: var(--text-light);
  opacity: 0.9;
}
.hours-row--soft dd {
  opacity: 0.7;
  font-style: italic;
}
.hours-row.is-today {
  background: var(--gold-soft);
  border-bottom-color: transparent;
  position: relative;
}
.hours-row.is-today dt,
.hours-row.is-today dd {
  color: var(--gold);
  opacity: 1;
}
.hours-row.is-today dt::before {
  content: "▸ ";
  color: var(--gold);
  margin-right: 0.2rem;
}

.hours-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0 0.2rem;
  padding: 0 0.6rem;
}
.hours-divider::before,
.hours-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
}
.hours-divider span {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.hours-cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: stretch;
  text-align: center;
}
.hours-note {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}
.hours-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.hours-cta .btn-cta .icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==== About section ==== */
.about-card {
  padding: 2.5rem 2.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-photo {
  position: relative;
}
.about-photo .profile-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15);
  display: block;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.about-photo picture {
  position: relative;
  z-index: 1;
  display: block;
}

.about-text {
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.75;
}
.about-text p {
  margin: 0 0 1.05rem;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-lead {
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-bottom: 1.4rem !important;
}
.about-lead + p {
  position: relative;
  padding-top: 0.2rem;
}

@media (max-width: 768px) {
  .about-card {
    padding: 1.6rem 1.4rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    justify-items: center;
    text-align: left;
  }
  .about-photo {
    max-width: 220px;
    width: 100%;
  }
  .about-photo::before {
    inset: 8px -8px -8px 8px;
  }
  .about-text {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .about-lead {
    font-size: 1.05rem;
  }
}
