/* DG-033: English Discover Rome concierge hub. Provider-neutral by design. */
:root {
  --dr-ink: #10100f;
  --dr-ivory: #fbf8f0;
  --dr-gold: #d4af37;
  --dr-gold-light: #f1d77c;
  --dr-line: rgba(212, 175, 55, 0.32);
}

.dr-hub, .dr-hub * { box-sizing: border-box; }
.dr-hub {
  width: min(1180px, calc(100% - 24px));
  margin: 26px auto 12px;
  color: var(--dr-ink);
}

.dr-hub__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .95fr);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .7);
  border-radius: clamp(20px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 175, 55, .15), transparent 35%),
    linear-gradient(135deg, #1a1916, #09090a 72%);
  box-shadow: 0 22px 60px rgba(20, 18, 12, .18);
  isolation: isolate;
}
.dr-hub__hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  pointer-events: none;
}
.dr-hub__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(30px, 5vw, 64px);
}
.dr-hub__eyebrow {
  margin: 0;
  color: var(--dr-gold-light);
  font: 800 .73rem/1.2 var(--fb, 'DM Sans', sans-serif);
  letter-spacing: .17em;
}
.dr-hub__copy h2 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font: 600 clamp(2.4rem, 5vw, 4.4rem)/.96 var(--fd, 'Cormorant Garamond', Georgia, serif);
  letter-spacing: -.035em;
}
.dr-hub__copy > p:not(.dr-hub__eyebrow) {
  max-width: 62ch;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .75);
  font: 400 1rem/1.65 var(--fb, 'DM Sans', sans-serif);
}
.dr-hub__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.dr-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border-radius: 11px;
  font: 800 .92rem/1.2 var(--fb, 'DM Sans', sans-serif);
  text-decoration: none;
  cursor: pointer;
}
.dr-btn--gold { border: 1px solid #e7c85e; background: var(--dr-gold); color: #171300; }
.dr-btn--gold:hover { background: var(--dr-gold-light); }
.dr-btn--ghost { border: 1px solid rgba(255,255,255,.42); background: transparent; color: #fff; }
.dr-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.09); }
.dr-btn:focus-visible, .dr-plan-chip:focus-visible, .dr-path:focus-visible {
  outline: 3px solid #2c65ba;
  outline-offset: 3px;
}

.dr-hub__portrait {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  border-left: 1px solid var(--dr-line);
  background: linear-gradient(160deg, #dfc26b, #a88634);
}
.dr-hub__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,9,.28), transparent 32%);
}
.dr-hub__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.92) contrast(1.03);
  transition: transform .55s ease;
}
.dr-hub__hero:hover .dr-hub__portrait img { transform: scale(1.035); }

.dr-planner {
  position: relative;
  z-index: 2;
  width: calc(100% - clamp(22px, 5vw, 72px));
  margin: -28px auto 24px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid #e4dcc7;
  border-radius: 20px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 14px 36px rgba(27, 24, 16, .12);
  backdrop-filter: blur(12px);
}
.dr-planner__heading { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.dr-planner__heading p { margin: 0; color: #8a6d1f; font: 800 .68rem/1.2 var(--fb, sans-serif); letter-spacing: .13em; }
.dr-planner__heading h3 { margin: 0; font: 650 clamp(1.45rem, 3vw, 2rem)/1.1 var(--fd, Georgia, serif); }
.dr-planner__choices { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.dr-plan-chip {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #d9d1bf;
  border-radius: 999px;
  background: #fff;
  color: #3d392f;
  font: 750 .82rem/1.2 var(--fb, sans-serif);
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.dr-plan-chip:hover { transform: translateY(-1px); border-color: #b9942d; }
.dr-plan-chip.is-active { border-color: var(--dr-ink); background: var(--dr-ink); color: #fff; }
.dr-plan-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.dr-result {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid #e4dcc9;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.dr-result:hover { border-color: #c4a264; box-shadow: 0 5px 16px rgba(30,25,14,.08); }
.dr-result span { display: grid; gap: 4px; }
.dr-result strong { font: 800 .88rem/1.25 var(--fb, sans-serif); }
.dr-result small { color: #696254; font: 500 .73rem/1.35 var(--fb, sans-serif); }
.dr-result i { color: #9a7920; }

.dr-host-pick {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.35fr) minmax(230px, .9fr) auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid #b99735;
  border-radius: 19px;
  background: linear-gradient(120deg, #11110f 0 58%, #211d12 100%);
  color: #fff;
  box-shadow: 0 12px 34px rgba(20,18,12,.15);
}
.dr-host-pick__visual {
  grid-row: 1 / 3;
  align-self: stretch;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid rgba(241,215,124,.65);
  border-radius: 17px;
  background: #e9e2d3;
}
.dr-host-pick__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dr-host-pick__copy > p:first-child { margin: 0 0 5px; color: var(--dr-gold-light); font: 850 .62rem/1.2 var(--fb, sans-serif); letter-spacing: .12em; }
.dr-host-pick__copy h3 { max-width: 23ch; margin: 0; font: 650 clamp(1.3rem, 2.2vw, 1.68rem)/1.08 var(--fd, Georgia, serif); }
.dr-host-pick__copy > p:not(:first-child) { margin: 7px 0 0; color: rgba(255,255,255,.73); font: 500 .8rem/1.45 var(--fb, sans-serif); }
.dr-host-pick__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.dr-host-pick__tags span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; font: 750 .67rem/1 var(--fb, sans-serif); }
.dr-host-pick__family { display: flex; align-items: flex-start; gap: 10px; padding: 15px 13px; border-left: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.8); font: 500 .77rem/1.5 var(--fb, sans-serif); }
.dr-host-pick__family i { margin-top: 2px; color: var(--dr-gold-light); }
.dr-host-pick__family a { color: #fff; font-weight: 800; }
.dr-host-pick__actions { display: grid; gap: 7px; min-width: 164px; }
.dr-host-pick__actions .dr-btn { min-height: 44px; padding: 10px 14px; font-size: .78rem; }
.dr-btn--ink { border: 1px solid rgba(255,255,255,.38); background: transparent; color: #fff; }
.dr-btn--ink:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.dr-host-pick__note { grid-column: 2 / -1; margin: -3px 0 2px; color: rgba(255,255,255,.66); font: 500 .78rem/1.48 var(--fb, sans-serif); }

.dr-catalogue { margin: 22px 0 28px; padding: clamp(20px, 3vw, 34px); border: 1px solid #ddd3bd; border-radius: 24px; background: linear-gradient(150deg, #fffdf8, #f5efe2); box-shadow: 0 14px 42px rgba(30,25,14,.08); }
.dr-catalogue__intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.dr-catalogue__intro p { margin: 0 0 7px; color: #866815; font: 850 .66rem/1.2 var(--fb, sans-serif); letter-spacing: .14em; }
.dr-catalogue__intro h3 { margin: 0; font: 650 clamp(1.75rem, 3.6vw, 2.65rem)/1 var(--fd, Georgia, serif); }
.dr-catalogue__intro span { display: block; max-width: 72ch; margin-top: 9px; color: #696254; font: 500 .83rem/1.5 var(--fb, sans-serif); }
.dr-btn--catalogue { flex: 0 0 auto; border: 1px solid #171713; background: #171713; color: #fff; }
.dr-btn--catalogue:hover { background: #34332d; }
.dr-catalogue__filters { display: flex; gap: 7px; margin: 23px 0 13px; padding-bottom: 3px; overflow-x: auto; scrollbar-width: thin; }
.dr-filter { flex: 0 0 auto; min-height: 44px; padding: 8px 13px; border: 1px solid #d5ccba; border-radius: 999px; background: rgba(255,255,255,.82); color: #4d483e; font: 750 .74rem/1 var(--fb, sans-serif); cursor: pointer; }
.dr-filter:hover { border-color: #a98929; }
.dr-filter.is-active { border-color: #171713; background: #171713; color: #fff; }
.dr-catalogue__status { min-height: 18px; margin-bottom: 8px; color: #756c5c; font: 650 .68rem/1.3 var(--fb, sans-serif); }
.dr-catalogue__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.dr-experience { display: flex; min-height: 250px; flex-direction: column; padding: 18px; border: 1px solid #ded5c3; border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 4px 16px rgba(30,25,14,.045); transition: transform .18s ease, box-shadow .18s ease; }
.dr-experience:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(30,25,14,.1); }
.dr-experience__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dr-experience__type { color: #846719; font: 850 .59rem/1.2 var(--fb, sans-serif); letter-spacing: .09em; }
.dr-experience__badge { padding: 5px 7px; border-radius: 99px; background: #f1e4b9; color: #594710; font: 800 .59rem/1 var(--fb, sans-serif); }
.dr-experience h4 { margin: 13px 0 7px; font: 800 1rem/1.22 var(--fb, sans-serif); }
.dr-experience__why { margin: 0; color: #625c50; font: 500 .75rem/1.48 var(--fb, sans-serif); }
.dr-experience__meta { display: flex; flex-wrap: wrap; gap: 5px; margin: 13px 0; }
.dr-experience__meta span { padding: 5px 7px; border: 1px solid #e0d7c5; border-radius: 7px; color: #5d574d; font: 700 .63rem/1 var(--fb, sans-serif); }
.dr-experience__action { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; color: #171713; font: 850 .74rem/1.2 var(--fb, sans-serif); text-decoration: none; }
.dr-experience__action i { color: #8b6d1a; }
.dr-marketplace { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 15px; margin-top: 16px; padding: 17px; border: 1px solid #d5c58e; border-radius: 15px; background: #181815; color: #fff; }
.dr-marketplace__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; background: #d4af37; color: #15130c; }
.dr-marketplace small { display: block; margin-bottom: 3px; color: #e8cc70; font: 850 .57rem/1 var(--fb, sans-serif); letter-spacing: .12em; }
.dr-marketplace strong { font: 750 1rem/1.2 var(--fb, sans-serif); }
.dr-marketplace p { margin: 5px 0 0; color: rgba(255,255,255,.67); font: 500 .72rem/1.4 var(--fb, sans-serif); }
.dr-btn--marketplace { min-height: 44px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: .73rem; }
.dr-marketplace__note { grid-column: 2 / -1; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12); font-size: .61rem !important; }
.dr-catalogue__disclosure { margin: 13px 2px 0; color: #686155; font: 500 .75rem/1.48 var(--fb, sans-serif); }

.dr-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
}
.dr-path {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  min-height: 138px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #e4dcc9;
  border-radius: 17px;
  background: #fff;
  color: var(--dr-ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(20,18,12,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.dr-path:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,18,12,.12); }
.dr-path img { width: 72px; height: 72px; border-radius: 16px; object-fit: cover; }
.dr-path span { display: grid; gap: 4px; }
.dr-path small { color: #8b6d1a; font: 850 .6rem/1.2 var(--fb, sans-serif); letter-spacing: .1em; }
.dr-path strong { font: 800 1rem/1.15 var(--fb, sans-serif); }
.dr-path em { color: #6b665b; font: 500 .72rem/1.35 var(--fb, sans-serif); font-style: normal; }
.dr-path > i { color: #a88727; }
.dr-path--dark { border-color: #25251f; background: #11110f; color: #fff; }
.dr-path--dark em { color: rgba(255,255,255,.66); }
.dr-path--gold { border-color: #c5a33e; background: linear-gradient(145deg, #fffaf0, #f4e4af); }

.dr-section-heading {
  width: min(1180px, calc(100% - 24px));
  margin: 36px auto 0;
  text-align: center;
}
.dr-section-heading p { margin: 0 0 7px; color: #8b6d1a; font: 850 .67rem/1.2 var(--fb, sans-serif); letter-spacing: .14em; }
.dr-section-heading h2 { margin: 0; font: 650 clamp(1.8rem, 4vw, 2.7rem)/1.05 var(--fd, Georgia, serif); }
.dr-section-heading span { display: block; margin-top: 8px; color: #6b665b; font: 500 .88rem/1.45 var(--fb, sans-serif); }

@media (max-width: 1050px) {
  .dr-hub__hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); }
  .dr-host-pick { grid-template-columns: minmax(180px, .65fr) minmax(0, 1fr) auto; }
  .dr-host-pick__family { grid-column: 2 / -1; border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .dr-host-pick__note { grid-column: 2 / -1; }
  .dr-catalogue__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dr-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .dr-hub { margin-top: 16px; }
  .dr-hub__hero { grid-template-columns: 1fr; }
  .dr-hub__portrait { grid-row: 1; height: clamp(190px, 58vw, 290px); border: 0; border-bottom: 1px solid var(--dr-line); }
  .dr-hub__portrait img { object-position: center 48%; }
  .dr-hub__copy { padding: 28px 22px 52px; }
  .dr-hub__copy h2 { max-width: 12ch; font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .dr-planner { width: calc(100% - 20px); margin-top: -30px; padding: 20px 16px; }
  .dr-plan-result { grid-template-columns: 1fr; }
  .dr-host-pick { grid-template-columns: 1fr; padding: 14px; }
  .dr-host-pick__visual { grid-row: auto; min-height: 0; aspect-ratio: 3 / 2; }
  .dr-host-pick__copy, .dr-host-pick__family, .dr-host-pick__actions, .dr-host-pick__note { grid-column: 1 / -1; }
  .dr-host-pick__family { padding: 12px 0 0; }
  .dr-host-pick__actions { grid-template-columns: 1fr 1fr; }
  .dr-catalogue__intro { align-items: flex-start; flex-direction: column; }
  .dr-btn--catalogue { width: 100%; }
  .dr-marketplace { grid-template-columns: auto 1fr; }
  .dr-marketplace .dr-btn, .dr-marketplace__note { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .dr-hub { width: min(100% - 16px, 1180px); }
  .dr-hub__actions, .dr-btn { width: 100%; }
  .dr-planner__choices { display: grid; grid-template-columns: 1fr 1fr; }
  .dr-plan-chip { width: 100%; }
  .dr-host-pick__actions { grid-template-columns: 1fr; }
  .dr-catalogue { padding: 18px 13px; border-radius: 18px; }
  .dr-catalogue__grid { grid-template-columns: 1fr; }
  .dr-paths { grid-template-columns: 1fr; gap: 9px; }
  .dr-path { min-height: 116px; grid-template-columns: 62px minmax(0, 1fr) auto; padding: 13px; }
  .dr-path img { width: 62px; height: 62px; }
}
@media (prefers-reduced-motion: reduce) {
  .dr-hub__portrait img, .dr-plan-chip, .dr-path { transition: none; }
  .dr-hub__hero:hover .dr-hub__portrait img, .dr-path:hover { transform: none; }
}
