/* ───────── Ruža Vjetrova — styles ───────── */

:root {
  /* Sea-forward palette — locked */
  --paper:      #f6f1e6;
  --paper-2:    #ece7dd;
  --ink:        #202830;
  --ink-soft:   #64686a;
  --ink-mute:   #969794;
  --rule:       #c7c5be;
  --rule-soft:  #d8d5cd;
  --terra:      #386478;
  --terra-deep: #31586a;
  --sea:        #a8794d;
  --sand:       #dbceb6;

  --f-display: "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter Tight", "Manrope", system-ui, sans-serif;
  --f-mono:    "DM Mono", ui-monospace, monospace;

  --measure: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* ── Typography utilities ── */
.serif    { font-family: var(--f-display); font-weight: 400; }
.serif-i  { font-family: var(--f-display); font-style: italic; font-weight: 400; }
.sans     { font-family: var(--f-body); }
.mono     { font-family: var(--f-mono); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.numeral {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  font-size: 14px;
  letter-spacing: 0.04em;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

/* ── Layout ── */
.shell {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
}

.section + .section {
  border-top: 1px solid var(--rule-soft);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: clamp(36px, 4vw, 56px);
}

@media (min-width: 820px) {
  .section-head {
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: baseline;
  }
}

.section-head .head-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-head h2 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.section-head h2 em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--terra); border-color: var(--terra); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-terra {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}
.btn-terra:hover { background: var(--terra-deep); border-color: var(--terra-deep); }

.btn:disabled { opacity: 0.65; cursor: default; }

.link-inline {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-mute);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.link-inline:hover { color: var(--terra); border-color: var(--terra); }

/* ── Forms ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.input, .select, .textarea {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 10px 0 10px;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--terra);
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-mute); font-style: italic; }
.select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23736149' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
  font-size: 17px;
}

/* ── Misc ── */
.hairline { height: 1px; background: var(--rule); width: 100%; }

/* ── Placeholder imagery ── */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--sand) 0 14px,
      color-mix(in oklch, var(--sand) 84%, var(--ink) 6%) 14px 28px);
  color: var(--ink-soft);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.ph.terra {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklch, var(--terra) 18%, var(--paper)) 0 14px,
      color-mix(in oklch, var(--terra) 26%, var(--paper)) 14px 28px);
}
.ph.sea {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklch, var(--sea) 18%, var(--paper)) 0 14px,
      color-mix(in oklch, var(--sea) 26%, var(--paper)) 14px 28px);
}
.ph .ph-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  background: var(--paper);
  padding: 6px 10px;
  margin: 14px;
  border-radius: 0;
}

/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── Top nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  background: color-mix(in oklch, var(--ink) 92%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid color-mix(in oklch, var(--terra) 28%, transparent);
  color: var(--paper);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-decoration: none;
}
.nav-brand small {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--paper) 60%, transparent);
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: none;
  gap: 28px;
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--paper) 70%, transparent);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  padding: 10px 18px;
  font-size: 11px;
}

/* ───────── HERO ───────── */

.hero {
  position: relative;
  padding-top: 84px;
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in oklch, var(--sand) 60%, var(--paper)) 0%, var(--paper) 60%);
}

/* ── Stack hero (locked variant) ── */
.hero-stack { padding: 40px 0 0; }
.hero-stack-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 40px;
  padding-bottom: 0;
}
.hero-stack-rose { display: flex; align-items: center; justify-content: center; }
.eyebrow.center { text-align: center; }

.hero-h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 0;
}
.hero-h1 em { font-style: italic; color: var(--terra); font-weight: 400; }

.hero-lede {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.42;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ───────── ABOUT / STORY ───────── */

.section-about {
  background: color-mix(in oklch, var(--paper) 92%, var(--sand));
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 72px;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1.4fr 0.9fr; gap: 96px; align-items: start; }
}
.about-copy { display: flex; flex-direction: column; gap: 22px; }
.about-copy .lede {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.32;
  color: var(--ink);
  text-wrap: balance;
}
.about-copy p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 58ch;
}
.about-copy em { color: var(--terra); font-style: italic; }

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.stat {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 18px;
}
.stat-n {
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 15px; color: var(--ink); line-height: 1.3; }
.stat-line {
  grid-column: 2;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 4px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}
.about-gallery > :nth-child(1) { transform: translateY(0); }
.about-gallery > :nth-child(2) { transform: translateY(-32px); }
.about-gallery > :nth-child(3) { transform: translateY(16px); }
@media (max-width: 700px) {
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery > * { transform: none !important; }
}

/* ───────── SERVICES ───────── */

.services-list { display: flex; flex-direction: column; gap: clamp(72px, 9vw, 132px); }

.svc-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
}
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row.flip .svc-text { order: 0; }
  .svc-row.flip .svc-images { order: 1; }
}

.svc-text { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; max-width: 56ch; }
.svc-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.numeral.big { font-size: 56px; line-height: 0.9; }
.svc-name {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 0.98;
  margin-top: 6px;
  letter-spacing: -0.018em;
}
.svc-tagline {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: var(--terra);
}
.svc-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.svc-bullets {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  width: 100%;
}
.svc-bullets li {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.svc-bullets li:last-child { border-bottom: 1px solid var(--rule-soft); }
.bullet-dot {
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
  display: inline-block;
}
.svc-cta { margin-top: 10px; }

.svc-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  position: relative;
}
.svc-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-img-a {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.svc-img-b {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.svc-img-c {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  transform: translateY(8px);
}
.svc-images[data-flip="1"] .svc-img-a { grid-column: 2/3; grid-row: 1/3; }
.svc-images[data-flip="1"] .svc-img-b { grid-column: 1/2; grid-row: 1/2; }
.svc-images[data-flip="1"] .svc-img-c { grid-column: 1/2; grid-row: 2/3; transform: translateY(8px); }

/* ───────── PRACTICAL ───────── */

.section-practical { background: color-mix(in oklch, var(--paper) 88%, var(--sand)); }
.practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .practical-grid { grid-template-columns: repeat(3, 1fr); }
}
.practical-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.practical-hd {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.practical-hd h4 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hours-list { margin: 0; padding: 0; display: flex; flex-direction: column; }
.hours-list > div {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
  align-items: baseline;
}
.hours-list > div:last-child { border-bottom: 1px solid var(--rule-soft); }
.hours-list dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.hours-list dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--ink);
}
.hours-note { color: var(--terra); font-size: 11px; letter-spacing: 0.1em; margin-top: 4px; font-family: var(--f-mono); }

.safety-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.safety-list li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.safety-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 22px;
  line-height: 1;
  top: -2px;
}
.safety-list strong { color: var(--ink); font-weight: 500; font-family: var(--f-display); font-size: 16px; }

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
}
.map-meta { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.map-meta .small { font-size: 10.5px; letter-spacing: 0.14em; color: var(--ink-mute); font-family: var(--f-mono); }

/* ───────── RESERVATION ───────── */

.section-reserve {
  background:
    linear-gradient(180deg, var(--paper) 0%, color-mix(in oklch, var(--paper) 80%, var(--sand)) 100%);
  position: relative;
}
.res-note { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); max-width: 60ch; line-height: 1.55; font-family: var(--f-mono); }

/* Ticket / boarding-pass variant */
.res-ticket {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 0;
  font-family: var(--f-mono);
}
.ticket-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.6fr 1fr;
  border-bottom: 1.5px dashed var(--rule);
}
.ticket-strip.notch { grid-template-columns: 1.4fr 1fr 1.4fr; }
.ticket-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticket-cell:last-child { border-right: 0; }
.ticket-cell .tiny {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--f-mono);
}
.ticket-input, .ticket-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.ticket-input:focus, .ticket-select:focus {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}
.ticket-select {
  cursor: pointer;
  padding-right: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23969794' d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.ticket-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
}
.ticket-stub { display: flex; flex-direction: column; gap: 8px; }
.ticket-stub .activity-label {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}
.ticket-stub .date-line {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--f-mono);
}
.ticket-cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
@media (max-width: 880px) {
  .ticket-strip { grid-template-columns: 1fr 1fr; }
  .ticket-strip.notch { grid-template-columns: 1fr; }
  .ticket-bottom { grid-template-columns: 1fr; }
  .ticket-cta { align-items: flex-start; }
}

/* ───────── FOOTER ───────── */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-contact { display: flex; flex-direction: column; gap: 22px; }
.footer-contact .eyebrow { color: rgba(255,255,255,0.55); }
.footer-contact .numeral { color: var(--terra); }
.footer-contact .head-meta { color: rgba(255,255,255,0.7); display: flex; flex-direction: row; gap: 14px; align-items: baseline; }
.footer-h {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.footer-h em { color: var(--terra); font-style: italic; }

.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 600px; }
.cf-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .cf-row.two { grid-template-columns: 1fr; } }
.site-footer .field-label { color: rgba(255,255,255,0.55); }
.site-footer .input,
.site-footer .textarea {
  color: var(--paper);
  border-bottom-color: rgba(255,255,255,0.2);
}
.site-footer .select {
  color: var(--paper);
  border-bottom-color: rgba(255,255,255,0.2);
}
.site-footer .input:focus,
.site-footer .textarea:focus { border-bottom-color: var(--terra); }
.site-footer .input::placeholder,
.site-footer .textarea::placeholder { color: rgba(255,255,255,0.35); }
.site-footer .btn-ghost {
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
  align-self: flex-start;
}
.site-footer .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.footer-info { display: flex; flex-direction: column; gap: 40px; }
.footer-rose {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: var(--paper);
}
.footer-brandline {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 2px;
  color: var(--paper);
}
.footer-rose .tiny {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--f-mono);
}

.footer-dl { margin: 0; padding: 0; display: flex; flex-direction: column; }
.footer-dl > div {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: baseline;
}
.footer-dl > div:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-dl dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-dl dd { margin: 0; color: var(--paper); font-size: 16px; line-height: 1.45; font-family: var(--f-display); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .tiny {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--f-mono);
}
