:root {
  --cream: #f7f4ec;
  --cream-2: #efe9dc;
  --sage: #9caf88;
  --sage-d: #6b7d52;
  --sage-dd: #4d5a3a;
  --ink: #2f3327;
  --ink-soft: #5b6150;
  --accent: #c4756b;
  --accent-d: #a85a50;
  --sidebar-w: 300px;
  --line: rgba(77, 90, 58, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.u-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--sage-dd);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---- Logo ---- */
.logo-word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 0.9;
  color: var(--sage-dd);
  letter-spacing: 0.5px;
}
.logo-sub {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-top: 0.25rem;
  padding-left: 0.1rem;
}

/* ---- Sidebar ---- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--cream-2);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2rem;
  z-index: 120;
  overflow-y: auto;
}
.sidebar__brand {
  margin-bottom: 2.6rem;
}
.brand-link .logo-word {
  font-size: 2.4rem;
}

.sidebar__nav {
  flex: 0 0 auto;
}
.sidebar__nav ul {
  list-style: none;
}
.sidebar__nav li {
  margin: 0.15rem 0;
}
.sidebar__nav a {
  display: block;
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0.62rem 0 0.62rem 1.4rem;
  transition:
    color 0.25s,
    padding 0.25s;
}
.sidebar__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--sage-d);
  opacity: 0.4;
  transition:
    width 0.3s,
    opacity 0.3s,
    background 0.3s;
}
.sidebar__nav a:hover {
  color: var(--sage-dd);
}
.sidebar__nav a.is-active {
  color: var(--sage-dd);
  font-weight: 600;
  padding-left: 1.7rem;
}
.sidebar__nav a.is-active::before {
  width: 24px;
  opacity: 1;
  background: var(--accent);
  height: 2px;
}

.sidebar__info {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.info-phone {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--sage-dd);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.info-phone:hover {
  color: var(--accent);
}
.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.info-hours p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.info-hours span {
  color: var(--ink);
}
.info-addr {
  margin-top: 1.1rem;
  line-height: 1.5;
}

.sidebar__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.soc-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.soc-btn:hover {
  transform: translateY(-2px);
}
.soc-fb {
  background: #3b5998;
}
.soc-wa {
  background: #25d366;
}
.sidebar__fb-note {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  color: var(--sage-d);
  font-style: italic;
}

/* ---- Top bar (mobile) ---- */
.topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 62px;
  z-index: 130;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.topbar__logo .logo-word {
  font-size: 1.5rem;
}
.topbar__logo .logo-sub {
  font-size: 0.58rem;
  margin-top: 0.1rem;
}
.burger {
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: grid;
  gap: 5px;
  align-content: center;
  justify-items: center;
  padding: 0;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--sage-dd);
  transition: 0.3s;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 51, 39, 0.45);
  z-index: 115;
  border: none;
}

/* ---- Main ---- */
.main {
  margin-left: var(--sidebar-w);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(47, 51, 39, 0.72), rgba(47, 51, 39, 0.25) 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  max-width: 680px;
}
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
}
.hero__content .eyebrow {
  color: #dfe6cf;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1.02;
  margin: 0.6rem 0 1.2rem;
}
.hero__lead {
  font-size: 1.12rem;
  max-width: 34rem;
  color: #f0ede2;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero__delivery {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: #dfe6cf;
  letter-spacing: 0.04em;
}
.hero__delivery::before {
  content: "✿ ";
  color: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border-radius: 40px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(196, 117, 107, 0.35);
}
.btn--primary:hover {
  background: var(--accent-d);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--fb {
  background: #3b5998;
  color: #fff;
}
.btn--fb:hover {
  background: #314c84;
}
.btn--wa {
  background: #25d366;
  color: #fff;
}
.btn--wa:hover {
  background: #1eb858;
}
.btn--sm {
  padding: 0.7rem 1.3rem;
  font-size: 0.74rem;
}

/* ---- Sections ---- */
.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.section:nth-of-type(even) {
  background: var(--cream-2);
}
.section__head {
  max-width: 46rem;
  margin-bottom: 3rem;
}
.section__head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin: 0.4rem 0 0.8rem;
  line-height: 1.05;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* ---- Services ---- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.8rem;
}
.section:nth-of-type(even) .svc-card {
  background: #fff;
}
.svc-card__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.svc-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--sage-dd);
  margin: 0.5rem 0 0.6rem;
}
.svc-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---- Split (O nás) ---- */
.section--split {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  margin-inline: 0;
}
.split__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 480px;
  max-height: 480px;
  box-shadow: 0 18px 40px rgba(77, 90, 58, 0.18);
}
.split__text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--ink);
  margin: 0.4rem 0 1.1rem;
  line-height: 1.08;
}
.split__text p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.checks {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.checks li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.checks li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---- Weddings ---- */
.weddings {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 520px;
}
.weddings figure {
  overflow: hidden;
  border-radius: 14px;
}
.weddings__big {
  grid-row: 1 / span 2;
}
.weddings figure img {
  height: 100%;
}
.weddings__cta {
  margin-top: 2rem;
  text-align: center;
}

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery figure {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1/1;
}
.gallery__cta {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery__note {
  font-style: italic;
  color: var(--sage-d);
  font-size: 0.92rem;
}

/* ---- Contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.contact__info {
  display: grid;
  gap: 2rem;
  align-content: start;
}
.contact__details {
  display: grid;
  gap: 2rem;
  align-content: start;
}
.contact__list {
  list-style: none;
  display: grid;
  gap: 1.3rem;
}
.contact__list li {
  display: grid;
  gap: 0.2rem;
}
.ci-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-d);
  font-weight: 600;
}
.contact__list a:hover {
  color: var(--accent);
}
.contact__list li a,
.contact__list li span:not(.ci-label) {
  font-size: 1.05rem;
  color: var(--ink);
}
.contact__social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact__hours {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 14px 34px rgba(77, 90, 58, 0.1);
}
.section:nth-of-type(even) .contact__hours {
  background: var(--cream);
}
.contact__hours table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
}
.contact__hours th {
  text-align: left;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.contact__hours td {
  text-align: right;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.contact__hours tr:last-child th,
.contact__hours tr:last-child td {
  border-bottom: none;
}

.contact__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

/* ---- Footer ---- */
.footer {
  background: var(--sage-dd);
  color: #e7ead9;
  text-align: center;
  padding: 3rem 1.5rem;
  display: grid;
  gap: 0.7rem;
}
.footer__brand .logo-word {
  color: #fff;
}
.footer__brand .logo-sub {
  color: var(--sage);
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer p {
  font-size: 0.9rem;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--sage);
  margin-top: 0.4rem;
}

/* ---- FAB ---- */
.fab-wa {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 140;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.fab-wa:hover {
  transform: scale(1.08);
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .section--split,
  .contact {
    grid-template-columns: 1fr;
  }
  .split__media {
    max-width: 100%;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 860px) {
  :root {
    --sidebar-w: 0px;
  }
  html {
    scroll-padding-top: 78px;
  }
  .topbar {
    display: flex;
  }
  .main {
    margin-left: 0;
    padding-top: 62px;
  }
  .sidebar {
    width: 300px;
    max-width: 86vw;
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    padding-top: 1.8rem;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar__brand {
    display: none;
  }
  .fab-wa {
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 620px) {
  .weddings {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }
  .weddings__big {
    grid-row: auto;
  }
  .weddings figure {
    aspect-ratio: 4/3;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .services {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .contact__hours {
    padding: 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ---- Lightbox ---- */
.gallery img,
.weddings figure img,
.split__media img {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(28, 30, 22, 0.92);
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox__close svg,
.lightbox__nav svg {
  display: block;
}
.lightbox__close {
  top: 1.2rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
}
.lightbox__prev {
  left: 1.2rem;
}
.lightbox__next {
  right: 1.2rem;
}
@media (max-width: 520px) {
  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.9rem;
  }
  .lightbox__prev {
    left: 0.5rem;
  }
  .lightbox__next {
    right: 0.5rem;
  }
}
