@charset "UTF-8";
:root {
  --navy:#0E2A47;
  --navy-mid:#1C4677;
  --navy-pale:#EAF0F7;
  --gold:#AD8A3F;
  --gold-pale:#F4EEDE;
  --bg:#FFFFFF;
  --bg-soft:#F6F7FA;
  --line:#E3E7EE;
  --text-dark:#18202E;
  --text-mid:#5B6779;
  --text-soft:#8892A0;
  --radius:8px;
}

/* ==================================================================================== */
/* ============================================================ assets/css/_header.scss */
/* ==================================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
h1, h2, h3, .display {
  font-family: "Playfair Display", serif;
  font-weight: 500 !important;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.gold-rule {
  width: 46px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 14px;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
  display: inline-block;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-line {
  border-color: var(--line);
  color: var(--navy);
  background: #fff;
}

.btn-line:hover {
  border-color: var(--navy);
}

/* Shared section scaffolding used by main.php, faq.php and footer.php */
.section {
  padding: 40px;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.sec-title {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 4px;
}

.sec-note {
  max-width: 420px;
  font-size: 14.5px;
  color: var(--text-mid);
  text-align: right;
}

@media (max-width: 800px) {
  .sec-note {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 22px;
  }
}
/* ==================================================================================== */
/* ============================================================ assets/css/_footer.scss */
/* ==================================================================================== */
.cta-strip {
  background: var(--navy-pale);
  padding: 88px 44px;
  text-align: center;
}

.cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.cta-strip h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}

.cta-strip p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 15px;
}

footer {
  background: var(--navy);
  padding: 60px 44px 24px;
  color: rgba(255, 255, 255, 0.55);
}

.foot-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-grid h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.foot-grid p {
  font-size: 13px;
  max-width: 34ch;
  line-height: 1.8;
}

.foot-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-grid ul a {
  font-size: 13.5px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.foot-grid ul a:hover {
  color: #fff;
}

.foot-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 960px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================================================== */
/* ============================================================== assets/css/_main.scss */
/* ==================================================================================== */
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-pale) 0%, #fff 100%);
  padding: 96px 44px 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 26px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.06;
  margin-bottom: 20px;
  color: var(--navy);
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 480px;
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(14, 42, 71, 0.08);
}

.hero-panel-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.hero-panel-label .eyebrow {
  margin: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2E9E5B;
  display: inline-block;
  margin-right: 6px;
}

.status {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-mid);
}

.dome-diagram {
  width: 100%;
  height: 150px;
}

.hero-panel-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hp-fact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 3px;
}

.hp-fact-val {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.fact-strip {
  background: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 26px 44px;
  text-align: left;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: none;
}

.fact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 5px;
}

.fact-val {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}

.sights-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 18px;
}

.sight {
  position: relative;
  border-radius: 10px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.sight.big {
  grid-row: 1/3;
}

.sight-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.sight h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 8px;
  font-weight: 700;
}

.sight.big h3 {
  font-size: 27px;
}

.sight p {
  font-size: 13px;
  color: var(--text-mid);
  max-width: 36ch;
}

.sight-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  opacity: 0.5;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.food-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.food-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(14, 42, 71, 0.08);
  border-color: #d6ddea;
}

.food-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.food-card h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.food-card p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

.food-price {
  margin-top: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3px;
  font-weight: 500;
}

.timeline-section {
  background: var(--navy);
  color: #fff;
}

.timeline-section .eyebrow {
  color: var(--gold);
}

.timeline-section .sec-title {
  color: #fff;
}

.timeline-section .sec-note {
  color: rgba(255, 255, 255, 0.6);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.tl-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tl-row:last-child {
  border-bottom: none;
}

.tl-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--gold);
  position: relative;
  padding-top: 3px;
}

.tl-time::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--navy);
  transform: translateX(-4.5px);
}

.tl-body h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: #fff;
}

.tl-body p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 60ch;
}

.itin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.itin-tab {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
  font-weight: 500;
}

.itin-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.itin-panel {
  display: none;
}

.itin-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.itin-day {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}

.itin-day .fact-label {
  color: var(--gold);
}

.itin-day h4 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  margin: 8px 0 14px;
  color: var(--navy);
  font-weight: 700;
}

.itin-day ul {
  list-style: none;
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.itin-day ul li {
  padding-left: 16px;
  position: relative;
}

.itin-day ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 1px;
}

.etiq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.etiq-item {
  background: #fff;
  padding: 28px 26px;
}

.etiq-item .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--navy);
  border: 1px solid var(--navy-pale);
  background: var(--navy-pale);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.etiq-item h4 {
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.etiq-item p {
  font-size: 12.5px;
  color: var(--text-mid);
}

.around-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.route-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 24px;
}

.route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.route:last-child {
  border-bottom: none;
}

.route-name {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

.route-detail {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--text-mid);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .sights-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .sight.big {
    grid-column: 1/3;
    grid-row: auto;
    height: 230px;
  }
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .etiq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .around-grid {
    grid-template-columns: 1fr;
  }
  .fact {
    padding: 20px 26px;
  }
}
@media (max-width: 640px) {
  .hero, nav {
    padding-left: 22px;
    padding-right: 22px;
  }
  .sights-grid, .food-grid, .etiq-grid {
    grid-template-columns: 1fr;
  }
  .sight.big {
    grid-column: auto;
  }
  .tl-row {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 8px;
  }
  .tl-time::after {
    left: 8px;
    transform: none;
  }
}
.pm-hero-inner--single {
  grid-template-columns: 1fr;
  align-items: start;
}

.pm-gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  margin-bottom: 14px;
}

.pm-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pm-galleries-note {
  font-size: 14px;
  color: var(--text-mid);
  margin: -6px 0 26px;
  max-width: 60ch;
}

/* ==================================================================================== */
/* ======================================================= assets/css/_inner_pages.scss */
/* ==================================================================================== */
.pm-hero {
  background: linear-gradient(180deg, var(--navy-pale) 0%, #fff 100%);
  padding: 64px 44px;
}

.pm-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.pm-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.pm-hero p {
  max-width: 640px;
  font-size: 16px;
  color: var(--text-mid);
}

.pm-section {
  padding: 72px 44px;
}

.pm-section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.pm-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 4px;
}

/* Sidebar — col-md-3 */
.pm-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pm-fact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.pm-fact {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.pm-fact:last-child {
  border-bottom: none;
}

.pm-fact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 5px;
}

.pm-fact-val {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.pm-jumpnav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}

.pm-jumpnav h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pm-jumpnav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-jumpnav a {
  font-size: 13.5px;
  color: var(--text-mid);
  text-decoration: none;
}

.pm-jumpnav a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Main column — col-md-9 */
.pm-main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.pm-block:first-child {
  margin-top: 0;
}

.pm-galleries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.pm-gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}

.pm-gallery h4 {
  font-family: "Manrope", sans-serif;
  font-size: 15.5px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.pm-gallery p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.pm-tips {
  max-width: 800px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pm-tip {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mid);
}

.pm-tip strong {
  color: var(--navy);
}

.pm-intro h2 {
  line-height: 1.7;
}
.pm-intro h3 {
  margin-bottom: 30px;
}
.pm-intro .pm-div {
  border-left: 1px dotted var(--text-mid);
  padding-left: 20px;
}

@media (max-width: 991.98px) {
  .pm-sidebar {
    position: static;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .pm-hero, .pm-section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .pm-galleries {
    grid-template-columns: 1fr;
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
}

.pm-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 0;
}

.pm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 96px 32px 64px;
}
.pm-hero-inner h2 {
  color: rgba(255, 255, 255, 0.65);
}

/* watermark date — the signature element */
.pm-year {
  position: absolute;
  top: -4vw;
  right: -1.5vw;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: min(34vw, 460px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: -0.03em;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

/* arched-window motif */
.pm-arches {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 64px;
  z-index: 1;
  opacity: 0.5;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
}

h2 {
  font-weight: 400;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  /*color: rgba(255, 255, 255, 0.65);*/
  color: var(--navy);
  margin: 0 0 22px;
}

.pm-dek {
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 48ch;
  margin: 0;
}

/* CTA Button */
.pm-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 11px 18px;
  width: fit-content;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.pm-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

.pm-cta svg {
  width: 13px;
  height: 13px;
}

/* Sponsor */
.pm-sponsor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pm-sponsor-label {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.pm-sponsor img {
  max-height: 22px;
  opacity: 0.85;
}

/* ===== Right Column: Logo + Search ===== */
.hero-search-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.hero-logo {
  max-height: 64px;
  width: auto;
  margin-bottom: 18px;
  display: inline-block;
}

/* Search form inside hero */
.hero-search-box .site-search-form .input-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(173, 138, 63, 0.35);
  background: #fff;
}

.hero-search-box .site-search-form .form-control {
  border: none;
  box-shadow: none;
  font-size: 0.95rem;
  padding: 0.75rem 0.6rem;
}

.hero-search-box .site-search-form .btn-search {
  background: linear-gradient(135deg, #b08d3a, #8b6914);
  color: #fff;
  border: none;
  font-weight: 500;
  white-space: nowrap;
}

.hero-search-box .site-search-form .btn-search:hover {
  background: linear-gradient(135deg, #9a7b2e, #7a5c10);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
  .pm-hero-inner {
    padding: 64px 22px 44px;
  }
  .hero-search-box {
    margin-top: 32px;
    text-align: center;
  }
  .pm-year {
    font-size: 60vw;
    top: -8vw;
  }
  h1 {
    font-size: clamp(32px, 8vw, 42px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pm-cta {
    transition: none;
  }
}
.site-search-form .input-group {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(173, 138, 63, 0.35);
  background: #fff;
}

.site-search-form .input-group-text {
  color: #8b6914;
  padding-left: 1.15rem;
  padding-right: 0.75rem;
  background: #fff;
  border: none;
}

.site-search-form .form-control {
  border: none;
  box-shadow: none;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  color: #333;
}

.site-search-form .form-control:focus {
  box-shadow: none;
}

.site-search-form .form-control::placeholder {
  color: #9a8b6e;
  opacity: 0.85;
}

.site-search-form .btn-search {
  background: linear-gradient(135deg, #b08d3a, #8b6914);
  color: #fff;
  border: none;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-search-form .btn-search:hover {
  background: linear-gradient(135deg, #9a7b2e, #7a5c10);
  color: #fff;
}

/* Mobile */
@media (max-width: 575.98px) {
  .site-search-form .btn-search span {
    display: none; /* hide text, show only icon on very small screens */
  }
  .site-search-form .btn-search {
    padding: 0.85rem 1.1rem;
  }
}
.site-breadcrumb {
  display: flex;
  justify-content: center;
  padding: 7px 0;
  background: #FBF7EF; /* warm ivory */
  border-bottom: 1px solid #EAE0C8;
}
.site-breadcrumb * {
  font-size: 11px;
}

.site-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  gap: 6px;
}

.site-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-family: "Inter", sans-serif;
}

.site-breadcrumb a {
  color: #4B3F72; /* indigo */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-breadcrumb a:hover {
  color: #C9A23F; /* gold accent */
  text-decoration: underline;
}

.crumb-separator {
  margin: 0 8px;
  color: #B8AD8E;
  font-weight: 400;
}

.crumb-current {
  color: #7A6F5D;
  font-weight: 600;
}

/* Mobile: allow wrapping, tighter spacing */
@media (max-width: 576px) {
  .site-breadcrumb {
    padding: 10px 14px;
  }
  .site-breadcrumb li {
    font-size: 0.82rem;
  }
  .crumb-separator {
    margin: 0 5px;
  }
}
/* ==================================================================================== */
/* ============================================================ assets/css/_navbar.scss */
/* ==================================================================================== */
nav.main-nav {
  background: #fff;
  padding: 0 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--line);
}

.brand {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 16px;
  height: 16px;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-sub {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  color: var(--text-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== MEGAMENU NAV ===== */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-item.mega-wide {
  position: static;
}

.nav-item > a, .nav-item > button.nav-top-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 26px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.nav-item > a:hover, .nav-item > a:focus-visible, .nav-item > button.nav-top-btn:hover, .nav-item > button.nav-top-btn:focus-visible, .nav-item.open > a, .nav-item.open > button.nav-top-btn {
  color: var(--navy);
  border-bottom-color: var(--gold);
  outline: none;
}

.nav-caret {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.2s;
  stroke: currentColor;
}

.nav-item.open .nav-caret {
  transform: rotate(180deg);
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 6px;
  margin: 14px 0 14px 4px;
  padding: 10px 20px !important;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: var(--navy-mid) !important;
  color: #fff !important;
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(14, 42, 71, 0.14);
  padding: 28px;
  display: none;
  gap: 32px;
  z-index: 250;
}

.nav-item.open .mega-panel {
  display: flex;
}

.nav-item.mega-wide .mega-panel {
  left: 44px;
  right: 44px;
  max-width: 1152px;
  margin: 0 auto;
}

.nav-item.align-right .mega-panel {
  left: auto;
  right: 0;
}

.mega-simple .mega-panel {
  min-width: 290px;
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  flex: 1;
}

.mega-col h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  white-space: nowrap;
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-col ul a {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.mega-col ul a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.mega-simple .mega-col ul a {
  white-space: nowrap;
}

.mega-feature {
  width: 190px;
  flex-shrink: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-feature svg {
  width: 100%;
  height: 64px;
  margin-bottom: 6px;
}

.mega-feature h6 {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 700;
}

.mega-feature p {
  font-size: 11.5px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 10px;
}

.mega-feature-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.mega-feature-link:hover {
  text-decoration: underline;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    padding: 8px 22px 32px;
    gap: 0;
    z-index: 190;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-item > a, .nav-item > button.nav-top-btn {
    width: 100%;
    padding: 16px 4px;
    border-bottom: none;
    justify-content: space-between;
  }
  .mega-panel {
    display: none !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 16px 12px;
    min-width: 0;
    max-width: none;
    gap: 16px;
    flex-direction: column;
  }
  .nav-item.open .mega-panel {
    display: flex !important;
  }
  .mega-cols {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .mega-col ul a {
    white-space: normal;
  }
  .mega-feature {
    width: 100%;
  }
  .nav-cta {
    margin: 14px 0 0;
    text-align: center;
  }
  nav {
    padding-left: 22px;
    padding-right: 22px;
  }
}
/* ============================================================
   NAVBAR - TABLET RESPONSIVE
   ============================================================ */
/* Tablets & Medium Screens */
@media (max-width: 1200px) {
  nav.main-nav {
    padding: 0 20px;
  }
  .nav-item > a,
  .nav-item > button.nav-top-btn {
    padding: 26px 10px;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  /* Hide less important items on tablet */
  .nav-item.mega-wide .mega-panel {
    left: 20px;
    right: 20px;
  }
  /* Reduce padding */
  .nav-item > a,
  .nav-item > button.nav-top-btn {
    padding: 26px 8px;
    font-size: 11px;
  }
  /* Hide "About Us" on tablet (too many items) */
  .nav-item.about-us-desktop {
    display: none;
  }
}
@media (max-width: 992px) {
  /* Show hamburger menu on tablet */
  .nav-toggle {
    display: flex !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    padding: 8px 22px 32px;
    gap: 0;
    z-index: 190;
  }
  .nav-links.mobile-open {
    display: flex !important;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line, #e5e5e5);
  }
  .nav-item > a,
  .nav-item > button.nav-top-btn {
    width: 100%;
    padding: 16px 4px;
    border-bottom: none;
    justify-content: space-between;
    font-size: 14px;
  }
  .mega-panel {
    display: none !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 16px 12px;
    min-width: 0;
    max-width: none;
    gap: 16px;
    flex-direction: column;
  }
  .nav-item.open .mega-panel {
    display: flex !important;
  }
  .mega-cols {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .mega-feature {
    width: 100%;
  }
  .nav-cta {
    margin: 14px 0 0;
    text-align: center;
  }
  /* Show "About Us" in mobile menu */
  .nav-item.about-us-desktop {
    display: block;
  }
}
/* ============================================================
   FAQ STYLES
   Note: Move these to master.css for better performance
   ============================================================ */
.sec-title {
  color: var(--navy);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line, #e5e5e5);
  padding: 22px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-q {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy, #1a2a3a);
  margin-bottom: 0;
}

.faq-q .faq-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  gap: 16px;
}

.faq-q .faq-toggle:hover {
  color: var(--gold, #AD8A3F);
}

.faq-q .faq-toggle:focus-visible {
  outline: 2px solid var(--gold, #AD8A3F);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-q-text {
  flex: 1;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold, #AD8A3F);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a-wrapper {
  padding-top: 10px;
  padding-bottom: 4px;
  padding-right: 16px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-mid, #555);
  max-width: 70ch;
  line-height: 1.7;
  margin: 0;
}

/* Mobile */
@media (max-width: 575.98px) {
  .faq-q {
    font-size: 15px;
  }
  .faq-a {
    font-size: 13px;
  }
  .faq-item {
    padding: 16px 0;
  }
  .faq-q .faq-toggle {
    gap: 10px;
  }
  .faq-icon {
    font-size: 20px;
  }
}

/*# sourceMappingURL=master.css.map */
