/* =========================================================
   Sambhajinagar.in — Heritage Travel Site
   Mobile-first, no external CDN, heritage-inspired palette
   ========================================================= */

/* ---- Reset & base ---- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ochre-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

p { margin: 0 0 1em; }

/* ---- Design tokens ---- */
:root {
  --cream:        #fbf7f0;
  --cream-2:      #f3ead7;
  --sand:         #e8dcc1;
  --ochre:        #c08a3e;
  --ochre-dark:   #8a5d1a;
  --terracotta:   #b25437;
  --teal:         #1f5e5b;
  --teal-dark:    #143f3d;
  --ink:          #2c2419;
  --ink-soft:     #5a4b35;
  --line:         #d9c9a3;
  --shadow:       0 6px 24px rgba(44, 36, 25, .08);
  --shadow-lg:    0 12px 40px rgba(44, 36, 25, .15);
  --radius:       10px;
  --maxw:         1180px;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.1rem;
}

section { padding: 3rem 0; }
@media (min-width: 768px) { section { padding: 4.5rem 0; } }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 { margin-bottom: .35rem; }
.section-title p {
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: .6rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(178, 84, 55, .35);
}
.btn-primary:hover { background: #963f24; color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--teal-dark); }
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost:hover { background: var(--teal); color: #fff; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, .95);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand:hover { text-decoration: none; color: var(--terracotta); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-name small {
  display: block;
  font-family: -apple-system, sans-serif;
  font-weight: 500;
  font-size: .68rem;
  color: var(--ink-soft);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-toggle {
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: .25rem;
}
.nav-list.is-open { display: flex; padding-bottom: 1rem; }
.nav-list a {
  display: block;
  color: var(--ink);
  font-weight: 500;
  padding: .7rem .25rem;
  border-bottom: 1px solid var(--line);
}
.nav-list a:hover, .nav-list a.active {
  color: var(--terracotta);
  text-decoration: none;
}

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .nav-list {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
  }
  .nav-list a { border: 0; padding: .4rem 0; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #2c2419;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(20, 16, 10, .55), rgba(20, 16, 10, .75)),
                    url("../images/hero-kailasa-ellora.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 4.5rem 1.2rem 3.5rem;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  margin-bottom: .8rem;
}
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f1e7d2;
  margin: 0 auto 1.8rem;
  max-width: 640px;
}
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .8rem; margin-bottom: 1.8rem;
}
.hero-stat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .88rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  overflow: hidden;
  background: #2c2419;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(20,16,10,.7), rgba(20,16,10,.45)),
                    var(--hero-img, none);
  background-size: cover;
  background-position: center;
}
/* Per-page hero image: set via <style> in each page's <head>
   e.g.  .page-hero { --hero-img: url('images/foo.webp'); }
   The <style> tag in <head> resolves urls relative to the document,
   so this works correctly with <base href> on sub-folder pages.    */
.page-hero .container { position: relative; padding-top: 3rem; padding-bottom: 3rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #f1e7d2; max-width: 640px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: .7rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  color: var(--ink-soft);
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: .55rem;
  color: var(--ink-soft);
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs li[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---- Cards / Grids ---- */
.grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 1.1rem 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .35rem; }
.card-tag {
  display: inline-block;
  background: var(--cream-2);
  color: var(--ochre-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .55rem;
}
.card-body p {
  color: var(--ink-soft);
  font-size: .95rem;
  flex: 1;
}
.card-link {
  margin-top: .8rem;
  font-weight: 600;
  color: var(--terracotta);
}
.card-link::after { content: " →"; }

/* ---- Two-column content blocks ---- */
.two-col {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 820px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col.reverse .two-col-text { order: 2; }
}
.two-col-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ---- Info bands ---- */
.band-teal { background: var(--teal-dark); color: #ecdfc7; }
.band-teal h2 { color: #fff; }
.band-teal a { color: #f5d68f; }
.band-cream { background: var(--cream-2); }
.band-sand  { background: var(--sand); }

/* ---- Lists & info boxes ---- */
.info-box {
  background: var(--cream-2);
  border-left: 4px solid var(--ochre);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin: 1.2rem 0;
}
.info-box h4 { margin: 0 0 .35rem; color: var(--ochre-dark); }
.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.checkmark-list { list-style: none; padding: 0; margin: 1rem 0; }
.checkmark-list li {
  position: relative;
  padding: .35rem 0 .35rem 1.7rem;
}
.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: .35rem;
  color: var(--teal);
  font-weight: 700;
}

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; }
table.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table th, .info-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .94rem;
  vertical-align: top;
}
.info-table th {
  background: var(--cream-2);
  font-weight: 600;
  color: var(--ink);
}

/* ---- Itinerary timeline ---- */
.itinerary {
  position: relative;
  border-left: 3px solid var(--ochre);
  margin: 1.5rem 0 1rem .8rem;
  padding-left: 1.4rem;
}
.itinerary-day {
  position: relative;
  margin-bottom: 1.4rem;
}
.itinerary-day::before {
  content: "";
  position: absolute;
  left: -1.92rem;
  top: .4rem;
  width: 14px; height: 14px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 3px solid var(--cream);
}
.itinerary-day h4 { margin-bottom: .2rem; color: var(--terracotta); }

/* ---- FAQ ---- */
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: .8rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--terracotta);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-content {
  padding: 0 1.2rem 1.1rem;
  color: var(--ink-soft);
}

/* ---- Gallery grid ---- */
.gallery {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* ---- Last updated chip ---- */
.last-updated {
  display: inline-block;
  background: var(--cream-2);
  color: var(--ink-soft);
  font-size: .78rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--teal-dark);
  color: #cdb98c;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  font-size: .92rem;
}
.site-footer h4 {
  color: #fff;
  font-family: -apple-system, sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: #d8c69a; }
.footer-grid a:hover { color: #fff; }

.footer-brand {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.footer-brand small {
  display: block;
  font-family: inherit;
  font-weight: 400;
  font-size: .85rem;
  color: #a08e62;
  margin-top: .2rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: .85rem;
  color: #a08e62;
}
.footer-bottom a { color: #f5d68f; font-weight: 600; }

.email-btn {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.3);
  color: #fff;
  padding: .55rem .95rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  transition: background .15s ease;
}
.email-btn:hover { background: rgba(255,255,255,.15); }
.email-revealed {
  display: inline-block;
  color: #f5d68f;
  font-weight: 600;
}

/* ---- Cookie notice ---- */
.cookie-notice {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: none;
  z-index: 200;
  font-size: .9rem;
  color: var(--ink-soft);
}
.cookie-notice.is-visible { display: block; animation: slideUp .35s ease; }
.cookie-notice strong { color: var(--ink); display: block; margin-bottom: .25rem; }
.cookie-notice .cookie-actions {
  display: flex; gap: .6rem; margin-top: .7rem; flex-wrap: wrap;
}
.cookie-notice button {
  background: var(--teal);
  color: #fff;
  border: 0;
  padding: .5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.cookie-notice button.secondary {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ---- Misc utilities ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Article body styling */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 2.4rem; }
.article-body h3 { margin-top: 1.8rem; }
.article-body img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.4rem 0; }
.article-body blockquote {
  border-left: 4px solid var(--ochre);
  margin: 1.5rem 0;
  padding: .3rem 1rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Author chip */
.author-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--cream-2);
  padding: .35rem .8rem .35rem .35rem;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.author-chip .avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ochre);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .8rem;
}

/* ── Article enhancements ───────────────────────────────────── */
.article-meta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid #e8deca;
}
.last-updated::before { content: "🗓 "; }
.read-time { color: var(--teal); font-weight: 600; }

.lead-para {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.article-cta {
  margin-top: 2.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  color: var(--ink-soft);
}
.article-cta a { color: var(--teal-dark); font-weight: 600; }

.tip-box {
  background: #f5f0e6;
  border: 1px solid #d9c89e;
  border-left: 4px solid var(--ochre);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
  font-size: .93rem;
  color: var(--ink);
}
.tip-box h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  color: var(--teal-dark);
}
.tip-box p { margin: .3rem 0 0; }

.info-table-wrap { overflow-x: auto; margin: 1.4rem 0; }

.article-body blockquote cite {
  display: block;
  margin-top: .6rem;
  font-size: .85rem;
  font-style: normal;
  color: var(--ochre);
  font-weight: 600;
}

/* ── Itinerary builder page ─────────────────────────────────── */
.builder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 820px) {
  .builder-layout { grid-template-columns: 1fr; }
}
.builder-panel {
  background: #fff;
  border: 1px solid #ddd3bc;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.builder-panel h2 {
  font-size: 1.1rem;
  color: var(--teal-dark);
  margin: 0 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ochre);
}
.attraction-pick {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
.attraction-pick:hover { background: #f5f0e6; }
.attraction-pick input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--teal);
  flex-shrink: 0;
  cursor: pointer;
}
.attraction-pick .pick-info { flex: 1; }
.attraction-pick .pick-name { font-weight: 600; font-size: .93rem; color: var(--ink); }
.attraction-pick .pick-meta { font-size: .78rem; color: var(--ink-soft); margin-top: 2px; }
.attraction-pick .pick-badge {
  font-size: .68rem;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.badge-unescos { background: #1f5e5b22; color: var(--teal-dark); }
.badge-city    { background: #c08a3e22; color: #7a5420; }
.badge-temple  { background: #b2543722; color: #7a2e12; }

.day-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.day-tab {
  padding: .4rem 1rem;
  border: 2px solid var(--ochre);
  border-radius: 999px;
  background: none;
  color: var(--ochre);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .15s;
}
.day-tab.active, .day-tab:hover {
  background: var(--ochre);
  color: #fff;
}

.day-plan {
  display: none;
}
.day-plan.active { display: block; }

.timeline-item {
  display: flex;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid #ece4d4;
  animation: fadeIn .3s ease;
}
.timeline-item:last-child { border-bottom: none; }
@keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
.timeline-time {
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 52px;
  padding-top: 3px;
}
.timeline-icon {
  font-size: 1.3rem;
  min-width: 28px;
  text-align: center;
}
.timeline-body .tl-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.timeline-body .tl-desc {
  font-size: .83rem;
  color: var(--ink-soft);
  margin-top: 2px;
  line-height: 1.45;
}
.tl-tip {
  display: inline-block;
  margin-top: .35rem;
  font-size: .75rem;
  color: var(--teal-dark);
  background: #1f5e5b14;
  padding: 2px 8px;
  border-radius: 999px;
}

.empty-plan {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--ink-soft);
}
.empty-plan .empty-icon { font-size: 2.5rem; display: block; margin-bottom: .6rem; }

.builder-summary {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.builder-summary .sum-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.builder-summary .sum-label { font-size: .72rem; opacity: .8; text-transform: uppercase; letter-spacing: .04em; }
.builder-summary .sum-value { font-size: 1.3rem; font-weight: 700; }

.print-btn {
  background: var(--ochre);
  color: #fff;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s;
}
.print-btn:hover { background: var(--teal-dark); }

@media print {
  .site-header, .site-footer, .cookie-notice, .builder-panel:first-child,
  .breadcrumbs, .day-tabs, .print-btn, .builder-summary { display: none !important; }
  .builder-layout { display: block; }
  .day-plan { display: block !important; }
  .day-plan + .day-plan { page-break-before: always; }
}
