:root {
  --bg: #eee5d9;
  --paper: rgba(249, 243, 234, 0.9);
  --paper-strong: #f7efe5;
  --ink: #26211c;
  --muted: #665f56;
  --line: rgba(38, 33, 28, 0.12);
  --accent: #32473b;
  --accent-soft: #7f927f;
  --accent-wash: rgba(50, 71, 59, 0.08);
  --sand: #cdb596;
  --white: #ffffff;
  --shadow: 0 24px 72px rgba(39, 30, 23, 0.1);
  --shadow-soft: 0 18px 44px rgba(39, 30, 23, 0.08);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "TildaSans", Arial, sans-serif;
  background:
    linear-gradient(rgba(250, 243, 230, 0.74), rgba(238, 229, 217, 0.84)),
    url("assets/graphics/skutari-map-bg.svg"),
    radial-gradient(circle at top left, rgba(127, 146, 127, 0.18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(231, 203, 159, 0.22), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #eee5d9 100%);
  background-size: auto, 120% auto, auto, auto, auto;
  background-position: center, center top, top left, 88% 8%, center;
  background-attachment: fixed, fixed, scroll, scroll, scroll;
  letter-spacing: 0.01em;
}

img {
  display: block;
  width: 100%;
  color: transparent;
  font-size: 0;
}

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

.site-header,
.section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
}

.brand-mark {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(50, 71, 59, 0.22);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  padding: 10px 0 24px;
}

.hero-media,
.tour-card {
  position: relative;
}

.hero-media::after,
.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 18, 16, 0.02), rgba(14, 18, 16, 0.16));
}

.hero-media img,
.tour-card img {
  height: 100%;
  object-fit: cover;
  background:
    radial-gradient(circle at top left, rgba(127, 146, 127, 0.24), transparent 34%),
    linear-gradient(135deg, #d8d2c6 0%, #efe8db 100%);
}

.hero-media {
  min-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top left, rgba(127, 146, 127, 0.24), transparent 34%),
    linear-gradient(135deg, #d8d2c6 0%, #efe8db 100%);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 38px;
  padding: clamp(30px, 4vw, 50px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3,
.brand-mark {
  font-family: "TildaSans", Arial, sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.95rem, 4.7vw, 4.9rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.68rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-lead,
.hero-subline,
.section-heading p,
.intro-section p,
.custom-day p,
.guide-copy p,
.faq-list p,
.booking-section p,
.tour-body p,
.site-footer {
  line-height: 1.75;
}

.hero-lead {
  margin: 0;
  font-size: 1.08rem;
  max-width: 28ch;
  font-weight: 600;
}

.hero-subline {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.primary-button,
.ghost-button,
.tour-link,
.booking-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.primary-button,
.booking-form button {
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.42);
}

.tour-link {
  width: fit-content;
  background: var(--accent-wash);
}

.primary-button:hover,
.ghost-button:hover,
.tour-link:hover,
.booking-form button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.signal-row,
.tour-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signal-row {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.signal-row li::before,
.tour-meta li::before {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.section {
  padding: 68px 0 24px;
}

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

.section-heading p:last-child {
  color: var(--muted);
}

.intro-grid,
.trust-grid,
.custom-day-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-tile,
.point-card,
.trust-card,
.booking-form,
.contact-strip {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.info-tile,
.point-card,
.trust-card {
  padding: 22px;
}

.info-tile p,
.point-card span,
.trust-card span {
  color: var(--muted);
}

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

.tour-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-body {
  display: grid;
  gap: 14px;
  padding: 24px 22px 22px;
}

.tour-kicker,
.tour-price {
  margin: 0;
  font-weight: 700;
}

.tour-kicker {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.tour-body p {
  margin: 0;
}

.tour-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.chooser-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.chooser-form,
.chooser-result {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.chooser-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.chooser-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.chooser-form legend {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1rem;
}

.chooser-form label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(38, 33, 28, 0.08);
}

.chooser-form input[type="radio"] {
  margin-top: 0.18rem;
  accent-color: var(--accent);
}

.chooser-result {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.chooser-result h3,
.chooser-result p,
.chooser-list {
  margin: 0;
}

.chooser-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.chooser-list li::before {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.custom-day {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.custom-day-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top left, rgba(127, 146, 127, 0.24), transparent 34%),
    linear-gradient(135deg, #d8d2c6 0%, #efe8db 100%);
}

.custom-day-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 18, 16, 0.04), rgba(14, 18, 16, 0.18));
}

.custom-day-visual img {
  height: 100%;
  object-fit: cover;
}

.custom-day-points {
  grid-column: 1 / -1;
}

.guide-layout {
  display: grid;
  grid-template-columns: 0.78fr 0.9fr 1.02fr;
  gap: 22px;
}

.guide-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top left, rgba(127, 146, 127, 0.24), transparent 34%),
    linear-gradient(135deg, #d8d2c6 0%, #efe8db 100%);
}

.guide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 16, 14, 0.02), rgba(12, 16, 14, 0.22));
}

.guide-media img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.process-grid li::before {
  counter-increment: steps;
  content: "0" counter(steps);
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sand);
}

.process-grid span,
.faq-list p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

.booking-form textarea {
  resize: vertical;
}

.full-span,
.booking-form button {
  grid-column: 1 / -1;
}

.booking-form button {
  margin-top: 4px;
}

.hidden-field {
  display: none;
}

.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
}

.contact-strip p {
  margin: 0;
}

.contact-strip a {
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #1fa855;
  color: var(--white);
  box-shadow: 0 20px 42px rgba(31, 168, 85, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 48px rgba(31, 168, 85, 0.4);
  background: #17944a;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.site-footer {
  padding: 46px 0 60px;
  color: var(--muted);
}

.site-footer p {
  margin: 0 0 8px;
}

@media (max-width: 1024px) {
  .hero,
  .chooser-layout,
  .custom-day,
  .guide-layout,
  .tour-grid,
  .intro-grid,
  .trust-grid,
  .custom-day-points,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  h1 {
    max-width: 100%;
  }

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

  .guide-media {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header,
  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .hero-actions {
    width: 100%;
  }

  .site-nav {
    gap: 12px 16px;
    font-size: 0.92rem;
  }

  .brand-mark {
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .hero {
    gap: 18px;
    padding-top: 4px;
  }

  .hero-media {
    min-height: 300px;
    border-radius: 28px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .full-span,
  .booking-form button {
    grid-column: auto;
  }

  .hero-copy {
    padding: 26px 22px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button,
  .chooser-result .primary-button,
  .tour-link {
    width: 100%;
  }

  .tour-card {
    grid-template-rows: 240px 1fr;
    border-radius: 28px;
  }

  .chooser-form,
  .chooser-result,
  .info-tile,
  .guide-media,
  .point-card,
  .trust-card,
  .process-grid li,
  .faq-list details,
  .booking-form,
  .contact-strip {
    border-radius: 24px;
  }

  .chooser-form,
  .chooser-result,
  .booking-form {
    padding: 20px;
  }

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

  .contact-strip {
    padding: 18px;
  }

  .contact-strip a {
    overflow-wrap: anywhere;
  }

  .guide-media {
    min-height: 360px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }
}
