:root {
  --bg: #fbf6ef;
  --bg-2: #f5eadc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --text: #17110c;
  --muted: #76685e;
  --primary: #6f3d21;
  --primary-dark: #24130b;
  --accent: #c98a52;
  --accent-2: #f0c79f;
  --line: rgba(80, 52, 35, 0.14);
  --line-strong: rgba(80, 52, 35, 0.22);
  --shadow-soft: 0 18px 50px rgba(48, 30, 19, 0.10);
  --shadow-strong: 0 28px 80px rgba(50, 28, 14, 0.18);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(201, 138, 82, 0.26), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(111, 61, 33, 0.13), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 44%, #f8efe5 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 17, 12, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 17, 12, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 72%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 34px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 239, 0.76);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(80, 52, 35, 0.10);
}

.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 900; letter-spacing: -0.03em; }
.brand span:last-child { display: grid; line-height: 1.05; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), #2e180d);
  color: white;
  box-shadow: 0 12px 30px rgba(111, 61, 33, 0.28);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 750; color: var(--muted); }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(111, 61, 33, 0.20);
}

.hero { padding: 98px 0 84px; overflow: hidden; position: relative; }
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -140px;
  top: 90px;
  background: rgba(201, 138, 82, 0.22);
  filter: blur(10px);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 70px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 138, 82, 0.16);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 7.4vw, 84px);
  line-height: 0.93;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
  max-width: 850px;
}
h2 { font-size: clamp(31px, 4.2vw, 52px); line-height: 0.98; letter-spacing: -0.055em; margin-bottom: 14px; }
h3 { margin-bottom: 10px; letter-spacing: -0.028em; }
.hero-text { color: var(--muted); font-size: 20px; line-height: 1.7; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 28px; }
.button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  border-radius: 999px;
  padding: 15px 23px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 18px 38px rgba(111, 61, 33, 0.27); }
.primary:hover { box-shadow: 0 22px 46px rgba(111, 61, 33, 0.32); }
.ghost { background: rgba(255,255,255,0.72); color: var(--primary); border: 1px solid var(--line); backdrop-filter: blur(10px); }
.ghost:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.secondary { background: #f2dfcb; color: var(--primary-dark); }
.full { width: 100%; }
.big { padding: 18px 24px; font-size: 17px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-weight: 750; }
.trust-row span {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(80, 52, 35, 0.10);
  padding: 9px 13px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-card { min-height: 530px; position: relative; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px 38px 52px 18px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,0.46), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), var(--shadow-soft);
}
.paper-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(80, 52, 35, 0.12);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}
.main-card { right: 58px; top: 36px; width: 368px; padding: 34px; transform: rotate(2.2deg); }
.main-card h3 { font-size: 36px; margin: 20px 0; }
.main-card p { color: var(--muted); line-height: 1.55; }
.main-card strong { color: var(--primary-dark); }
.pill {
  display: inline-flex;
  background: linear-gradient(135deg, #fff2e4, #f5d6b9);
  color: var(--primary);
  border: 1px solid rgba(201, 138, 82, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}
.card-line { height: 1px; background: var(--line); margin: 18px 0; }
.mini-text { font-size: 14px; }
.small-card { padding: 18px 22px; font-weight: 900; color: var(--primary-dark); white-space: nowrap; }
.small-card.one { left: 20px; top: 288px; transform: rotate(-6deg); }
.small-card.two { right: 0; bottom: 74px; transform: rotate(5deg); }
.small-card.three { left: 58px; bottom: 54px; transform: rotate(3deg); }

.section { padding: 90px 0; position: relative; }
.muted { background: rgba(245, 234, 220, 0.70); border-block: 1px solid rgba(80, 52, 35, 0.08); }
.section-heading { max-width: 780px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article, .price-box, .reservation-card, .notice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.steps article { padding: 30px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.steps article:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.steps span {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 22px;
  box-shadow: 0 12px 24px rgba(111, 61, 33, 0.22);
}
.steps p, .price-box p { color: var(--muted); line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-box { padding: 28px; min-height: 210px; position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.price-box::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(201, 138, 82, 0.14);
}
.price-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.price-box.featured { background: linear-gradient(145deg, #ffffff, #fff3e4); border-color: rgba(201, 138, 82, 0.34); }
.price-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(201, 138, 82, 0.14);
  padding: 7px 10px;
  border-radius: 999px;
}
.price-box h3 { font-size: 23px; }
.from {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--primary-dark) !important;
  font-weight: 950;
  margin: 10px 0 14px;
}

.form-section { background: linear-gradient(180deg, rgba(251,246,239,0.3), #f4e2cf); }
.form-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 36px; align-items: start; }
.form-intro { position: sticky; top: 110px; }
.form-intro p { color: var(--muted); line-height: 1.7; }
.notice { padding: 22px; color: var(--primary-dark); background: rgba(255,255,255,0.86); }
.reservation-card { padding: 28px; background: rgba(255,255,255,0.88); }
fieldset { border: 0; padding: 0; margin: 0 0 28px; }
legend { font-size: 23px; font-weight: 950; margin-bottom: 18px; letter-spacing: -0.035em; }
label { display: grid; gap: 8px; font-weight: 850; color: var(--primary-dark); margin-bottom: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fffdfa;
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(201, 138, 82, 0.78); box-shadow: 0 0 0 5px rgba(201,138,82,0.15); background: white; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.wide { grid-column: 1 / -1; }
.hint { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.file-label input { padding: 18px; border-style: dashed; background: #fff8ef; }
.work-card {
  border: 1px solid rgba(201, 138, 82, 0.28);
  background: linear-gradient(180deg, #fffbf6, #fff7ee);
  border-radius: 25px;
  padding: 22px;
  margin-bottom: 17px;
}
.work-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 14px; }
.work-head h3 { margin: 0; }
.remove-work { border: 0; background: #f2dfcb; color: var(--primary-dark); border-radius: 999px; padding: 9px 13px; font-weight: 900; cursor: pointer; }
.summary {
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(201, 138, 82, 0.35), transparent 36%),
    linear-gradient(145deg, #2b160c, #140c08);
  color: white;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 24px 55px rgba(20, 12, 8, 0.24);
}
.summary h3 { margin-bottom: 12px; }
.summary table { width: 100%; border-collapse: collapse; font-size: 14px; }
.summary td { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.12); vertical-align: top; }
.summary strong { color: #ffd7b0; }
.summary .total { font-size: 24px; font-weight: 950; margin-top: 18px; }
.form-message { margin: 14px 0 0; font-weight: 900; }
.form-message.success { color: #166d37; }
.form-message.error { color: #a32222; }

.footer { padding: 32px 0; background: #17100c; color: rgba(255,255,255,0.72); }
.footer-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer a { color: white; font-weight: 800; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .form-layout { grid-template-columns: 1fr; }
  .hero-card { min-height: 385px; }
  .main-card { right: 18px; top: 18px; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .form-intro { position: static; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 24px, 1160px); }
  .hero { padding-top: 58px; padding-bottom: 58px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .two-col { grid-template-columns: 1fr; }
  .hero-card { min-height: 430px; }
  .hero-card::before { inset: 16px 0 48px; }
  .main-card { width: min(330px, calc(100% - 20px)); right: 4px; top: 18px; padding: 28px; }
  .small-card { font-size: 14px; }
  .small-card.one { left: 0; top: 286px; }
  .small-card.two { right: 0; bottom: 74px; }
  .small-card.three { left: 10px; bottom: 24px; }
  .section { padding: 68px 0; }
  .reservation-card { padding: 20px; }
}

/* Dorade: ujednačene kartice, čistiji tekst i jači responsive izgled */
.brand small { letter-spacing: 0.10em; }
.trust-row { max-width: 720px; }

.hero-card {
  width: min(100%, 520px);
  justify-self: end;
}
.hero-card::before { inset: 22px 28px 52px 16px; }
.main-card {
  width: min(368px, calc(100% - 70px));
  right: 42px;
}
.small-card.two { right: 8px; }

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.price-box,
.price-box.featured {
  background: linear-gradient(145deg, #ffffff, #fff3e4);
  border-color: rgba(201, 138, 82, 0.34);
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.price-box h3,
.price-box .from,
.price-box p { position: relative; z-index: 1; }
.price-box h3 { margin-top: 0; }
.price-kicker {
  width: fit-content;
  margin-bottom: 15px;
}
.price-box:not(.featured)::before {
  content: "";
  display: block;
  height: 31px;
  margin-bottom: 15px;
}

.footer-inner {
  align-items: center;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 42px;
    grid-template-columns: 1.02fr 0.98fr;
  }
  .main-card {
    right: 24px;
    width: min(356px, calc(100% - 48px));
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-card {
    justify-self: center;
    min-height: 430px;
    width: min(100%, 560px);
  }
  .hero-card::before { inset: 16px 18px 48px; }
  .main-card {
    right: 42px;
    top: 18px;
    width: min(368px, calc(100% - 72px));
  }
  .small-card.one { left: 28px; top: 274px; }
  .small-card.two { right: 24px; bottom: 76px; }
  .small-card.three { left: 72px; bottom: 36px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-box,
  .price-box.featured { min-height: auto; }
  .price-box:not(.featured)::before { display: none; }
}

@media (max-width: 650px) {
  .brand { gap: 10px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 15px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
  .hero-card {
    min-height: 445px;
    width: 100%;
  }
  .hero-card::before { inset: 12px 0 46px; border-radius: 32px; }
  .main-card {
    left: 50%;
    right: auto;
    top: 18px;
    width: min(335px, calc(100% - 24px));
    padding: 26px;
    transform: translateX(-50%) rotate(1.4deg);
  }
  .main-card h3 { font-size: 31px; }
  .small-card {
    padding: 14px 17px;
    font-size: 13px;
    border-radius: 20px;
  }
  .small-card.one { left: 10px; top: 285px; transform: rotate(-4deg); }
  .small-card.two { right: 8px; bottom: 83px; transform: rotate(4deg); }
  .small-card.three { left: 24px; bottom: 29px; transform: rotate(2deg); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 18px, 1160px); }
  h1 { font-size: clamp(35px, 12.7vw, 48px); }
  .hero-text { font-size: 17px; }
  .hero-card { min-height: 458px; }
  .main-card { width: min(315px, calc(100% - 18px)); padding: 22px; }
  .small-card.one { top: 292px; }
  .small-card.two { bottom: 86px; }
}
