:root {
  --bg: #0f1b27;
  --bg-soft: #edf3f8;
  --paper: #f7fbff;
  --ink: #172534;
  --muted: #596d80;
  --line: #d2dfeb;
  --brand: #1f5f8b;
  --brand-2: #f08a34;
  --gold: #f3c56f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 13, 10, 0.16);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(17, 10, 9, 0.94) 0%, rgba(26, 16, 14, 0.9) 36%, rgba(240, 232, 221, 0.92) 66%, rgba(247, 242, 234, 0.98) 100%),
    radial-gradient(980px 520px at 88% 10%, rgba(196, 82, 47, 0.3), transparent 72%),
    radial-gradient(880px 500px at 8% 92%, rgba(140, 31, 37, 0.24), transparent 72%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px),
    url("https://images.pexels.com/photos/5691533/pexels-photo-5691533.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover fixed no-repeat,
    #110a09;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(#000 0.33px, transparent 0.33px);
  background-size: 4px 4px;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(540px 260px at 90% 16%, rgba(232, 177, 101, 0.2), transparent 70%),
    radial-gradient(480px 240px at 10% 84%, rgba(140, 31, 37, 0.2), transparent 70%);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  background: rgba(17, 10, 9, 0.76);
}
.topbar-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.nav {
  justify-self: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.nav a {
  color: #e9d9cc;
  text-decoration: none;
  font-weight: 650;
  font-size: .95rem;
}
.nav a:hover { color: #fff9f3; }
.switcher-a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  justify-self: end;
}
.switcher-a a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: .82rem;
  color: #f5ecdf;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}
.switcher-a a[aria-current="page"] {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent;
}

.hero {
  position: relative;
  padding: 5rem 0 3.2rem;
  overflow: clip;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10,7,6,.83) 15%, rgba(20, 11, 9,.72) 45%, rgba(38, 18, 14,.2) 80%),
    url("https://images.pexels.com/photos/5691533/pexels-photo-5691533.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover no-repeat;
  filter: saturate(1.03) contrast(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(232,177,101,.35), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(140,31,37,.36), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
}
.hero-content {
  color: #f9efe3;
  padding: 1rem 0;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
}
.kicker {
  margin: 0 0 .9rem;
  color: #f7c27d;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .73rem;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.015em;
}
h1 {
  font-size: clamp(2rem, 4.35vw, 3.4rem);
  line-height: 1.06;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}
.hero-content p {
  max-width: 52ch;
  margin: 1.05rem 0 0;
  margin-left: auto;
  margin-right: auto;
  color: #f4dfcf;
  font-size: 1.02rem;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 248, 238, 0.95);
  border: 1px solid #ebd3b8;
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}
.hero-panel h2 { font-size: 1.55rem; margin-bottom: .85rem; }
.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .82rem;
}
.hero-panel li {
  border-bottom: 1px dashed #ead6bc;
  padding-bottom: .74rem;
  display: grid;
  gap: .2rem;
}
.hero-panel li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-panel span { font-size: .81rem; text-transform: uppercase; letter-spacing: .06em; color: #865339; font-weight: 700; }
.hero-panel strong { font-size: .99rem; color: #2f211c; }

.section {
  padding: 2.6rem 0;
}
.section-head {
  display: grid;
  gap: .6rem;
  margin-bottom: 1.1rem;
}
.section-head h2 {
  font-size: clamp(1.52rem, 3vw, 2.25rem);
  max-width: 26ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .95rem;
}
.photo-card {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
  border: 1px solid #d9c0a2;
  box-shadow: 0 14px 30px rgba(41, 18, 10, 0.13);
}
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 10, 7, 0.78));
}
.photo-card > div {
  position: relative;
  z-index: 2;
  color: #fff6ed;
  padding: 1rem;
}
.photo-card h3 { font-size: 1.45rem; margin-bottom: .3rem; }
.photo-card p { margin: 0; color: #f2e3d4; font-size: .95rem; }
.photo-1 { background: url("https://images.pexels.com/photos/5317154/pexels-photo-5317154.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover no-repeat; }
.photo-2 { background: url("https://images.pexels.com/photos/6790977/pexels-photo-6790977.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover no-repeat; }
.photo-3 { background: url("https://images.pexels.com/photos/19503382/pexels-photo-19503382.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover no-repeat; }

.service-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(30, 16, 10, 0.08);
}
.service-card h2 {
  font-size: 1.65rem;
  margin-bottom: .9rem;
}
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .62rem;
}
.service-card li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}
.service-card li::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: .43rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.service-card-alt {
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 177, 101, 0.2), transparent 40%),
    radial-gradient(circle at 10% 100%, rgba(140, 31, 37, 0.18), transparent 45%),
    linear-gradient(165deg, #fff7ea 0%, #fff0dc 100%);
}
.service-card-alt p {
  margin: 0 0 1rem;
  color: #4b3d36;
  font-weight: 500;
  max-width: 50ch;
}

.infos-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  padding-bottom: 3rem;
}
.hours-card,
.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 10px 28px rgba(30, 16, 10, 0.08);
}
.hours-card h2,
.map-card h2 { font-size: 1.6rem; margin-bottom: .85rem; }
.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  border-bottom: 1px dashed #e2d1bc;
  padding: .55rem 0;
  margin: 0;
}
.hours-list p:last-child { border-bottom: 0; }
.hours-list span { color: var(--muted); }
.hours-list strong { text-align: right; font-size: .95rem; }
.facts-note {
  margin: .85rem 0 0;
  padding: .65rem .75rem;
  border-radius: 12px;
  background: #fff0da;
  color: #6a4f2f;
  font-size: .86rem;
}
.map-card p { margin: 0 0 .8rem; color: var(--muted); }
.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dfccb4;
  margin-bottom: .85rem;
  min-height: 300px;
}
.map-frame iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.footer {
  border-top: 1px solid #d9cab7;
  background: #f2e9de;
}
.footer-inner {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  font-size: .92rem;
}
.muted { color: #796a5d; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 760;
  text-decoration: none;
  padding: .8rem 1.1rem;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn-solid {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 10px 24px rgba(129, 38, 25, 0.28);
}
.btn-solid:hover { transform: translateY(-1px); }
.btn-line {
  border-color: rgba(255,255,255,.26);
  color: #fef4e8;
  background: rgba(255,255,255,.07);
}
.btn-line:hover {
  border-color: rgba(255,255,255,.45);
}
.map-card .btn-line {
  color: #3b2d26;
  background: #fff;
  border-color: #ddc7aa;
}
.btn-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255,255,255,.1);
}

@media (max-width: 1040px) {
  .hero-grid,
  .gallery-grid,
  .service-wrap,
  .infos-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel { max-width: 620px; }
}

@media (max-width: 760px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: .55rem;
    padding: .7rem 0;
  }
  .switcher-a {
    justify-self: start;
  }
  .nav {
    justify-self: start;
    gap: .9rem;
    overflow-x: auto;
    white-space: nowrap;
  }
  h1 { max-width: none; }
  .section { padding: 2rem 0; }
  .photo-card { min-height: 220px; }
  .map-frame,
  .map-frame iframe { min-height: 240px; height: 240px; }
  .footer-inner { font-size: .84rem; }
}

/* Light theme override - SIRI and CO */
body {
  background:
    linear-gradient(180deg, rgba(250, 253, 247, 0.95) 0%, rgba(244, 250, 240, 0.94) 45%, rgba(241, 247, 237, 0.96) 100%),
    radial-gradient(920px 500px at 12% 10%, rgba(79, 153, 98, 0.18), transparent 70%),
    radial-gradient(860px 460px at 88% 18%, rgba(213, 170, 93, 0.14), transparent 72%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 24px),
    repeating-linear-gradient(28deg, rgba(61, 112, 74, 0.08) 0 1px, transparent 1px 18px),
    url("https://images.pexels.com/photos/5691533/pexels-photo-5691533.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover fixed no-repeat,
    #f2f8ef !important;
  color: #1a2b1d;
}
body::before {
  opacity: 0.1;
  background-image:
    radial-gradient(rgba(31, 68, 41, 0.35) 0.45px, transparent 0.45px),
    radial-gradient(rgba(255, 255, 255, 0.5) 0.4px, transparent 0.4px);
  background-size: 7px 7px, 13px 13px;
  background-position: 0 0, 4px 6px;
}
body::after {
  background:
    radial-gradient(520px 240px at 90% 16%, rgba(90, 168, 103, 0.16), transparent 70%),
    radial-gradient(460px 220px at 12% 84%, rgba(193, 149, 66, 0.14), transparent 70%),
    repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 30px);
}
.topbar {
  background: rgba(247, 252, 243, 0.88);
  border-bottom: 1px solid #cadbc9;
  box-shadow: 0 8px 22px rgba(35, 56, 39, 0.1);
}
.nav a {
  color: #22412a;
}
.nav a:hover {
  color: #2f7d45;
}
.switcher-a a {
  color: #20402a;
  border: 1px solid #b7d1b9;
  background: rgba(255, 255, 255, 0.72);
}
.switcher-a a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, #2f7d45, #63b979);
}
.hero-backdrop {
  background:
    linear-gradient(112deg, rgba(22, 53, 31, 0.62) 12%, rgba(36, 70, 42, 0.5) 42%, rgba(37, 69, 45, 0.24) 86%),
    url("https://images.pexels.com/photos/5317154/pexels-photo-5317154.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover no-repeat !important;
}
.hero::after {
  background:
    radial-gradient(circle at 80% 10%, rgba(156, 212, 152, 0.28), transparent 44%),
    radial-gradient(circle at 4% 96%, rgba(84, 152, 102, 0.24), transparent 48%),
    repeating-linear-gradient(122deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 26px);
}
.kicker {
  color: #d2f5d3;
}
.footer {
  background: #edf6eb;
  border-top: 1px solid #c5d8c4;
}
.footer-inner p {
  color: #2b3f31;
}
.footer .muted {
  color: #516a58;
}
