:root {
  --paper: #f6f3ee;
  --ink: #221b19;
  --muted: #756b65;
  --line: #ddd4ca;
  --rose: #b85f69;
  --rose-dark: #73333d;
  --sage: #42665e;
  --sage-soft: #dfe9e3;
  --white: #fffdf9;
  --shadow: 0 22px 60px rgba(46, 36, 30, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.en .lang-hr,
body:not(.en) .lang-en {
  display: none !important;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(34, 27, 25, 0.12);
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.nav a,
.footer a,
.contact a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.tab,
.gallery-image {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.lang-toggle {
  width: 44px;
  height: 40px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--rose-dark);
  background: var(--rose-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 28px rgba(115, 51, 61, 0.22);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.button-quiet {
  background: transparent;
  color: var(--rose-dark);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  padding: clamp(24px, 5vw, 76px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 90px);
}

.hero-media {
  position: relative;
  min-height: 420px;
  height: min(68vh, 720px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 27, 25, 0), rgba(34, 27, 25, 0.16));
  pointer-events: none;
}

.hero-media img,
.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 0.98;
  font-weight: 500;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.2;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 56ch;
}

.hero-cta,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.quick-facts div,
.intro-grid article,
.booking-steps article,
.contact-details {
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
  border-radius: var(--radius);
}

.quick-facts div {
  padding: 14px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 930px;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.section-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.booking-steps article {
  padding: clamp(18px, 3vw, 28px);
}

.intro-grid p,
.booking-steps p,
.service-row p,
.contact p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: linear-gradient(90deg, rgba(223, 233, 227, 0.9), rgba(246, 243, 238, 0.96));
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.tab.is-active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.service-panel {
  display: none;
  max-width: 1080px;
}

.service-panel.is-active {
  display: grid;
  gap: 12px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(34, 27, 25, 0.18);
  background: rgba(255, 253, 249, 0.64);
}

.service-row strong {
  color: var(--rose-dark);
  white-space: nowrap;
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.booking .eyebrow {
  color: #a8d2c4;
}

.booking h2 {
  color: var(--white);
}

.booking .button {
  grid-column: 2;
  width: fit-content;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: none;
}

.booking-steps {
  display: grid;
  gap: 14px;
}

.booking-steps article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.booking-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--ink);
  font-weight: 900;
}

.booking-steps p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-section {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.gallery-image {
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  opacity: 0.78;
}

.gallery-image.is-active {
  opacity: 1;
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview {
  margin: 0;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
}

.contact-details {
  padding: clamp(18px, 3vw, 30px);
}

.contact-details dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px) 88px;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow);
}

.mobile-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: 2;
    min-height: 320px;
    height: 48vh;
  }

  .booking .button {
    grid-column: auto;
  }

  .quick-facts,
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-cta .button,
  .contact-actions .button {
    width: 100%;
  }

  .quick-facts {
    gap: 8px;
  }

  .section {
    padding: 58px 16px;
  }

  .service-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-preview {
    aspect-ratio: 4 / 3;
  }

  .footer {
    display: block;
    padding-bottom: 96px;
  }

  .footer a {
    display: inline-block;
    margin-top: 12px;
  }

  .mobile-cta {
    display: grid;
  }
}
