:root {
  --ink: #211b18;
  --ink-soft: #675e59;
  --paper: #fffdf9;
  --paper-warm: #f5eee8;
  --paper-pink: #eadbd3;
  --rose: #b9766c;
  --rose-dark: #8f5149;
  --gold: #c5a36b;
  --line: rgba(33, 27, 24, 0.12);
  --dark: #1f1a18;
  --dark-soft: #2b2421;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(50, 37, 30, 0.14);
  --shadow-soft: 0 12px 35px rgba(50, 37, 30, 0.08);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.viber-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #7c509e; 
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  
  display: flex;
  justify-content: center;
  align-items: center;
  
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.viber-float:hover {
  transform: scale(1.1);
  background-color: #2596be;
}


.viber-img {
  width: 45px !important;  
  height: 45px !important; 
  object-fit: contain;     
  display: block;
}



html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


* {
  box-sizing: border-box;
}

.floating-card {
  min-width: 300px;
  max-width: 100%; 
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

span.brand-mark{
  font-family: 'Playball', cursive;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand-copy strong{
  font-family: 'Playball', cursive;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.15;
}

p {
  color: var(--ink-soft);
}

::selection {
  color: var(--white);
  background: var(--rose-dark);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-soft {
  background: var(--paper-warm);
}

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

.section-dark p {
  color: rgba(255, 255, 255, 0.69);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #e3b9af;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 253, 249, 0.93);
  box-shadow: 0 4px 25px rgba(33, 27, 24, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.scrolled .brand,
.brand-light {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

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

.brand small {
  margin-top: 5px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
  font-weight: 600;
}

.scrolled .primary-nav {
  color: var(--ink-soft);
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.scrolled .nav-toggle {
  border-color: var(--line);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--white);
  background: var(--rose);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--rose-dark);
  background: var(--rose-dark);
  box-shadow: 0 10px 30px rgba(143, 81, 73, 0.27);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-dark .text-link {
  color: var(--white);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 80px;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -240px;
  left: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 118, 108, 0.15), transparent 66%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: 1.11rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-meta {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-meta div {
  display: grid;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta strong {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  padding: 20px 0 20px 30px;
}

.hero-frame {
  overflow: hidden;
  border-radius: 210px 210px 30px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-frame img {
  aspect-ratio: 0.77;
  object-fit: cover;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -24px;
  bottom: 0;
  left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 220px 220px 36px 36px;
  content: "";
}

.floating-card {
  position: absolute;
  right: -28px;
  bottom: 86px;
  display: flex;
  min-width: 255px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card div {
  display: grid;
}

.floating-card strong {
  font-size: 0.9rem;
}

.floating-card span:not(.floating-icon) {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.floating-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  position: relative;
  padding: 22px 20px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 22px;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 6px;
}

.section-heading.compact {
  align-items: center;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(185, 118, 108, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--paper-pink);
  content: "";
  opacity: 0.58;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(33, 27, 24, 0.32);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 46px;
  place-items: center;
  border: 1px solid rgba(185, 118, 108, 0.35);
  border-radius: 50%;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  background: var(--paper);
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  min-height: 88px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-footer a {
  color: var(--rose-dark);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 96px;
}

.about-images {
  position: relative;
  min-height: 620px;
}

.about-image-main {
  width: 83%;
  height: 580px;
  object-fit: cover;
  border-radius: 190px 190px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  aspect-ratio: 0.88;
  border: 9px solid var(--paper-warm);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-copy p:not(.eyebrow) {
  max-width: 560px;
}

.check-list {
  display: grid;
  margin: 34px 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.check-list span {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
  font-size: 0.76rem;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 245px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--paper-warm);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(17, 13, 11, 0.7));
  content: "";
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.team-section {
  position: relative;
  overflow: hidden;
}

.team-section::after {
  position: absolute;
  top: -230px;
  right: -130px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.team-card img {
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.team-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.team-card div {
  padding: 24px;
}

.team-card h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.team-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.82rem;
}

.testimonial-section {
  padding: 110px 0;
}

.testimonial-wrap {
  position: relative;
  max-width: 900px;
  text-align: center;
}

.quote-mark {
  display: block;
  height: 66px;
  margin-bottom: 15px;
  color: var(--paper-pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
}

blockquote {
  margin: 0 auto 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.review-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
}

.review-author > div:not(.stars) {
  display: grid;
  text-align: left;
}

.review-author strong {
  font-size: 0.88rem;
}

.review-author div span {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.stars {
  margin-left: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.booking-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.booking-copy {
  position: sticky;
  top: 125px;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 430px;
}

.booking-contact {
  display: grid;
  margin-top: 38px;
  gap: 12px;
}

.booking-contact a {
  display: grid;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.booking-contact span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-contact strong {
  margin-top: 3px;
  font-size: 0.95rem;
}

.booking-form {
  padding: 38px;
  border: 1px solid rgba(33, 27, 24, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form label {
  display: grid;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  gap: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fffefa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input,
.booking-form select {
  height: 50px;
  padding: 0 14px;
}

.booking-form textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(185, 118, 108, 0.12);
}

.form-note {
  margin: 14px 5px 0;
  color: #8b817b;
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(72, 125, 80, 0.25);
  border-radius: 12px;
  color: #325f39;
  background: rgba(87, 148, 96, 0.1);
  font-size: 0.84rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr 1.05fr;
  gap: 18px;
}

.contact-panel,
.hours-panel,
.map-placeholder {
  min-height: 490px;
  border-radius: var(--radius);
}

.contact-panel,
.hours-panel {
  padding: 38px;
  border: 1px solid var(--line);
}

.contact-panel {
  background: var(--paper-warm);
}

.contact-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.contact-details {
  display: grid;
  margin-top: 54px;
  gap: 24px;
}

.contact-details div {
  display: grid;
  gap: 5px;
}

.contact-details span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.hours-panel {
  background: var(--white);
}

.hours-list {
  margin: 30px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  font-size: 0.82rem;
}

.hours-list dd {
  color: var(--ink-soft);
  text-align: right;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
  background: #e8e0d8;
}

.map-placeholder img {
  height: 100%;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 78px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--dark);
}

.site-footer .brand-light {
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.footer-links div,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.83rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.social-list {
  display: flex;
  gap: 10px;
}

.social-list a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-list a:hover,
.social-list a:focus-visible {
  border-color: var(--rose);
  background: var(--rose);
  transform: translateY(-3px);
}

.social-list svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
}

.back-to-top {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

:focus-visible {
  outline: 3px solid rgba(185, 118, 108, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  :root {
    --header-height: 76px;
  }

  .primary-nav {
    gap: 20px;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .about-grid {
    gap: 56px;
  }

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

  .map-placeholder {
    min-height: 360px;
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 90px 0;
  }

  /* ==========================================
     1. ZAGLAVLJE (NAVBAR) I NJEGOVA STANJA
     ========================================== */
  
  /* OSNOVNO STANJE (Na vrhu, meni zatvoren) */
  .site-header,
  .header {
    height: var(--header-height, 70px);
    background: var(--ink); /* Tamna pozadina */
    transition: background 0.25s ease, height 0.25s ease;
  }

  /* AKTIVNO STANJE (Kada je skrolovano ILI kada je otvoren meni) */
  .site-header.scrolled,
  .header.scrolled,
  .site-header.nav-open,
  .header.nav-open,
  body.nav-open .site-header,
  body.nav-open .header {
    background: var(--paper) !important; /* Svijetla pozadina */
    border-bottom: 1px solid var(--line) !important;
  }

  /* Specifično za otvoreni meni: širenje visine */
  .site-header.nav-open,
  .header.nav-open,
  body.nav-open .site-header,
  body.nav-open .header {
    height: auto !important; 
  }

  /* ==========================================
     2. NAZIV BRENDA / LOGO
     ========================================== */
  
  /* Osnovno stanje (bijela slova) */
  .brand {
    position: relative;
    z-index: 1002;
    color: var(--paper) !important; 
    transition: color 0.25s ease;
  }

  /* Tamna slova kada je skrolovano ili otvoren meni */
  .scrolled .brand,
  .nav-open .brand,
  body.nav-open .brand {
    color: var(--ink) !important; 
  }

  /* ==========================================
     3. HAMBURGER DUGME
     ========================================== */
  
  /* Osnovno stanje (bijelo na vrhu) */
  .nav-toggle {
    z-index: 1002;
    display: block;
    color: #ffffff !important;
    transition: color 0.25s ease;
    background: transparent; /* Osigurava da nema pozadine */
    border: none;
  }

  /* Crtice u osnovnom stanju (bijele) */
  .nav-toggle span {
    background: #ffffff !important; 
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  }

  /* Tamne crtice kada je skrolovano ili otvoren meni */
  .scrolled .nav-toggle span,
  .nav-open .nav-toggle span,
  body.nav-open .nav-toggle span {
    background: var(--ink) !important;
  }

  /* Animacija hamburgera u 'X' */
  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* ==========================================
     4. PADUJUĆI MENI (Navigacija)
     ========================================== */
  
  /* Zatvoreno stanje */
.primary-nav {
    position: absolute;
    top: 100%; /* OVO JE PROMIJENJENO (bilo je var(--header-height, 70px)) */
    left: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 40px 34px 45px;
    color: var(--ink);
    background: var(--paper) !important; 
    flex-direction: column;
    gap: 10px;
    
    /* Sakrivanje menija */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .primary-nav a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
  }

  .primary-nav .button {
    margin-top: 18px;
  }

  /* Otvoreno stanje */
.nav-open .primary-nav,
  body.nav-open .primary-nav {
    position: absolute !important;
    top: 100% !important; /* OVO JE PROMIJENJENO */
    background: var(--paper) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    border-top: none !important; 
  }

  .site-header.nav-open,
  .header.nav-open,
  body.nav-open .site-header,
  body.nav-open .header {
    height: var(--header-height, 70px) !important; 
  }
  /* ==========================================
     5. POZICIONIRANJE I GRID SISTEM ZA MOBILNE
     ========================================== */
  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

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

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

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-frame img {
    aspect-ratio: 0.86;
  }

  .section-heading,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-copy {
    max-width: 700px;
  }

  .booking-copy {
    position: static;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-large {
    grid-row: span 2;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .team-grid {
    gap: 16px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: 65px;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-meta {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-meta div {
    display: flex;
    align-items: baseline;
    gap: 16px;
  }

  .hero-meta strong {
    min-width: 78px;
  }

  .hero-visual {
    padding-left: 8px;
  }

  .hero-visual::before {
    right: -7px;
    left: -7px;
  }

  .floating-card {
    right: 8px;
    bottom: 42px;
    min-width: 230px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid span:nth-child(2)::after {
    display: none;
  }

  .trust-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-grid,
  .team-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .about-images {
    min-height: 490px;
  }

  .about-image-main {
    height: 470px;
  }

  .about-image-small {
    width: 50%;
    border-width: 6px;
  }

  .gallery-grid {
    display: grid;
    grid-auto-rows: 250px;
    grid-template-columns: 1fr;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .team-card img {
    aspect-ratio: 1 / 1.05;
  }

  .review-author {
    flex-wrap: wrap;
  }

  .stars {
    width: 100%;
    margin: 5px 0 0;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-panel,
  .hours-panel {
    min-height: auto;
    padding: 28px 22px;
  }

  .map-placeholder {
    min-height: 330px;
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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