/* Cleaned CSS: duplicate selector blocks and repeated declarations removed. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 18px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.section-tight {
  padding: 64px 0;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--color-muted);
}

.lead {
  max-width: 730px;
  margin-top: 18px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: #5a4a40;
}

.section-header {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.btn:focus-visible, .nav-toggle:focus-visible, input:focus, select:focus, textarea:focus, .faq-button:focus-visible {
  outline: 3px solid rgba(200, 149, 54, 0.42);
  outline-offset: 3px;
}

.btn-soft {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  border-bottom: 1px solid rgba(234, 222, 209, 0.86);
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 18px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), #b45d3d);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-small);
}

.brand-name {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.brand-name strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-name span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4f4038;
  font-size: 0.91rem;
  font-weight: 750;
}

.nav {
  font-weight: 900;
  color: #000;
  font-size: 0.9rem;
}

.desktop-nav a {
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.desktop-nav a:hover {
  color: var(--color-primary);
  border-color: rgba(122, 46, 34, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-trust);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-toggle, .mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 64px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-primary);
  transition: transform var(--ease), opacity var(--ease);
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--color-border);
  background: #fffaf3;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu .container {
  display: grid;
  gap: 8px;
  padding-block: 14px 20px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #4f4038;
  font-weight: 800;
}

.mobile-menu a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 480px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 74px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex-basis: 38px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .brand-name strong {
    font-size: 0.95rem;
  }

  .brand-name span {
    display: none;
  }

  .nav-toggle, .mobile-menu-button {
    min-width: 60px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.88rem;
  }
}

.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 46, 34, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(122, 46, 34, 0.15), rgba(200, 149, 54, 0.16)),
        url("data:image/svg+xml,%3Csvg width='900' height='700' viewBox='0 0 900 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237A2E22' stroke-opacity='.13'%3E%3Cpath d='M95 538c94-133 178-199 251-198 93 1 145 101 242 81 73-15 121-92 196-154' stroke-width='3'/%3E%3Cpath d='M115 187c93 56 163 77 210 64 69-20 85-94 156-103 85-10 149 80 276 42' stroke-width='2'/%3E%3Ccircle cx='218' cy='246' r='62'/%3E%3Ccircle cx='662' cy='214' r='82'/%3E%3Cpath d='M401 576h248M151 600h152M641 559h87' stroke-width='3'/%3E%3C/g%3E%3Ctext x='50%25' y='49%25' dominant-baseline='middle' text-anchor='middle' fill='%237A2E22' fill-opacity='.56' font-family='Arial' font-size='28' font-weight='700'%3EImage Placeholder%3C/text%3E%3Ctext x='50%25' y='55%25' dominant-baseline='middle' text-anchor='middle' fill='%235f4d45' fill-opacity='.72' font-family='Arial' font-size='16'%3ETraveller with guide / Delhi • Agra • Jaipur%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

label {
  color: #4f4038;
  font-size: 0.82rem;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  color: var(--color-text);
  padding: 12px 13px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(122, 46, 34, 0.55);
  box-shadow: 0 0 0 4px rgba(122, 46, 34, 0.07);
}

.founder {
  background: var(--color-cream);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.portrait-placeholder {
  min-height: 450px;
  background: linear-gradient(140deg, rgba(122, 46, 34, 0.14), rgba(247, 239, 229, 0.72)),
        url("data:image/svg+xml,%3Csvg width='700' height='700' viewBox='0 0 700 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237A2E22' stroke-opacity='.14'%3E%3Ccircle cx='350' cy='247' r='88' stroke-width='4'/%3E%3Cpath d='M205 578c33-109 82-165 145-165s112 56 145 165' stroke-width='4'/%3E%3Cpath d='M130 133h440v434H130z' stroke-width='2'/%3E%3C/g%3E%3Ctext x='50%25' y='75%25' dominant-baseline='middle' text-anchor='middle' fill='%237A2E22' fill-opacity='.55' font-family='Arial' font-size='20' font-weight='700'%3EFounder Photo Placeholder%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.note-card {
  margin-top: 24px;
  padding: 22px;
  border-left: 5px solid var(--color-gold);
  border-radius: 18px;
  background: var(--color-secondary);
}

.note-card strong {
  display: block;
  margin-top: 12px;
  color: var(--color-primary);
}

.route {
  background: linear-gradient(180deg, var(--color-secondary), var(--color-cream));
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.route-map::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-trust));
  opacity: 0.22;
}

.route-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-small);
}



.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: var(--shadow-small);
}

.card .icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 16px;
  background: var(--color-soft);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.2rem;
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.safety {
  background: linear-gradient(rgba(105, 115, 76, 0.07), rgba(105, 115, 76, 0.07)),
        var(--color-cream);
}

.safety-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(105, 115, 76, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.assurance {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(105, 115, 76, 0.12);
}

.assurance span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-trust-soft);
  color: var(--color-trust);
  font-weight: 900;
}

.assurance strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.festival {
  background: radial-gradient(circle at 20% 0%, rgba(200, 149, 54, 0.16), transparent 26%),
        linear-gradient(180deg, #fffaf3, #fff3df);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid rgba(200, 149, 54, 0.25);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.experience-image {
  min-height: 230px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.holi-placeholder {
  background: radial-gradient(circle at 20% 30%, rgba(234, 91, 86, 0.35), transparent 18%),
        radial-gradient(circle at 80% 24%, rgba(86, 150, 214, 0.24), transparent 20%),
        radial-gradient(circle at 52% 76%, rgba(248, 202, 78, 0.34), transparent 24%),
        linear-gradient(135deg, #fff5eb, #f9dfd5);
}

.kite-placeholder {
  background: linear-gradient(135deg, rgba(122, 46, 34, 0.08), rgba(200, 149, 54, 0.24)),
        url("data:image/svg+xml,%3Csvg width='900' height='420' viewBox='0 0 900 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237A2E22' stroke-opacity='.25' stroke-width='3'%3E%3Cpath d='M191 112l74-58 64 74-76 54zM660 93l86 67-62 80-88-66zM427 88l64 42-42 64-69-41z'/%3E%3Cpath d='M253 182c-22 58-33 112-34 162M683 239c-19 53-30 96-33 130M449 193c-13 35-22 72-24 111'/%3E%3C/g%3E%3Ctext x='50%25' y='83%25' text-anchor='middle' fill='%237A2E22' fill-opacity='.55' font-family='Arial' font-size='20' font-weight='700'%3EJaipur Kite Festival Image Placeholder%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.experience-body {
  padding: 26px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--color-gold-soft);
  color: #705021;
  font-size: 0.82rem;
  font-weight: 900;
}

.why {
  background: var(--color-cream);
}

.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-card {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.trips {
  background: var(--color-secondary);
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trip-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-small);
}

.trip-card small {
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process {
  background: var(--color-cream);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-small);
  counter-increment: steps;
}

.step-card::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
}

.testimonials {
  background: linear-gradient(rgba(122, 46, 34, 0.04), rgba(122, 46, 34, 0.04)),
        var(--color-cream);
}

.testimonial-card {
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.quote {
  margin-bottom: 16px;
  color: #4b3c34;
  font-size: 1.02rem;
  font-weight: 650;
}

.quote::before {
  content: "“";
  color: var(--color-gold);
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 0;
  vertical-align: -0.34em;
}

.testimonial-meta {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.faq {
  background: #fffaf3;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-button span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: var(--color-primary);
  transition: transform var(--ease);
}

.faq-item.is-open .faq-button span {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.is-open .faq-content {
  display: block;
}

.final-cta {
  padding: 92px 0;
  background: radial-gradient(circle at 12% 25%, rgba(200, 149, 54, 0.16), transparent 26%),
        linear-gradient(135deg, var(--color-primary), #934131);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  max-width: 800px;
  margin-inline: auto;
  color: #fff;
}

.final-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer p, .site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -8px 24px rgba(75, 42, 30, 0.08);
}

.sticky-mobile-cta .inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 8px;
}

.sticky-mobile-cta a {
  min-height: 44px;
  padding: 10px 8px;
  font-size: 0.82rem;
}

.blog-meta, .blog-meta-row {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  font-weight: 750;
}

.blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-gold);
}

.blog-card-image-wrap {
  display: block;
  margin: -26px -26px 18px;
}

.blog-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.blog-detail-article, .blog-detail-sidebar .card, .blog-detail-sidebar .summary-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.blog-detail-article {
  overflow: hidden;
}

.blog-detail-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.blog-content {
  padding: 34px;
}

.blog-content h2, .blog-content h3, .blog-content h4 {
  margin-top: 1.4em;
  margin-bottom: 0.55em;
}

.blog-content h2:first-child, .blog-content h3:first-child, .blog-content h4:first-child {
  margin-top: 0;
}

.blog-content ul, .blog-content ol {
  color: var(--color-muted);
  padding-left: 1.4rem;
}

.blog-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.blog-detail-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.blog-detail-sidebar .summary-box h3 {
  margin-bottom: 16px;
}

.sidebar-cta {
  padding: 24px;
}

.safety-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: radial-gradient(circle at 12% 10%, rgba(200, 149, 54, 0.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(122, 46, 34, 0.10), transparent 30%),
        linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
}

.safety-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.safety-hero-copy {
  max-width: 760px;
}

.safety-hero-image-wrap {
  position: relative;
}

.safety-hero-image {
  width: 100%;
  min-height: 460px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(122, 46, 34, 0.12);
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.11);
}

.safety-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.safety-feature-card {
  padding: 26px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.09);
}

.safety-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--color-trust-soft, #eef1df);
  color: var(--color-trust, #69734c);
  font-weight: 900;
}

.safety-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.safety-two-column.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.safety-detail-section {
  background: #fffaf3;
}

.safety-women-section {
  background: linear-gradient(rgba(122, 46, 34, 0.04), rgba(122, 46, 34, 0.04)),
        #fffaf3;
}

.safety-comfort-section {
  background: #f7efe5;
}

.safety-check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.safety-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-muted, #6f625a);
  font-weight: 650;
}

.safety-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-trust-soft, #eef1df);
  color: var(--color-trust, #69734c);
  font-size: 0.8rem;
  font-weight: 900;
}

.safety-info-box {
  padding: 32px;
  border: 1px solid rgba(105, 115, 76, 0.16);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.09);
}

.safety-info-box.soft {
  background: #f8e8df;
  border-color: rgba(122, 46, 34, 0.12);
}

.safety-info-box h3 {
  margin-bottom: 12px;
  color: var(--color-primary, #7a2e22);
}

.safety-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.safety-summary-card {
  padding: 26px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
}

.safety-summary-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary, #7a2e22);
}

.safety-cta-panel {
  padding: 54px 28px;
  border-radius: 30px;
  background: radial-gradient(circle at 15% 20%, rgba(200, 149, 54, 0.18), transparent 25%),
        linear-gradient(135deg, var(--color-primary, #7a2e22), #934131);
  color: #fff;
  text-align: center;
}

.safety-cta-panel h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
}

.safety-cta-panel p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.safety-cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.safety-cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.safety-faq-section {
  background: #fffaf3;
}

.subhero h1, .page-hero h1 {
  max-width: 100% !important;
}

h1 {
  max-width: 100% !important;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
}

.dynamic-section-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.dynamic-section-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.11);
}

.dynamic-section-content h2 {
  margin-bottom: 18px;
}

.dynamic-section-content .lead {
  max-width: 100%;
}

.site-footer {
  padding: 58px 0 34px;
  background: #241c18;
  color: #fff;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.25fr;
  gap: 30px;
  align-items: start;
}

.footer-brand-block .brand {
  margin-bottom: 18px;
}

.footer-brand-text, .footer-contact-intro {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-links a, .footer-legal-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover, .footer-legal-links a:hover {
  color: #fff;
}

.footer-contact-list {
  display: grid;
  gap: 13px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-contact-label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-whatsapp-btn, .footer-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-whatsapp-btn {
  background: #69734c;
  color: #fff;
}

.footer-whatsapp-btn:hover {
  background: #59633f;
  transform: translateY(-2px);
}

.footer-quote-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-quote-link:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .safety-hero {
    padding: 58px 0;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .safety-feature-grid, .safety-summary-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .safety-hero-image {
    min-height: 300px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .safety-info-box {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .safety-cta-panel {
    padding: 40px 20px;
  }

  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .footer-legal-links a {
    flex: 0 0 auto;
  }
}

.summary-card-grid, .tour-card-grid, .city-card-grid, .season-grid, .price-grid, .addon-grid {
  display: grid;
  gap: 18px;
}

.tour-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.city-card-grid, .season-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-grid {
  grid-template-columns: repeat(2, 1fr);
}

.addon-grid {
  grid-template-columns: repeat(4, 1fr);
}

.summary-card, .tour-card, .city-card, .season-card, .price-card, .addon-card, .route-step {
  padding: 24px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
}

.summary-card span, .city-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary, #7a2e22);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-card strong, .price-card strong {
  display: block;
  color: var(--color-text, #241c18);
  line-height: 1.35;
}

.route-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-border, #eaded1);
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.11);
}

.trust-points {
  display: grid;
  gap: 12px;
}

.trust-point {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #eef1df;
}

.trust-point span {
  color: #69734c;
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border, #eaded1);
  font-weight: 800;
}

.tour-hero {
  border-bottom: 1px solid var(--color-border, #eaded1);
}

.soft-section {
  background: linear-gradient(180deg, #f7efe5, #fffaf3);
}

.trust-section {
  background: linear-gradient(rgba(105, 115, 76, 0.07), rgba(105, 115, 76, 0.07)),
    #fffaf3;
}

.narrow-container {
  max-width: 920px;
}

.summary-card-grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 18px;
}

.summary-card {
  padding: 24px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
}

.summary-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary, #7a2e22);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-card strong {
  display: block;
  color: var(--color-text, #241c18);
  line-height: 1.35;
}

.itinerary-day-list {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.itinerary-day-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
}

.itinerary-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-primary, #7a2e22);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.itinerary-city {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-primary, #7a2e22);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.itinerary-day-card h3 {
  margin: 0 0 10px;
  color: var(--color-text, #241c18);
  font-size: 1.28rem;
}

.itinerary-day-card p {
  margin: 0;
  color: var(--color-muted, #6f625a);
  line-height: 1.7;
}

.itinerary-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.itinerary-notes span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f7efe5;
  color: #4f4038;
  font-size: 0.85rem;
  font-weight: 700;
}

.package-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.package-detail-card {
  padding: 26px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
}

.package-detail-card h3 {
  margin-bottom: 12px;
  margin: 0 0 12px;
}

.package-detail-card p {
  color: var(--color-muted, #6f625a);
}

.package-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.package-detail-card li {
  color: #4f4038;
  line-height: 1.55;
}

.faq-item {
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(75, 42, 30, 0.055);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--color-text, #241c18);
}

.faq-item p {
  margin-top: 12px;
  color: var(--color-muted, #6f625a);
}

.quote-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.11);
}

.quote-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 14px;
  background: #fff;
  color: var(--color-text, #241c18);
  padding: 12px 13px;
}

.quote-form textarea {
  min-height: 110px;
  grid-column: span 2;
}

.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
  outline: 3px solid rgba(200, 149, 54, 0.35);
  border-color: rgba(122, 46, 34, 0.45);
}

.small-note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--color-muted, #6f625a);
}

.destination-hero {
  background: radial-gradient(circle at 10% 10%, rgba(200, 149, 54, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
}

.hero-image-card {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(122, 46, 34, 0.12);
  border-radius: 28px;
  background: #f7efe5;
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.11);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  min-height: 430px;
  object-position: center;
  display: block;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
}

.destination-card-grid, .tips-grid, .related-link-grid, .summary-card-grid {
  display: grid;
  gap: 18px;
}

.destination-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tips-grid, .summary-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.related-link-grid {
  grid-template-columns: repeat(5, 1fr);
}

.destination-card, .tip-card, .related-link-card, .summary-card {
  padding: 24px;
  border: 1px solid var(--color-border, #eaded1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
}

.destination-card span, .summary-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary, #7a2e22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.destination-card h3, .tip-card strong, .related-link-card strong, .summary-card strong {
  display: block;
  color: var(--color-text, #241c18);
  line-height: 1.35;
}

.related-link-card span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted, #6f625a);
  font-size: 0.92rem;
  line-height: 1.55;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .desktop-nav, .header-actions .whatsapp-link, .header-actions .btn {
    display: block;
  }

  .desktop-nav, .header-actions .whatsapp-link {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .safety-hero-grid, .safety-two-column, .safety-two-column.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid, .destination-card-grid, .tips-grid, .summary-card-grid, .related-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .safety-feature-grid, .safety-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact {
    grid-column: span 2;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 78px);
  }

  .hero-grid, .founder-grid, .safety-panel {
    grid-template-columns: 1fr;
  }

  .safety-hero-image {
    min-height: 360px;
  }

  .brand-name {
    overflow: hidden;
  }

  .hero-visual {
    min-height: auto;
  }

  .brand-name strong, .brand-name span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-image {
    height: 420px;
  }

  .nav-toggle, .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .trip-grid, .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-actions {
    flex: 0 0 auto;
  }
}

:root {
  --color-primary: #7a2e22;
  --color-primary-dark: #5f2119;
  --color-primary-soft: #f5ded7;
  --color-secondary: #f7efe5;
  --color-cream: #fffaf3;
  --color-card: #ffffff;
  --color-text: #241c18;
  --color-muted: #6f625a;
  --color-soft: #f8e8df;
  --color-gold: #c89536;
  --color-gold-soft: #fff1d4;
  --color-trust: #69734c;
  --color-trust-soft: #eef1df;
  --color-border: #eaded1;
  --shadow-soft: 0 18px 50px rgba(75, 42, 30, 0.11);
  --shadow-small: 0 10px 28px rgba(75, 42, 30, 0.09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --header-height: 78px;
  --ease: 220ms ease;
  --abish-primary: #7a2e22;
  --abish-primary-dark: #5f2119;
  --abish-gold: #c89536;
  --abish-cream: #fffaf3;
  --abish-soft: #f7efe5;
  --abish-border: #eaded1;
  --abish-text: #241c18;
  --abish-muted: #6f625a;
  --abish-trust: #69734c;
  --abish-white: #ffffff;
  --abish-radius-lg: 22px;
  --abish-radius-xl: 30px;
  --abish-shadow: 0 16px 44px rgba(75, 42, 30, 0.1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background: radial-gradient(circle at 12% 20%, rgba(200, 149, 54, 0.16), transparent 28%),
        linear-gradient(180deg, var(--abish-cream), var(--abish-soft));
}

.page-hero .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--abish-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--abish-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(122, 46, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--abish-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--abish-gold);
  box-shadow: 0 0 0 5px rgba(200, 149, 54, 0.14);
}

.section {
  padding: 33px 0;
  background: var(--abish-cream);
}

.section-soft {
  background: var(--abish-soft);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-grid, .two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.page-hero img, .tour-card img {
  width: 100%;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  border-radius: var(--abish-radius-xl);
  box-shadow: var(--abish-shadow);
  background: var(--abish-soft);
}

.btn-secondary {
  border-color: rgba(122, 46, 34, 0.22);
  background: var(--abish-white);
  color: var(--abish-primary);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.tour-card {
  overflow: hidden;
  border: 1px solid var(--abish-border);
  border-radius: var(--abish-radius-xl);
  background: var(--abish-white);
  box-shadow: var(--abish-shadow);
}

.tour-card img {
  border-radius: 0;
  box-shadow: none;
}

.tour-card-body {
  padding: 28px;
}

.tour-card h2, .section h2, .cta-card h2 {
  margin: 0;
  color: var(--abish-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.tour-card h2 {
  font-size: 1.65rem;
}

.tour-card p, .section p, .cta-card p, .summary-box p, .plan-item p, .faq-list p {
  color: var(--abish-muted);
  line-height: 1.7;
}

.tour-card p {
  margin: 14px 0 0;
}

.highlight-list, .check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li, .check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--abish-text);
  font-weight: 650;
}

.highlight-list li::before, .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(105, 115, 76, 0.12);
  color: var(--abish-trust);
  font-size: 0.75rem;
  font-weight: 900;
}

.summary-box {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--abish-border);
  border-radius: var(--abish-radius-lg);
  background: var(--abish-white);
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

.summary-box p {
  margin: 0;
}

.summary-box p + p {
  margin-top: 8px;
}

.plan-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.plan-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--abish-border);
  border-radius: var(--abish-radius-lg);
  background: var(--abish-white);
}

.plan-item strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--abish-primary);
  color: var(--abish-white);
  font-weight: 900;
}

.plan-item p {
  margin: 0;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--abish-gold);
  border-radius: 12px;
  background: #fff7e8;
  font-size: 0.95rem;
}

.cta-card {
  padding: 34px;
  border: 1px solid rgba(122, 46, 34, 0.16);
  border-radius: var(--abish-radius-xl);
  background: radial-gradient(circle at 92% 0%, rgba(200, 149, 54, 0.14), transparent 34%),
        var(--abish-white);
  box-shadow: var(--abish-shadow);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-inline: auto;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--abish-border);
  border-radius: 18px;
  background: var(--abish-white);
  box-shadow: 0 8px 22px rgba(75, 42, 30, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--abish-text);
  font-weight: 850;
}

.faq-list details[open] summary {
  color: var(--abish-primary);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.content-card, .disclaimer-card, .developer-note {
  padding: 30px;
  border: 1px solid #eaded1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

.disclaimer-card {
  border-color: rgba(122, 46, 34, 0.24);
  background: #fff7f3;
}

.simple-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin-top: 18px;
}

.simple-list li {
  color: #241c18;
  line-height: 1.65;
}

.important-note {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 5px solid #c89536;
  border-radius: 16px;
  background: #fff7eb;
  color: #4f4038;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  padding: 22px;
  border: 1px solid #eaded1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #7a2e22;
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 1000px) {
  .summary-card-grid, .tour-card-grid, .city-card-grid, .season-grid, .price-grid, .addon-grid, .route-timeline, .trust-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-card-grid, .package-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image-card, .hero-image-card img {
    min-height: 360px;
  }
}

.category-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-card, .blog-card, .content-card, .developer-note {
  display: block;
  padding: 24px;
  border: 1px solid #eaded1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

.category-card h3, .blog-card h3 {
  margin: 0;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-category {
  display: inline-flex;
  margin-bottom: 10px;
  color: #7a2e22;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.developer-note {
  border-left: 5px solid #c89536;
  padding: 26px;
  border-radius: 22px;
  background: #fff7eb;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .category-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
}

.thank-you-hero {
  position: relative;
  padding: 110px 0 90px;
  background: radial-gradient(circle at top left, rgba(200, 149, 54, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(122, 46, 34, 0.12), transparent 35%),
        linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
  text-align: center;
  overflow: hidden;
}

.thank-you-hero::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #eef1df;
  box-shadow: 0 14px 35px rgba(105, 115, 76, 0.18);
}

.thank-you-hero::after {
  content: "✓";
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  color: #69734c;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.thank-you-hero .container {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.thank-you-hero h1 {
  margin: 0 auto;
  padding-top: 72px;
  max-width: 780px;
  color: #241c18;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.thank-you-hero p {
  margin: 22px auto 0;
  max-width: 680px;
  color: #5a4a40;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.thank-you-hero .btn {
  margin-top: 30px;
}

.thank-you-section, .thank-you-links, .thank-you-final-cta {
  padding: 76px 0;
}

.thank-you-section {
  background: #fffaf3;
  text-align: center;
}

.thank-you-section .container {
  max-width: 820px;
}

.thank-you-section h2, .thank-you-links h2, .thank-you-final-cta h2 {
  margin: 0;
  color: #241c18;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.thank-you-section p, .thank-you-links p, .thank-you-final-cta p {
  margin: 18px auto 0;
  max-width: 720px;
  color: #6f625a;
  font-size: 1.03rem;
  line-height: 1.75;
}

.thank-you-links {
  background: linear-gradient(180deg, #f7efe5 0%, #fffaf3 100%);
  text-align: center;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 24px;
  border: 1px solid #eaded1;
  border-radius: 22px;
  background: #ffffff;
  color: #7a2e22;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
  transition: transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 46, 34, 0.28);
  background: #fff7ef;
  box-shadow: 0 18px 42px rgba(75, 42, 30, 0.12);
}

.link-card:focus-visible {
  outline: 3px solid rgba(200, 149, 54, 0.42);
  outline-offset: 4px;
}

.thank-you-final-cta {
  background: radial-gradient(circle at 15% 25%, rgba(200, 149, 54, 0.18), transparent 30%),
        linear-gradient(135deg, #7a2e22 0%, #934131 100%);
  color: #ffffff;
  text-align: center;
}

.thank-you-final-cta .container {
  max-width: 840px;
}

.thank-you-final-cta h2 {
  color: #ffffff;
}

.thank-you-final-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.thank-you-final-cta .btn {
  margin-top: 30px;
  background: #ffffff;
  color: #7a2e22;
  border-color: #ffffff;
}

.thank-you-final-cta .btn:hover {
  background: #fff1d4;
  border-color: #fff1d4;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 58px 0 62px;
  }

  .thank-you-hero {
    padding: 88px 0 70px;
  }

  .hero-grid, .two-column, .tour-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-section, .thank-you-links, .thank-you-final-cta {
    padding: 62px 0;
  }


  .link-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .tour-card-body, .cta-card {
    padding: 24px;
  }

  .link-card {
    min-height: 96px;
  }

  .btn {
    width: 100%;
  }
}

.lead-hero {
  position: relative;
  padding: 105px 0 88px;
  background: radial-gradient(circle at 12% 12%, rgba(200, 149, 54, 0.18), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(122, 46, 34, 0.12), transparent 34%),
        linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
  text-align: center;
  overflow: hidden;
}

.lead-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(245, 222, 215, 0.65);
}

.lead-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.lead-hero h1 {
  margin: 0 auto;
  max-width: 820px;
  color: #241c18;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lead-hero p {
  margin: 22px auto 0;
  max-width: 720px;
  color: #5a4a40;
  font-size: clamp(1.03rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.lead-hero .btn {
  margin-top: 30px;
}

.lead-section {
  padding: 74px 0;
  background: #fffaf3;
  text-align: center;
}

.lead-section:nth-of-type(even) {
  background: #f7efe5;
}

.lead-section .container {
  max-width: 920px;
}

.lead-section h2, .lead-form-section h2, .lead-faq-section h2, .lead-final-cta h2 {
  margin: 0;
  color: #241c18;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead-section p, .lead-form-section p, .lead-faq-section p, .lead-final-cta p {
  margin: 18px auto 0;
  max-width: 760px;
  color: #6f625a;
  font-size: 1.03rem;
  line-height: 1.75;
}

.lead-reassurance {
  background: linear-gradient(rgba(105, 115, 76, 0.08), rgba(105, 115, 76, 0.08)),
        #fffaf3;
}

.lead-reassurance .container {
  padding: 42px 34px;
  border: 1px solid rgba(105, 115, 76, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.09);
}

.lead-reassurance h2::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef1df;
  color: #69734c;
  font-family: Inter, system-ui, sans-serif;
  font-size: 25px;
  font-weight: 900;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.interest-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 22px 18px;
  border: 1px solid #eaded1;
  border-radius: 20px;
  background: #ffffff;
  color: #7a2e22;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.08);
  transition: transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.interest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 46, 34, 0.28);
  background: #fff7ef;
  box-shadow: 0 18px 42px rgba(75, 42, 30, 0.12);
}

.admin-note {
  margin: 28px auto 0;
  max-width: 680px;
  padding: 22px;
  border: 1px dashed rgba(122, 46, 34, 0.28);
  border-radius: 18px;
  background: #fff7ef;
  color: #5a4a40;
  text-align: left;
}

.admin-note strong {
  display: block;
  margin-bottom: 10px;
  color: #7a2e22;
}

.admin-note ul {
  margin: 0;
  padding-left: 20px;
}

.admin-note li {
  margin: 6px 0;
  color: #6f625a;
}

.lead-form-section {
  background: radial-gradient(circle at 12% 0%, rgba(200, 149, 54, 0.12), transparent 28%),
        linear-gradient(180deg, #f7efe5 0%, #fffaf3 100%);
}

.lead-form-section .container {
  max-width: 980px;
}

.lead-form-section h2 {
  text-align: center;
}

.lead-form {
  margin-top: 36px;
  padding: 34px;
  border: 1px solid #eaded1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(75, 42, 30, 0.11);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #4f4038;
  font-size: 0.88rem;
  font-weight: 850;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #eaded1;
  border-radius: 14px;
  background: #ffffff;
  color: #241c18;
  padding: 13px 14px;
  font-size: 0.96rem;
  line-height: 1.45;
  transition: border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(122, 46, 34, 0.55);
  box-shadow: 0 0 0 4px rgba(122, 46, 34, 0.08);
  background: #fffaf3;
}

.lead-form .btn {
  margin-top: 24px;
}

.field .error, .invalid-feedback {
  color: #9d2d20;
  font-size: 0.84rem;
  font-weight: 700;
}

.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: #9d2d20;
  box-shadow: 0 0 0 4px rgba(157, 45, 32, 0.08);
}

.lead-final-cta {
  padding: 86px 0;
  background: radial-gradient(circle at 15% 25%, rgba(200, 149, 54, 0.18), transparent 30%),
        linear-gradient(135deg, #7a2e22 0%, #934131 100%);
  color: #ffffff;
  text-align: center;
}

.lead-final-cta .container {
  max-width: 860px;
}

.lead-final-cta h2 {
  color: #ffffff;
}

.lead-final-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.lead-final-cta .btn {
  margin-top: 30px;
  background: #ffffff;
  color: #7a2e22;
  border-color: #ffffff;
}

.lead-final-cta .btn:hover {
  background: #fff1d4;
  border-color: #fff1d4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease,
        border-color 220ms ease;
  margin-top: 0px;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #7a2e22;
  color: #ffffff;
  box-shadow: 0 13px 30px rgba(122, 46, 34, 0.24);
}

.btn-primary:hover {
  background: #5f2119;
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .thank-you-hero {
    padding: 72px 0 58px;
  }

  .lead-hero {
    padding: 66px 0 54px;
  }

  .plan-item {
    grid-template-columns: 1fr;
  }

  .thank-you-hero::before {
    top: 34px;
    width: 62px;
    height: 62px;
  }

  .interest-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .thank-you-hero::after {
    top: 45px;
    font-size: 30px;
  }

  .interest-card {
    min-height: 86px;
  }

  .thank-you-hero h1 {
    padding-top: 64px;
  }

  .lead-form {
    padding: 20px;
  }

  .thank-you-hero p, .thank-you-section p, .thank-you-links p, .thank-you-final-cta p {
    font-size: 0.98rem;
  }

  .lead-form .btn, .lead-hero .btn, .lead-final-cta .btn {
    width: 100%;
  }

  .thank-you-hero .btn, .thank-you-final-cta .btn {
    width: 100%;
  }

  .field input, .field select, .field textarea {
    font-size: 16px;
  }
}

.audience-hero {
  padding: 90px 0;
  background: radial-gradient(circle at 15% 20%, rgba(200, 149, 54, 0.16), transparent 28%),
        linear-gradient(135deg, #fffaf3 0%, #f7efe5 100%);
}

.audience-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.audience-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5ded7;
  color: #7a2e22;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audience-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #241c18;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.audience-hero p {
  max-width: 720px;
  margin-top: 20px;
  color: #6f625a;
  font-size: 18px;
  line-height: 1.75;
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.audience-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.audience-btn:hover {
  transform: translateY(-2px);
}

.audience-btn-primary {
  background: #7a2e22;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(122, 46, 34, 0.22);
}

.audience-btn-secondary {
  border: 1px solid rgba(122, 46, 34, 0.25);
  background: #fffaf3;
  color: #7a2e22;
}

.audience-btn-light {
  background: #ffffff;
  color: #7a2e22;
}

.audience-summary-card {
  padding: 28px;
  border: 1px solid #eaded1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(75, 42, 30, 0.1);
}

.audience-summary-card h2 {
  margin: 0 0 20px;
  color: #241c18;
  font-size: 28px;
}

.audience-summary-list {
  display: grid;
  gap: 14px;
}

.audience-summary-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid #eaded1;
}

.audience-summary-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.audience-summary-list strong {
  display: block;
  color: #7a2e22;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-summary-list span {
  display: block;
  margin-top: 4px;
  color: #4f4038;
}

.audience-section {
  padding: 78px 0;
  background: #fffaf3;
}

.audience-section-soft {
  background: #f7efe5;
}

.audience-section-tight {
  padding-top: 48px;
}

.audience-section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.audience-section-header h2, .audience-content-box h2, .audience-final-cta h2 {
  margin: 0;
  color: #241c18;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.audience-section-header p, .audience-content-box p {
  margin-top: 14px;
  color: #6f625a;
  font-size: 17px;
  line-height: 1.75;
}

.audience-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card, .audience-support-item, .audience-link-card, .audience-faq-item {
  border: 1px solid #eaded1;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(75, 42, 30, 0.07);
}

.audience-card {
  padding: 22px;
}

.audience-card span, .audience-support-item span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #eef1df;
  color: #69734c;
  font-weight: 900;
}

.audience-card p {
  margin: 0;
  color: #4f4038;
  font-weight: 700;
  line-height: 1.55;
}

.audience-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-support-item {
  padding: 20px;
}

.audience-support-item strong {
  display: block;
  color: #241c18;
  font-size: 16px;
}

.audience-content-box {
  max-width: 900px;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(75, 42, 30, 0.08);
}

.audience-content-box-bordered {
  border-left: 6px solid #c89536;
}

.audience-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 20px;
  color: #7a2e22;
  font-weight: 800;
  text-decoration: none;
}

.audience-link-card span {
  font-size: 22px;
}

.audience-faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.audience-faq-item {
  padding: 0;
  overflow: hidden;
}

.audience-faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #241c18;
  font-weight: 900;
  list-style: none;
}

.audience-faq-item summary::-webkit-details-marker {
  display: none;
}

.audience-faq-item summary::after {
  content: "+";
  float: right;
  color: #7a2e22;
  font-size: 22px;
}

.audience-faq-item[open] summary::after {
  content: "−";
}

.audience-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #6f625a;
  line-height: 1.7;
}

.audience-final-cta {
  padding: 88px 0;
  background: radial-gradient(circle at 12% 25%, rgba(200, 149, 54, 0.18), transparent 26%),
        linear-gradient(135deg, #7a2e22, #934131);
  color: #ffffff;
  text-align: center;
}

.audience-final-cta h2 {
  color: #ffffff;
}

.audience-final-cta p {
  max-width: 760px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.festival-hero {
  padding: 96px 0 88px;
  background: radial-gradient(circle at 15% 15%, rgba(200, 149, 54, 0.18), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(122, 46, 34, 0.12), transparent 34%),
        linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
  text-align: center;
}

.festival-hero .container {
  max-width: 920px;
}

.festival-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5ded7;
  color: #7a2e22;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.festival-hero h1 {
  margin: 0;
  color: #241c18;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.festival-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #5a4a40;
  font-size: 18px;
  line-height: 1.78;
}

.festival-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.festival-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: 0.22s ease;
}

.festival-btn:hover {
  transform: translateY(-2px);
}

.festival-btn-primary {
  background: #7a2e22;
  color: #ffffff;
  box-shadow: 0 13px 30px rgba(122, 46, 34, 0.24);
}

.festival-btn-secondary {
  border: 1px solid rgba(122, 46, 34, 0.25);
  background: #fffaf3;
  color: #7a2e22;
}

.festival-btn-light {
  background: #ffffff;
  color: #7a2e22;
}

.festival-section {
  padding: 78px 0;
  background: #fffaf3;
}

.festival-section-soft {
  background: #f7efe5;
}

.festival-section-safety {
  background: linear-gradient(rgba(105, 115, 76, 0.08), rgba(105, 115, 76, 0.08)),
        #fffaf3;
}

.festival-section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.festival-section-header h2, .festival-content-box h2, .festival-summary-card h2, .festival-note h2, .festival-final-cta h2 {
  margin: 0;
  color: #241c18;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.festival-section-header p, .festival-content-box p, .festival-summary-card p, .festival-note p {
  margin-top: 16px;
  color: #6f625a;
  font-size: 17px;
  line-height: 1.75;
}

.festival-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.festival-card {
  padding: 28px;
  border: 1px solid #eaded1;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(75, 42, 30, 0.09);
}

.festival-card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff1d4;
  color: #705021;
  font-size: 13px;
  font-weight: 900;
}

.festival-card h3 {
  margin: 0;
  color: #241c18;
  font-size: 24px;
  line-height: 1.2;
}

.festival-card p {
  margin-top: 12px;
  color: #6f625a;
  line-height: 1.7;
}

.festival-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #6f625a;
}

.festival-card li {
  margin: 8px 0;
}

.festival-link {
  display: inline-flex;
  margin-top: 20px;
  color: #7a2e22;
  font-weight: 900;
  text-decoration: none;
}

.festival-content-box, .festival-summary-card, .festival-note {
  max-width: 920px;
  padding: 34px;
  border: 1px solid #eaded1;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(75, 42, 30, 0.08);
}

.festival-safety-box {
  border-left: 6px solid #69734c;
}

.festival-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.festival-summary-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #fffaf3;
  border: 1px solid #eaded1;
}

.festival-summary-grid strong {
  display: block;
  color: #7a2e22;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.festival-summary-grid span {
  display: block;
  margin-top: 6px;
  color: #4f4038;
  line-height: 1.5;
}

.festival-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.festival-check-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid #eaded1;
  border-radius: 18px;
  background: #ffffff;
  color: #4f4038;
  font-weight: 800;
}

.festival-check-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef1df;
  color: #69734c;
  font-weight: 900;
}

.festival-faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.festival-faq-item {
  border: 1px solid #eaded1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(75, 42, 30, 0.06);
  overflow: hidden;
}

.festival-faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #241c18;
  font-weight: 900;
  list-style: none;
}

.festival-faq-item summary::-webkit-details-marker {
  display: none;
}

.festival-faq-item summary::after {
  content: "+";
  float: right;
  color: #7a2e22;
  font-size: 22px;
}

.festival-faq-item[open] summary::after {
  content: "−";
}

.festival-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #6f625a;
  line-height: 1.7;
}

.festival-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.festival-testimonial {
  padding: 24px;
  border: 1px solid #eaded1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

.festival-testimonial p {
  margin: 0;
  color: #4f4038;
  font-weight: 650;
  line-height: 1.7;
}

.festival-testimonial strong {
  display: block;
  margin-top: 16px;
  color: #7a2e22;
}

.festival-final-cta {
  padding: 88px 0;
  background: radial-gradient(circle at 15% 25%, rgba(200, 149, 54, 0.18), transparent 30%),
        linear-gradient(135deg, #7a2e22 0%, #934131 100%);
  text-align: center;
  color: #ffffff;
}

.festival-final-cta .container {
  max-width: 880px;
}

.festival-final-cta h2 {
  color: #ffffff;
}

.festival-final-cta p {
  max-width: 760px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-hero__grid, .audience-card-grid, .audience-support-grid, .audience-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .festival-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .festival-check-grid, .festival-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 9px;
}

.floating-action {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(36, 28, 24, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(36, 28, 24, 0.24);
}

.floating-action:focus-visible {
  outline: 3px solid rgba(200, 149, 54, 0.45);
  outline-offset: 3px;
}

.floating-top {
  background: linear-gradient(135deg, #241c18, #5a463d);
}

.floating-top.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
}

.floating-svg-icon {
  width: 21px;
  height: 21px;
  display: block;
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .dynamic-section-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lead-hero {
    padding: 78px 0 66px;
  }

  .floating-actions {
    right: 10px;
    bottom: 82px;
    gap: 8px;
  }

  body {
    padding-bottom: 72px;
  }

  .dynamic-section-image img {
    height: 320px;
  }

  .lead-section, .lead-form-section, .lead-faq-section, .lead-final-cta {
    padding: 62px 0;
  }

  .floating-action {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }


  .lead-form {
    padding: 24px;
    border-radius: 22px;
  }

  .section-tight {
    padding: 52px 0;
  }

  .form-grid, .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 0 62px;
  }

  .lead-reassurance .container {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-name span {
    display: none;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-actions .btn, .cta-row .btn {
    width: 100%;
  }

  .trust-line {
    display: grid;
    gap: 10px;
  }

  .quick-form {
    display: none;
  }

  .hero-image, .portrait-placeholder {
    height: 330px;
    min-height: 330px;
  }

  .floating-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .route-map, .card-grid, .experience-grid, .assurance-grid, .step-grid, .faq-grid {
    grid-template-columns: 1fr;
  }

  .route-map::before {
    display: none;
  }

  .safety-panel {
    padding: 24px;
  }

  .trip-grid, .four-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-mobile-cta {
    display: block;
  }
}

.floating-whatsapp {
  background: linear-gradient(135deg, #1fa463, #128c4a);
  --floating-accent: #25d366;
}

.floating-whatsapp, .floating-quote {
  position: relative;
  animation: floating-circle-move 3.2s ease-in-out infinite;
}

.floating-quote {
  background: linear-gradient(135deg, var(--color-primary), #b45d3d);
  --floating-accent: var(--color-primary);
  animation-delay: 0.45s;
}

.floating-whatsapp svg, .floating-quote span {
  color: #ffffff;
  animation: floating-icon-glow 3.2s ease-in-out infinite;
}

.floating-quote span {
  animation-delay: 0.45s;
}

@keyframes floating-circle-move {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    18% {
        transform: translate(2px, -2px) scale(1.04);
    }

    36% {
        transform: translate(0, -4px) scale(1.02);
    }

    54% {
        transform: translate(-2px, -2px) scale(1.04);
    }

    72% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes floating-icon-glow {
    0%, 100% {
        color: #ffffff;
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    45% {
        color: #ffffff;
        filter: drop-shadow(0 0 7px var(--floating-accent));
    }

    70% {
        color: #ffffff;
        filter: drop-shadow(0 0 11px var(--floating-accent));
    }
}

.floating-whatsapp::after, .floating-quote::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid var(--floating-accent);
  opacity: 0;
  animation: floating-ring-pulse 3.2s ease-in-out infinite;
}

.floating-quote::after {
  animation-delay: 0.45s;
}

@keyframes floating-ring-pulse {
    0%, 65%, 100% {
        transform: scale(0.9);
        opacity: 0;
    }

    20% {
        transform: scale(1);
        opacity: 0.5;
    }

    45% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.floating-whatsapp:hover, .floating-quote:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.04);
}

.floating-whatsapp:hover::after, .floating-quote:hover::after, .floating-whatsapp:hover svg, .floating-quote:hover span {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .floating-whatsapp, .floating-quote, .floating-whatsapp::after, .floating-quote::after, .floating-whatsapp svg, .floating-quote span {
    animation: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 68px;
  background: radial-gradient(circle at 8% 10%, rgba(200, 149, 54, 0.13), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(122, 46, 34, 0.08), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 500px;
  height: 500px;
  border-radius: 999px;
  background: rgba(245, 222, 215, 0.55);
  filter: blur(6px);
  right: -180px;
  bottom: -260px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.84fr);
  gap: 50px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.hero .eyebrow {
  margin-bottom: 15px;
}

.hero h1 {
  max-width: 690px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.35vw, 4.15rem);
  line-height: 1.09;
  letter-spacing: -0.026em;
  color: var(--color-text);
}

.hero .lead {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.28vw, 1.14rem);
  line-height: 1.72;
  color: #5a4a40;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-height: 50px;
  padding: 13px 22px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 24px;
  color: #58483e;
  font-size: 0.92rem;
  font-weight: 780;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--color-trust-soft);
  color: var(--color-trust);
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  height: 335px;
  width: 100%;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 245px;
  padding: 15px 16px;
  border: 1px solid rgba(234, 222, 209, 0.9);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 0.96rem;
}

.floating-card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.quick-form {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(234, 222, 209, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-small);
}

.quick-form-title {
  margin-bottom: 12px;
  font-weight: 900;
  color: var(--color-text);
  font-size: 0.96rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.quick-form label {
  font-size: 0.78rem;
}

.quick-form input, .quick-form select {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 13px;
}

.quick-form .btn {
  min-height: 46px;
  margin-top: 2px;
}

.form-message {

  color: var(--color-trust);
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 4.1vw, 3.75rem);
  }

  .hero-panel {
    max-width: 470px;
  }

  .hero-image {
    height: 315px;
  }
}

@media (max-width: 980px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .category-grid, .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 48px 0 60px;
  }

  .blog-detail-sidebar {
    position: static;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-content {
    padding: 24px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(2.25rem, 6.1vw, 3.55rem);
  }

  .hero .lead {
    max-width: 680px;
  }

  .hero-panel {
    max-width: 620px;
    justify-self: start;
  }

  .hero-image {
    height: 350px;
  }
}

@media (max-width: 720px) {
  .summary-card-grid, .tour-card-grid, .city-card-grid, .season-grid, .price-grid, .addon-grid, .route-timeline, .trust-panel, .quote-form .form-grid {
    grid-template-columns: 1fr;
  }

  .package-details-grid {
    grid-template-columns: 1fr;
  }



  .hero-grid, .destination-card-grid, .tips-grid, .summary-card-grid, .related-link-grid {
    grid-template-columns: 1fr;
  }

  .audience-hero {
    padding: 58px 0;
  }

  .festival-hero {
    padding: 64px 0;
  }

  .hero {
    padding: 36px 0 50px;
  }

  .info-row {
    display: grid;
  }

  .summary-card-grid, .package-details-grid, .quote-form .form-grid {
    grid-template-columns: 1fr;
  }

  .audience-hero__grid, .audience-card-grid, .audience-support-grid, .audience-link-grid {
    grid-template-columns: 1fr;
  }

  .festival-card-grid, .festival-summary-grid, .festival-check-grid, .festival-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .itinerary-day-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .audience-actions {
    display: grid;
  }

  .festival-section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.85rem);
    line-height: 1.13;
    letter-spacing: -0.018em;
  }

  .itinerary-day-number {
    justify-content: flex-start;
    width: fit-content;
  }

  .audience-btn {
    width: 100%;
  }

  .festival-content-box, .festival-summary-card, .festival-note, .festival-card {
    padding: 24px;
    border-radius: 22px;
  }

  .hero .lead {
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .quote-form {
    padding: 20px;
  }

  .audience-section {
    padding: 56px 0;
  }

  .festival-actions {
    display: grid;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .quote-form textarea {
    grid-column: auto;
  }

  .audience-content-box, .audience-summary-card {
    padding: 24px;
    border-radius: 22px;
  }

  .festival-btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-card, .hero-image-card img {
    min-height: 300px;
  }

  .trust-line {
    display: grid;
    gap: 9px;
    margin-top: 22px;
  }

  .hero-panel {
    max-width: 440px;
    justify-self: center;
  }

  .hero-image {
    height: 300px;
    border-radius: 24px;
  }

  .floating-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px;
  }

  .quick-form {
    padding: 16px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-form input, .quick-form select {
    min-height: 45px;
  }
}

@media (max-width: 430px) {
  .hero {
    padding: 32px 0 46px;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 9.2vw, 2.35rem);
  }

  .hero .lead {
    font-size: 0.95rem;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-image {
    height: 270px;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -58px;
    margin-inline: 14px;
  }

  .quick-form {
    padding: 15px;
  }
}
.step-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
}

.step-card::before {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.step-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}

.step-card p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 14px;
}

/* Mobile refinement */
@media (max-width: 560px) {
  .step-card {
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
  }

  .step-card::before {
    width: 38px;
    height: 38px;
  }
}

.hero img, .tour-card img {
    width: 100%;
    aspect-ratio: 1402 / 1122;
    object-fit: cover;
    border-radius: var(--abish-radius-xl);
    box-shadow: var(--abish-shadow);
    background: var(--abish-soft);
}
.interest-card {
  cursor: pointer;
}

.interest-card.is-selected {
  border-color: rgba(122, 46, 34, 0.45);
  background: #fff1d4;
  color: #7a2e22;
  box-shadow: 0 16px 36px rgba(122, 46, 34, 0.14);
}

.contact-options {
    background: #fffaf3;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.contact-option-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--color-border, #eaded1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-small, 0 10px 28px rgba(75, 42, 30, 0.09));
}

.contact-option-card h3 {
    margin-bottom: 10px;
    color: var(--color-text, #241c18);
    font-size: 1.2rem;
}

.contact-option-card p {
    color: var(--color-muted, #6f625a);
}

.contact-option-card .btn,
.contact-option-card .text-link {
    align-self: flex-start;
}

.text-link {
    color: var(--color-primary, #7a2e22);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-map {
    overflow: hidden;
    margin-top: 34px;
    border: 1px solid var(--color-border, #eaded1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-small, 0 10px 28px rgba(75, 42, 30, 0.09));
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width: 1024px) {
    .contact-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-option-card {
        min-height: auto;
        padding: 22px;
    }
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 0;
    background: rgba(36, 28, 24, 0.18);
}

.cookie-modal {
    position: relative;
    width: 100%;
    max-width: none;

    padding: 18px 72px 18px 28px;
    border-top: 1px solid var(--color-border, #eaded1);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;

    background: #fffaf3;
    box-shadow: 0 -10px 35px rgba(36, 28, 24, 0.16);
}

.cookie-modal-content {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 2fr) auto;
    align-items: center;
    gap: 18px;
}

.cookie-modal-content h3 {
    margin: 0;
    color: var(--color-text, #241c18);
    font-size: 1.15rem;
    line-height: 1.2;
}

.cookie-modal-content p {
    margin: 0;
    color: var(--color-muted, #6f625a);
    font-size: 0.92rem;
    line-height: 1.5;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.cookie-modal-actions .btn {
    min-height: 42px;
    white-space: nowrap;
    padding: 11px 16px;
    font-size: 0.88rem;
}

.cookie-modal-links {
    grid-column: 2 / 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -6px !important;
    font-size: 0.82rem;
}

.cookie-modal-links a {
    color: var(--color-primary, #7a2e22);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 24px;

    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;

    background: #ffffff;
    color: var(--color-primary, #7a2e22);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 900px) {
    .cookie-modal {
        padding: 18px 56px 18px 18px;
    }

    .cookie-modal-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cookie-modal-actions {
        flex-wrap: wrap;
    }

    .cookie-modal-links {
        grid-column: auto;
        margin-top: 0 !important;
    }
}

@media (max-width: 640px) {
    .cookie-modal {
        padding: 16px;
        padding-right: 50px;
        border-radius: 16px 16px 0 0;
    }

    .cookie-modal-content h3 {
        font-size: 1.05rem;
    }

    .cookie-modal-content p {
        font-size: 0.86rem;
    }

    .cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cookie-modal-actions .btn {
        width: 100%;
    }

    .cookie-modal-close {
        top: 12px;
        right: 12px;
    }
}

.consent-checkboxes {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #eaded1;
    border-radius: 14px;
    background: #fffaf3;
    color: #241c18;
    cursor: pointer;
    line-height: 1.45;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.consent-checkbox:hover {
    border-color: rgba(122, 46, 34, 0.35);
    background: #fff6eb;
    box-shadow: 0 8px 22px rgba(75, 42, 30, 0.08);
}

.consent-checkbox input[type="checkbox"] {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: #7a2e22;
    cursor: pointer;
}

.consent-checkbox span {
    display: block;
    font-size: 0.95rem;
    color: #4f4038;
}

.consent-checkbox a {
    color: #7a2e22;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.consent-checkbox a:hover {
    color: #5f2119;
}

.consent-checkbox--optional {
    background: #ffffff;
}

.consent-checkbox:has(input:checked) {
    border-color: rgba(122, 46, 34, 0.55);
    background: #f5ded7;
}

/*New design Enquiry form*/
.lead-form {
    display: grid;
    gap: 22px;
    width: 100%;
    padding: 28px;
    border: 1px solid #eaded1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(75, 42, 30, 0.08);
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field span {
    color: #4f4038;
    font-size: 0.9rem;
    font-weight: 800;
}

.form-field span strong {
    color: #7a2e22;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid #eaded1;
    border-radius: 14px;
    background: #fffaf3;
    color: #241c18;
    font-size: 0.96rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9a8b81;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(122, 46, 34, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(122, 46, 34, 0.08);
}

.form-field select {
    cursor: pointer;
}

.consent-checkboxes {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #eaded1;
    border-radius: 14px;
    background: #fffaf3;
    color: #241c18;
    cursor: pointer;
    line-height: 1.45;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.consent-checkbox:hover {
    border-color: rgba(122, 46, 34, 0.35);
    background: #fff6eb;
    box-shadow: 0 8px 22px rgba(75, 42, 30, 0.08);
}

.consent-checkbox input[type="checkbox"] {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: #7a2e22;
    cursor: pointer;
}

.consent-checkbox span {
    display: block;
    font-size: 0.95rem;
    color: #4f4038;
}

.consent-checkbox a {
    color: #7a2e22;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.consent-checkbox a:hover {
    color: #5f2119;
}

.consent-checkbox--optional {
    background: #ffffff;
}

.consent-checkbox:has(input:checked) {
    border-color: rgba(122, 46, 34, 0.55);
    background: #f5ded7;
}

.form-errors {
    padding: 13px 15px;
    border: 1px solid rgba(180, 60, 45, 0.25);
    border-radius: 14px;
    background: #fff1ee;
    color: #8a2c20;
    font-size: 0.94rem;
    font-weight: 700;
}

.lead-form-submit {
    justify-self: start;
    min-width: 220px;
}

@media (max-width: 760px) {
    .lead-form {
        padding: 20px;
        border-radius: 20px;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lead-form-submit {
        width: 100%;
    }
}


.legal-page {
    background: #fffaf3;
}

.legal-hero {
    padding: 72px 0 48px;
    background:
        radial-gradient(circle at 10% 10%, rgba(200, 149, 54, 0.14), transparent 30%),
        linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
}

.legal-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #241c18;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.legal-hero-text {
    max-width: 760px;
    margin-top: 18px;
    color: #6f625a;
    font-size: 1.08rem;
}

.legal-content-section {
    padding: 64px 0 90px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    padding: 20px;
    border: 1px solid #eaded1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(75, 42, 30, 0.07);
}

.legal-sidebar strong {
    display: block;
    margin-bottom: 14px;
    color: #7a2e22;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-sidebar nav {
    display: grid;
    gap: 8px;
}

.legal-sidebar a {
    padding: 9px 10px;
    border-radius: 12px;
    color: #4f4038;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.legal-sidebar a:hover {
    background: #f7efe5;
    color: #7a2e22;
}

.legal-content-card {
    padding: 34px;
    border: 1px solid #eaded1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(75, 42, 30, 0.08);
}

.legal-section {
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid #eaded1;
    scroll-margin-top: 100px;
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 14px;
    color: #241c18;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.12;
}

.legal-subheading {
    margin-bottom: 14px;
    color: #7a2e22;
    font-weight: 700;
}

.legal-copy {
    color: #5f5149;
    font-size: 1rem;
    line-height: 1.75;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.legal-info-card {
    padding: 18px;
    border: 1px solid #eaded1;
    border-radius: 16px;
    background: #fffaf3;
}

.legal-info-card h3 {
    margin: 0 0 8px;
    color: #7a2e22;
    font-size: 1rem;
}

.legal-info-card p {
    margin: 0;
    color: #6f625a;
    font-size: 0.94rem;
    line-height: 1.6;
}

.legal-info-card p + p {
    margin-top: 8px;
}

.legal-faq-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.legal-faq-item {
    border: 1px solid #eaded1;
    border-radius: 16px;
    background: #fffaf3;
    overflow: hidden;
}

.legal-faq-item summary {
    padding: 16px 18px;
    cursor: pointer;
    color: #241c18;
    font-weight: 800;
}

.legal-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #6f625a;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-info-grid {
        grid-template-columns: 1fr;
    }

    .legal-content-card {
        padding: 24px;
    }
}

.cookie-preference-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 14px 0;
    padding: 14px;
    border: 1px solid #eaded1;
    border-radius: 14px;
    background: #fffaf3;
}

.cookie-preference-item strong {
    display: block;
    margin-bottom: 4px;
}

.cookie-preference-item p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-preference-item input {
    width: 22px;
    height: 22px;
    margin-top: 4px;
}

.cookie-always-active {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef1df;
    color: #69734c;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
