@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Gothic+A1:wght@400;500;700&family=Marcellus&display=swap');

:root {
  --black: #000000;
  --charcoal: #1e1e1e;
  --panel: rgba(35,35,35,0.92);
  --gold: #c4a265;
  --gold-dark: #a8864a;
  --gold-bar: #b8956a;
  --brown: #5e4b3d;
  --brown-hover: #4a3a2f;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text: #2a2a2a;
  --muted: #6b6560;
  --border: #ddd6cc;
  --font-serif: 'Marcellus', Georgia, serif;
  --font-sans: 'Gothic A1', 'Helvetica Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --wide: 1240px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 15px; line-height: 1.65; color: var(--text); background: var(--white); font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.ex-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 20px; }
.ex-wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 20px; }

/* ── Header — PH black bar ── */
.ex-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--black); height: 60px;
}
.ex-header-inner {
  max-width: 1440px; margin: 0 auto; height: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 20px;
}
.ex-header-left { display: flex; align-items: center; gap: 16px; justify-self: start; }
.ex-menu-btn {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-family: var(--font-sans); font-size: 13px; font-weight: 400;
}
.ex-menu-btn span { display: block; width: 16px; height: 1px; background: var(--white); margin: 3px 0; }
.ex-currency {
  font-size: 12px; color: var(--white); background: transparent;
  border: none; padding: 4px 8px; cursor: pointer;
}
.ex-logo { justify-self: center; }
.ex-logo img { height: 36px; }
.ex-header-right { justify-self: end; display: flex; align-items: center; gap: 20px; }
.ex-header-link {
  font-family: var(--font-cond); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  transition: opacity 0.2s;
}
.ex-header-link:hover { opacity: 0.75; }
.ex-header-link-muted {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 14px; transition: all 0.2s;
}
.ex-header-link-muted:hover { border-color: var(--white); color: var(--white); }

/* Full-screen drawer menu — PH richness */
.ex-drawer { position: fixed; inset: 0; z-index: 950; pointer-events: none; }
.ex-drawer.open { pointer-events: auto; }
.ex-drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.35s; }
.ex-drawer.open .ex-drawer-bg { opacity: 1; }
.ex-drawer-panel {
  position: absolute; top: 0; left: 0; width: min(420px, 92vw); height: 100%;
  background: var(--black); overflow-y: auto;
  transform: translateX(-100%); transition: transform 0.4s var(--ease);
  padding: 72px 32px 40px;
}
.ex-drawer.open .ex-drawer-panel { transform: translateX(0); }
.ex-drawer-close { position: absolute; top: 18px; right: 20px; color: var(--white); font-size: 28px; line-height: 1; }
.ex-drawer-group { margin-bottom: 28px; }
.ex-drawer-group h3 {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ex-drawer-group a {
  display: block; padding: 9px 0; color: rgba(255,255,255,0.85); font-size: 14px;
  transition: color 0.15s, padding-left 0.15s;
}
.ex-drawer-group a:hover { color: var(--white); padding-left: 6px; }

/* ── Hero — PH full-bleed + overlay panel + floating search ── */
.ex-hero {
  position: relative; margin-top: 60px; min-height: 480px;
  display: flex; align-items: stretch; overflow: hidden;
}
.ex-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ex-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.35) 100%);
}
.ex-hero-panel {
  position: relative; z-index: 2; align-self: stretch;
  width: min(520px, 48%); padding: 48px 40px 56px;
  background: var(--panel); display: flex; flex-direction: column; justify-content: center;
}
.ex-hero-venue {
  font-family: var(--font-cond); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.ex-hero-eyebrow {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.ex-hero h1 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 400; color: var(--white); line-height: 1.25; margin-bottom: 14px;
}
.ex-hero-lead { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 420px; }

.ex-search {
  position: absolute; z-index: 3; right: clamp(20px, 4vw, 48px);
  top: 50%; transform: translateY(-50%);
  width: min(340px, 90vw); background: rgba(255,255,255,0.96);
  padding: 24px 22px 22px; box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.ex-search label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.ex-search input, .ex-search select {
  width: 100%; padding: 11px 12px; margin-bottom: 14px;
  border: 1px solid #bbb; font-family: var(--font-sans); font-size: 14px; color: var(--text);
  background: var(--white); appearance: none;
}
.ex-search input:focus, .ex-search select:focus { outline: none; border-color: var(--gold-dark); }
.ex-search input::placeholder { color: #999; }
.ex-btn-find {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 16px; margin-top: 2px;
  background: var(--brown); color: var(--white);
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.ex-btn-find:hover { background: var(--brown-hover); }
.ex-btn-find svg { width: 16px; height: 16px; }

/* Gold bar */
.ex-hero-bar {
  background: var(--gold-bar); padding: 13px 20px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
}
.ex-hero-bar p {
  font-size: 13px; color: var(--black); display: flex; align-items: center; gap: 10px;
}
.ex-hero-bar a {
  font-size: 13px; font-weight: 700; color: var(--black);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ── Locations map grid — PH accordion style ── */
.ex-section { padding: clamp(48px, 7vh, 72px) 0; }
.ex-section-cream { background: var(--cream); }
.ex-section-dark { background: var(--charcoal); color: var(--white); }
.ex-section-title {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 400; margin-bottom: 8px;
}
.ex-section-sub {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px;
}
.ex-lead { font-size: 14px; color: var(--muted); max-width: 680px; line-height: 1.65; margin-bottom: 28px; }
.ex-section-dark .ex-lead { color: rgba(255,255,255,0.65); }

.ex-locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.ex-location-col { border-right: 1px solid var(--border); background: var(--white); }
.ex-location-col:last-child { border-right: none; }
.ex-location-head {
  width: 100%; padding: 16px 18px; text-align: left;
  background: var(--cream); border-bottom: 1px solid var(--border);
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.ex-location-head:hover { background: #efeae2; }
.ex-location-head span { font-size: 12px; color: var(--gold-dark); font-family: var(--font-sans); font-weight: 700; }
.ex-location-list { padding: 12px 18px 18px; }
.ex-location-list li { padding: 5px 0; }
.ex-location-list a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.ex-location-list a:hover { color: var(--brown); text-decoration: underline; }

/* Spotlight carousel — PH hotel cards */
.ex-spotlight-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; gap: 16px; }
.ex-carousel-nav { display: flex; align-items: center; gap: 12px; }
.ex-carousel-count { font-size: 13px; color: var(--muted); }
.ex-carousel-btns { display: flex; gap: 6px; }
.ex-carousel-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); background: var(--white);
  font-size: 16px; color: var(--text); transition: all 0.2s;
}
.ex-carousel-btn:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.ex-spotlight-wrap { overflow: hidden; }
.ex-spotlight-track { display: flex; gap: 16px; transition: transform 0.45s var(--ease); }
.ex-spot-card {
  flex: 0 0 calc(33.333% - 11px); min-width: 280px;
  border: 1px solid var(--border); background: var(--white);
  transition: box-shadow 0.3s;
}
.ex-spot-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.ex-spot-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.ex-spot-body { padding: 16px 18px 20px; }
.ex-spot-collection {
  font-family: var(--font-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px;
}
.ex-spot-body h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 6px; font-weight: 400; }
.ex-spot-meta { font-size: 12px; color: var(--muted); line-height: 1.5; }
.ex-spot-stats { font-size: 12px; color: var(--text); margin-top: 8px; font-weight: 500; }

/* Destination tabs + city grid */
.ex-tabs {
  display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.ex-tab {
  padding: 12px 18px; font-family: var(--font-cond); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s;
}
.ex-tab.active, .ex-tab:hover { color: var(--text); border-bottom-color: var(--gold-dark); }
.ex-city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ex-city-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.ex-city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ex-city-card:hover img { transform: scale(1.05); }
.ex-city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.8) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: var(--white);
}
.ex-city-overlay h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; }
.ex-city-overlay p { font-size: 12px; opacity: 0.85; margin-top: 4px; }

/* Offers */
.ex-offers-head { margin-bottom: 24px; }
.ex-offers-track-wrap { overflow: hidden; }
.ex-offers-track { display: flex; gap: 20px; transition: transform 0.45s var(--ease); }
.ex-offer-card {
  flex: 0 0 calc(50% - 10px); min-width: 300px;
  border: 1px solid var(--border); padding: 24px; background: var(--white);
}
.ex-offer-expiry { font-size: 11px; color: var(--gold-dark); font-weight: 700; margin-bottom: 8px; }
.ex-offer-card h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; font-weight: 400; }
.ex-offer-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.ex-offer-from { font-size: 12px; font-weight: 700; color: var(--text); margin-top: 14px; }

/* Planner program — PH I Prefer section */
.ex-planner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--cream); }
.ex-planner-media img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.ex-planner-content { padding: clamp(40px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.ex-planner-content h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; font-weight: 400; }
.ex-planner-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--gold-dark); margin-bottom: 16px; }
.ex-planner-list li {
  padding: 10px 0 10px 20px; position: relative; font-size: 14px; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.ex-planner-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold-dark); }
.ex-planner-list strong { color: var(--text); font-weight: 700; }
.ex-btn-outline {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  padding: 12px 24px; border: 1px solid var(--brown); color: var(--brown);
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s;
}
.ex-btn-outline:hover { background: var(--brown); color: var(--white); }

/* Why us grid */
.ex-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.1); }
.ex-why-item { padding: 24px; border: 1px solid rgba(255,255,255,0.08); }
.ex-why-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 6px; }
.ex-why-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* Expertise tabs */
.ex-expertise-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.ex-expertise-tab {
  padding: 10px 20px; font-family: var(--font-cond); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.ex-expertise-tab.active { color: var(--text); border-bottom-color: var(--gold-dark); }
.ex-expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ex-expertise-item {
  padding: 14px; border: 1px solid var(--border); font-size: 13px; text-align: center;
  color: var(--muted); transition: border-color 0.2s;
}
.ex-expertise-item:hover { border-color: var(--gold-dark); color: var(--text); }

/* Connect / newsletter */
.ex-connect { background: var(--charcoal); color: var(--white); padding: 56px 0; }
.ex-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 560px; }
.ex-form-row .ex-full { grid-column: 1 / -1; }
.ex-form label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ex-form input, .ex-form select {
  width: 100%; padding: 11px 12px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--font-sans); font-size: 14px;
}
.ex-form input:focus, .ex-form select:focus { outline: none; border-color: var(--gold); }
.ex-form-consent { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; margin-top: 12px; max-width: 560px; }
.ex-btn-gold {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: var(--gold-bar); color: var(--black);
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
}
.ex-btn-gold:hover { background: var(--gold); }

/* Page hero */
.ex-page-hero {
  margin-top: 60px; padding: 56px 0 40px; background: var(--charcoal); color: var(--white);
}
.ex-page-hero h1 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; margin-bottom: 10px; }
.ex-page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 14px; }
.ex-breadcrumb { font-family: var(--font-cond); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

.ex-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ex-service-card { border: 1px solid var(--border); overflow: hidden; background: var(--white); transition: box-shadow 0.3s; }
.ex-service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ex-service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ex-service-body { padding: 20px; }
.ex-service-body h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 8px; font-weight: 400; }
.ex-service-body p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.ex-link {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown);
}
.ex-link:hover { color: var(--gold-dark); }
.ex-notice {
  padding: 16px 18px; border-left: 3px solid var(--gold-dark);
  background: var(--cream); font-size: 13px; color: var(--muted); margin-top: 24px;
}

/* Footer — PH multi-column */
.ex-footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 48px 0 24px; font-size: 13px; }
.ex-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; margin-bottom: 36px; }
.ex-footer-brand img { margin-bottom: 14px; }
.ex-footer-brand p { line-height: 1.65; }
.ex-footer h4 {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.ex-footer a { display: block; padding: 4px 0; transition: color 0.15s; }
.ex-footer a:hover { color: var(--white); }
.ex-footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 11px;
}
.ex-footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 1024px) {
  .ex-hero-panel { width: 100%; min-height: 280px; }
  .ex-search { position: relative; right: auto; top: auto; transform: none; width: 100%; margin: 0; }
  .ex-hero { flex-direction: column; min-height: auto; }
  .ex-hero-shade { background: rgba(0,0,0,0.5); }
  .ex-locations, .ex-city-grid, .ex-planner, .ex-why-grid, .ex-expertise-grid, .ex-services-grid, .ex-footer-grid { grid-template-columns: 1fr; }
  .ex-spot-card { flex: 0 0 85%; }
  .ex-offer-card { flex: 0 0 90%; }
  .ex-header-right .ex-header-link-muted { display: none; }
}
@media (max-width: 640px) {
  .ex-form-row { grid-template-columns: 1fr; }
  .ex-header-inner { grid-template-columns: auto 1fr auto; }
}
