@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@400;600&display=swap');

:root {
  --vital-bg: #FFFFFF;
  --vital-surface: #F8F9FA;
  --vital-ink: #2C3035;
  --vital-ink-light: #5A626C;
  --vital-accent: #B35000;
  --vital-accent-hover: #8A3E00;
  --vital-board: #EAECEF;
  --vital-gradient: linear-gradient(135deg, #B35000, #8A3E00);
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  
  --pad-scale: 10dvh;
  --radius-shape: 16px;
  --shadow-lvl: 0 10px 25px rgba(0,0,0,0.08);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--vital-bg);
  color: var(--vital-ink);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--vital-ink);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.top-bar {
  position: sticky;
  top: 0;
  background: var(--vital-bg);
  border-bottom: 1px solid var(--vital-board);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.top-bar:hover, .top-bar:focus-within {
  box-shadow: var(--shadow-lvl);
}

.brand-zone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--vital-accent);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.jump-links {
  display: flex;
  gap: 2rem;
}

.jump-item {
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.jump-item:hover {
  color: var(--vital-accent);
}

.mob-trigger {
  display: none;
}
.toggle-state {
  display: none;
}

@media (max-width: 768px) {
  .mob-trigger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }
  .jump-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--vital-bg);
    flex-direction: column;
    padding: 2rem 5%;
    box-shadow: var(--shadow-lvl);
  }
  .toggle-state:checked ~ .jump-links {
    display: flex;
  }
}

/* Announcement */
.alert-ribbon {
  background: var(--vital-accent);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.alert-msg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Split Hero */
.start-split {
  display: flex;
  min-height: 80vh;
}
.start-words {
  flex: 0 0 55%;
  background: var(--vital-surface);
  padding: var(--pad-scale) 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.start-heading {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.start-desc {
  font-size: 1.2rem;
  color: var(--vital-ink-light);
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.action-pill {
  display: inline-block;
  background: var(--vital-accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 999px; /* explicitly pill for buttons */
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
  width: max-content;
}
.action-pill:hover {
  background: var(--vital-accent-hover);
  transform: translateY(-2px);
}
.start-visual {
  flex: 0 0 45%;
  margin: 0;
}
.start-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .start-split {
    flex-direction: column;
  }
  .start-words, .start-visual {
    flex: 1 1 auto;
  }
  .start-visual {
    height: 40vh;
  }
}

/* Journal Section */
.journal-zone {
  padding-bottom: var(--pad-scale);
}
.journal-banner {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  display: block;
}
.journal-layout {
  display: flex;
  gap: 2rem;
  padding: 3rem 5%;
  background: transparent;
  margin-top: -4rem;
  position: relative;
}
.journal-pillar {
  flex: 1;
  background: var(--vital-bg);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--vital-accent);
  box-shadow: var(--shadow-lvl);
  border-radius: var(--radius-shape);
}
.pillar-head {
  font-size: 1.4rem;
}
.pillar-words {
  color: var(--vital-ink-light);
}
@media (max-width: 768px) {
  .journal-layout {
    flex-direction: column;
    margin-top: 0;
  }
}

/* Masonry Features */
.props-area {
  padding: var(--pad-scale) 5%;
  background: var(--vital-surface);
}
.props-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.props-masonry {
  column-count: 3;
  column-gap: 2rem;
}
.prop-unit {
  break-inside: avoid;
  background: var(--vital-bg);
  padding: 2.5rem;
  border-radius: var(--radius-shape);
  box-shadow: var(--shadow-lvl);
  margin-bottom: 2rem;
  border: 1px solid var(--vital-board);
}
.prop-mark svg {
  width: 36px;
  height: 36px;
  fill: var(--vital-accent);
  margin-bottom: 1rem;
}
.prop-head {
  font-size: 1.3rem;
}
.prop-words {
  color: var(--vital-ink-light);
}
@media (max-width: 992px) {
  .props-masonry { column-count: 2; }
}
@media (max-width: 600px) {
  .props-masonry { column-count: 1; }
}

/* Path Track */
.path-zone {
  padding: var(--pad-scale) 5%;
}
.path-zone-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.path-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.path-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--vital-accent);
  z-index: 1;
}
.path-node {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.path-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lvl);
}
.path-head {
  font-size: 1.2rem;
}
.path-words {
  color: var(--vital-ink-light);
}
@media (max-width: 768px) {
  .path-track {
    flex-direction: column;
    gap: 3rem;
  }
  .path-track::before {
    display: none;
  }
}

/* Finale Strip */
.finale-strip {
  background: var(--vital-accent);
  color: #fff;
  padding: var(--pad-scale) 5%;
  text-align: center;
}
.finale-heading {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.finale-strip .action-pill {
  background: #fff;
  color: var(--vital-accent);
}
.finale-strip .action-pill:hover {
  background: var(--vital-surface);
}

/* Footer */
.base-bar {
  background: var(--vital-ink);
  color: #fff;
  padding: 3rem 5%;
  text-align: center;
}
.base-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.base-links a {
  text-decoration: underline;
  opacity: 0.8;
}
.base-links a:hover {
  opacity: 1;
}
.base-legal {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 2rem;
}

/* Expert Elements */
.pakar-intro {
  text-align: center;
  padding: 4rem 5% 2rem;
}
.pakar-split {
  display: flex;
  padding: 0 5% var(--pad-scale);
  gap: 4rem;
  align-items: center;
}
.pakar-face {
  flex: 0 0 50%;
  margin: 0;
}
.pakar-face img {
  width: 100%;
  border-radius: var(--radius-shape);
  box-shadow: var(--shadow-lvl);
}
.pakar-story {
  flex: 0 0 50%;
}
.stats-ribbon {
  display: flex;
  justify-content: space-around;
  padding: 4rem 5%;
  background: var(--vital-surface);
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-chunk {
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vital-accent);
}
.stat-label {
  font-weight: 600;
  color: var(--vital-ink-light);
}

.approach-area {
  padding: var(--pad-scale) 5%;
}
.approach-fold {
  max-width: 800px;
  margin: 0 auto;
}
.fold-item {
  margin-bottom: 1rem;
  border: 1px solid var(--vital-board);
  border-radius: var(--radius-shape);
  padding: 1.5rem;
  background: var(--vital-bg);
}
.fold-head {
  font-size: 1.2rem;
  margin: 0;
}
.fold-body {
  margin-top: 1rem;
  color: var(--vital-ink-light);
}
@media (max-width: 768px) {
  .pakar-split { flex-direction: column; }
}

/* Reserve Elements */
.booking-dual {
  display: flex;
  padding: var(--pad-scale) 5%;
  gap: 4rem;
  align-items: flex-start;
}
.booking-details {
  flex: 0 0 45%;
}
.booking-card {
  background: var(--vital-surface);
  padding: 2.5rem;
  border-radius: var(--radius-shape);
  margin-bottom: 2rem;
  border-top: 3px solid var(--vital-accent);
}
.booking-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.booking-bullet-group {
  padding-left: 0;
  list-style: none;
}
.booking-bullet {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--vital-ink-light);
}
.booking-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--vital-accent);
  border-radius: 50%;
}

.booking-form-area {
  flex: 0 0 50%;
  background: var(--vital-bg);
  padding: 3rem;
  border-radius: var(--radius-shape);
  box-shadow: var(--shadow-lvl);
  border: 1px solid var(--vital-board);
}
.input-zone {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.input-zone label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.input-field {
  padding: 1rem;
  border: 1px solid var(--vital-board);
  border-radius: var(--radius-shape);
  font-family: inherit;
  font-size: 1rem;
  background: var(--vital-surface);
}
.check-zone {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.submit-trigger {
  width: 100%;
  border: none;
  cursor: pointer;
}

.faq-zone {
  padding: 0 5% var(--pad-scale);
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--vital-board);
  padding: 1.5rem 0;
}
.faq-ask {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.faq-answer {
  color: var(--vital-ink-light);
}
@media (max-width: 992px) {
  .booking-dual { flex-direction: column; }
  .booking-details, .booking-form-area { flex: 1 1 auto; }
}

/* Generic Pages */
.plain-zone {
  padding: var(--pad-scale) 5%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 80vh;
}
.plain-zone p {
  color: var(--vital-ink-light);
  margin-bottom: 1.5rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--vital-ink);
  color: #fff;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-sizing: border-box;
}
.cookie-words {
  font-size: 0.95rem;
  flex: 1;
  margin-right: 2rem;
}
.cookie-actions {
  display: flex;
  gap: 1rem;
}
.cookie-accept, .cookie-decline {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  border: none;
}
.cookie-accept {
  background: var(--vital-accent);
  color: #fff;
}
.cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 600px) {
  .cookie-notice { flex-direction: column; text-align: center; gap: 1rem; }
  .cookie-words { margin-right: 0; }
}