* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #0b2a16;
    --green-deep: #12351f;
    --green-mid: #183f25;
    --gold: #d8ad45;
    --gold-dark: #bb912f;
    --cream: #f4efe6;
    --white: #ffffff;
    --text-dark: #1d1d1d;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    --radius: 18px;
    --max-width: 1200px;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.5;
}

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

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

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(90deg, #022516 0%, #0c5c2a 50%, #022516 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 250px;
  height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: var(--white);
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.main-nav a.active {
  color: #d7b14a;
  font-weight: 600;
}

.btn {
    display: inline-block;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-small {
    padding: 11px 20px;
    font-size: 0.98rem;
}

.btn-gold {
    background: var(--gold);
    color: #1d1d1d;
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-green {
    background: var(--green-deep);
    color: var(--white);
}

.btn-green:hover {
    background: #0f2f19;
}

.hero {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 80px 0;
    max-width: 760px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 500;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 28px;
    line-height: 1.35;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.apply-hero {
  position: relative;
  padding: 92px 24px 88px;
  background:
    url("images/apply-hero.jpg") center/cover no-repeat;
  overflow: hidden;
}

.apply-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.apply-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #f7f1e6;
}

.apply-hero-eyebrow {
  margin: 0 0 14px;
  color: #d7b14a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.apply-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.93;
  color: #f7f1e6;
}

.apply-hero-lead {
  margin: 0 auto 18px;
  max-width: 820px;
  font-size: 1.38rem;
  line-height: 1.65;
  color: #f7f1e6;
}

.apply-hero-subtext {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.84);
}

.apply-success {
  max-width: 640px;
  margin: 60px auto;
  padding: 34px 28px;
  text-align: center;
  background: #f7f1e6;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.apply-success h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  color: #173222;
}

.apply-success p {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(23, 50, 34, 0.82);
}

.lifecraft-footer {
  margin-top: 120px;
  padding: 60px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* subtle separation from content above */
  border-top: 1px solid rgba(210, 163, 90, 0.15);
}

.lifecraft-link {
  display: inline-block;
  position: relative;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.lifecraft-link img {
  display: block;
  width: 150px;
  height: auto;

  /* slight glow to match your aesthetic */
  filter: drop-shadow(0 0 8px rgba(200, 120, 40, 0.15));
}

/* hover = activation */
.lifecraft-link:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.lifecraft-link:hover img {
  filter: drop-shadow(0 0 14px rgba(220, 130, 40, 0.35));
}

/* =========================
   INNER PAGES
========================= */

.inner-page-hero {
  padding: 88px 24px 78px;
  background: linear-gradient(90deg, #022516 0%, #0c5c2a 50%, #022516 100%);
}

.inner-page-hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #f7f1e6;
}

.inner-page-eyebrow {
  margin: 0 0 14px;
  color: #d7b14a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inner-page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.93;
  color: #f7f1e6;
}

.inner-page-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.16rem;
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.86);
}

.content-section {
  padding: 84px 24px;
}

.content-section-light {
  background: #f7f1e6;
}

.content-section-cream {
  background: linear-gradient(180deg, #f3e7d6 0%, #efe1cf 100%);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-container.narrow {
  max-width: 860px;
}

.content-container h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  color: #173222;
}

.content-container p {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(23, 50, 34, 0.82);
}

.section-eyebrow {
  margin: 0 0 12px;
  color: #b88a2f;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  gap: 22px;
}

.feature-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 50, 34, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #173222;
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(23, 50, 34, 0.78);
}

.gallery-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.gallery-header h2 {
  margin: 0 0 14px;
}

.gallery-header p {
  margin: 0;
}

.image-grid {
  display: grid;
  gap: 22px;
}

.image-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.split-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.split-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 50, 34, 0.08);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.split-card h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.15;
  color: #173222;
}

.split-card p {
  margin: 0 0 14px;
}

.page-cta-section {
  padding: 84px 24px 90px;
  background: linear-gradient(90deg, #022516 0%, #0c5c2a 50%, #022516 100%);
}

.page-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-cta-inner h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: #f7f1e6;
}

.btn.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 18px;
  background: #d7b14a;
  color: #173222;
  font-size: 1.06rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.2s ease;
}

.btn.btn-gold:hover {
  background: #dfbb59;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .feature-grid.three-col,
  .image-grid.three-col,
  .split-content {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .inner-page-hero {
    padding: 72px 20px 64px;
  }

  .inner-page-hero h1 {
    line-height: 0.98;
  }

  .content-section {
    padding: 64px 20px;
  }

  .feature-card,
  .split-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .image-card {
    border-radius: 20px;
  }

  .page-cta-section {
    padding: 64px 20px 72px;
  }

  .btn.btn-gold {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .apply-hero {
    padding: 74px 20px 68px;
  }

  .apply-hero h1 {
    line-height: 0.98;
  }

  .apply-hero-lead {
    font-size: 1.16rem;
  }

  .apply-hero-subtext {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.cards-section {
    padding: 42px 0 34px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px 22px 24px;
}

.card-content h3 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 90%;
}

.why-section {
    padding: 42px 0 46px;
    color: var(--white);
    background:
        radial-gradient(circle at center, rgba(46, 106, 54, 0.28) 0%, rgba(11, 42, 22, 0) 45%),
        linear-gradient(90deg, #06210f 0%, #0b2a16 50%, #06210f 100%);
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-bottom: 28px;
    color: inherit;
}

.section-title.center {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 8px;
}

.feature {
    padding: 10px 12px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.feature h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.25rem;
    max-width: 300px;
}

.glimpse-section {
    padding: 34px 0 52px;
}

.glimpse-section .section-title {
    color: var(--text-dark);
    margin-bottom: 24px;
}

.glimpse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.glimpse-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 24px 0;
    background: #081b0f;
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-size: 0.95rem;
}

.lifecraft-footer {
  margin-top: 120px;
  padding: 60px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* subtle separation from content above */
  border-top: 1px solid rgba(210, 163, 90, 0.15);
}

.site-footer {
  background: linear-gradient(90deg, #002e1f 0%, #0b5b2d 50%, #002e1f 100%);
  text-align: center;
  padding: 36px 20px 44px;
}

.footer-meta {
  margin-bottom: 18px;
}

.footer-location,
.footer-availability {
  margin: 0;
  color: #f6f1e7;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-location {
  opacity: 0.9;
}

.footer-availability {
  color: #d7b14a;
  font-weight: 700;
}

.footer-copy {
  margin: 0 0 22px;
  color: #f6f1e7;
  font-size: 0.98rem;
  opacity: 0.88;
}

.lifecraft-badge {
  display: inline-block;
}

.lifecraft-badge img {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}

.lifecraft-link {
  display: inline-block;
  position: relative;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.lifecraft-link img {
  display: inline-block;
  width: 150px;
  height: auto;
  margin: 0 auto;
  /* slight glow to match your aesthetic */
  filter: drop-shadow(0 0 8px rgba(200, 120, 40, 0.15));
}

/* hover = activation */
.lifecraft-link:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.lifecraft-link:hover img {
  filter: drop-shadow(0 0 14px rgba(220, 130, 40, 0.35));
}

.longterm-section {
  background:
    linear-gradient(90deg, #002e1f 0%, #0b5b2d 50%, #002e1f 100%);
  padding: 90px 32px;
}

.longterm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.longterm-copy {
  color: #f6f1e7;
}

.longterm-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7b14a;
  margin: 0 0 14px;
  font-weight: 700;
}

.longterm-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 18px;
  color: #f8f3ea;
}

.longterm-lead {
  font-size: 1.45rem;
  line-height: 1.4;
  color: #f4ead8;
  margin: 0 0 20px;
  max-width: 760px;
}

.longterm-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(248, 243, 234, 0.9);
  max-width: 760px;
  margin: 0 0 28px;
}

.longterm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 22px;
}

.longterm-list li {
  position: relative;
  padding-left: 22px;
  color: #f6f1e7;
  font-size: 1.02rem;
  line-height: 1.5;
}

.longterm-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d7b14a;
  font-size: 1.2rem;
  line-height: 1.2;
}

.longterm-meta {
  margin-top: 8px;
}

.longterm-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.price-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 243, 234, 0.72);
}

.longterm-price strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #d7b14a;
}

.longterm-note {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 243, 234, 0.84);
  margin: 0 0 30px;
}

.longterm-support {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 243, 234, 0.84);
  margin: 0 0 30px;
}

.longterm-laundry {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 243, 234, 0.84);
  margin: 0 0 30px;
}

.longterm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn-gold {
  background: #d7b14a;
  color: #142414;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-outline {
  border: 1.5px solid rgba(246, 241, 231, 0.26);
  color: #f6f1e7;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.longterm-card {
  display: flex;
}

.longterm-card-inner {
  background: rgba(255, 248, 238, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 34px 30px;
  color: #f6f1e7;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(4px);
  width: 100%;
}

.card-label {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7b14a;
  margin: 0 0 12px;
  font-weight: 700;
}

.longterm-card h3 {
  font-size: 1.9rem;
  line-height: 1.15;
  margin: 0 0 22px;
  color: #f8f3ea;
}

.ideal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ideal-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  line-height: 1.6;
  color: rgba(248, 243, 234, 0.92);
}

.ideal-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #d7b14a;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .longterm-container {
    grid-template-columns: 1fr;
  }

  .longterm-card {
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .longterm-section {
    padding: 72px 20px;
  }

  .longterm-lead {
    font-size: 1.16rem;
  }

  .longterm-list {
    grid-template-columns: 1fr;
  }

  .longterm-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .longterm-card-inner {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .longterm-card h3 {
    font-size: 1.55rem;
  }
}

.longterm-emotional {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f4ead8;
  margin: 10px 0 26px;
  font-style: italic;
  max-width: 720px;
}

.longterm-trigger {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f4ead8;
  margin: 14px 0 28px;
  max-width: 720px;
  opacity: 0.9;
}

.daily-life-section {
  padding: 90px 32px;
  background: linear-gradient(180deg, #f6f0e5 0%, #efe4d2 100%);
}

.daily-life-container {
  max-width: 1200px;
  margin: 0 auto;
}

.daily-life-copy {
  max-width: 760px;
  margin-bottom: 42px;
}

.daily-life-eyebrow {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b88a2f;
}

.daily-life-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  color: #163222;
}

.daily-life-intro {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(22, 50, 34, 0.82);
  max-width: 720px;
}

.daily-life-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.daily-life-item {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(22, 50, 34, 0.08);
  border-radius: 22px;
  padding: 26px 22px 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.daily-life-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b88a2f;
}

.daily-life-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #163222;
}

/* =========================
   APPLY PAGE
========================= */

.apply-page-section {
  padding: 72px 24px 84px;
  background: linear-gradient(180deg, #0a5d29 0%, #034c23 100%);
}

.apply-page-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.apply-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 30px 28px;
  color: #f7f1e6;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(4px);
}

.sidebar-label {
  margin: 0 0 12px;
  color: #d7b14a;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sidebar-card h2 {
  margin: 0 0 22px;
  font-size: 2.35rem;
  line-height: 1.05;
  color: #f7f1e6;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.sidebar-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(247, 241, 230, 0.92);
}

.sidebar-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d7b14a;
  font-size: 1.1rem;
  line-height: 1.35;
}

.sidebar-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.sidebar-price span {
  color: rgba(247, 241, 230, 0.74);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-price strong {
  color: #d7b14a;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
}

.sidebar-note {
  margin: 0;
  color: rgba(247, 241, 230, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.apply-form-wrap {
  min-width: 0;
}

.apply-form {
  background: #f7f1e6;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.form-intro {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 50, 34, 0.08);
}

.apply-eyebrow {
  margin: 0 0 10px;
  color: #b88a2f;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-intro h2 {
  margin: 0 0 12px;
  font-size: 3rem;
  line-height: 0.98;
  color: #173222;
}

.form-intro p {
  margin: 0;
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(23, 50, 34, 0.82);
}

.form-section {
  margin-bottom: 34px;
}

.form-section h3 {
  margin: 0 0 18px;
  color: #173222;
  font-size: 1.45rem;
  line-height: 1.2;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.one-col {
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

.apply-form label {
  margin-bottom: 10px;
  color: #173222;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 50, 34, 0.14);
  background: #fffdf8;
  border-radius: 16px;
  padding: 15px 16px;
  color: #173222;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: rgba(215, 177, 74, 0.8);
  box-shadow: 0 0 0 4px rgba(215, 177, 74, 0.16);
  background: #ffffff;
}

.apply-form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 2px 0;
  cursor: pointer;
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  padding: 0;
  border-radius: 4px;
}

.checkbox-wrap span {
  color: rgba(23, 50, 34, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.submit-area {
  margin-top: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(23, 50, 34, 0.08);
}

.submit-note {
  margin: 0 0 20px;
  color: rgba(23, 50, 34, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: none;
  border-radius: 18px;
  background: #d7b14a;
  color: #173222;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease;
}

.submit-btn:hover {
  background: #dfbb59;
  transform: translateY(-1px);
}

.hero-support {
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.9);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
}

.lang-link {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-link:hover {
  color: #ffffff;
}

.lang-link.active {
  color: #d7b14a; /* your gold */
  font-weight: 600;
}

.lang-divider {
  color: rgba(255,255,255,0.4);
}

@media (max-width: 1180px) {
  .apply-page-container {
    grid-template-columns: 1fr;
  }

  .apply-sidebar {
    position: static;
  }

  .sidebar-card {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .apply-page-section {
    padding: 56px 16px 64px;
  }

  .apply-form {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .form-intro h2 {
    font-size: 2.3rem;
  }

  .form-section h3 {
    font-size: 1.28rem;
  }

  .sidebar-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .sidebar-card h2 {
    font-size: 2rem;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .daily-life-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .daily-life-section {
    padding: 72px 20px;
  }

  .daily-life-grid {
    grid-template-columns: 1fr;
  }

  .daily-life-item {
    min-height: auto;
  }

  .daily-life-copy h2 {
    line-height: 1.02;
  }
}

/* Responsive */
@media (max-width: 1100px) {
    .main-nav {
        gap: 22px;
    }

    .hero-content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 900px) {
    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cards-grid,
    .features-grid,
    .glimpse-grid {
        grid-template-columns: 1fr;
    }

    .card-content p,
    .feature p {
        max-width: 100%;
    }

    .info-card img,
    .glimpse-grid img {
        height: auto;
    }

    .hero {
        min-height: 560px;
    }
}

@media (max-width: 640px) {
    .brand-logo {
      width: clamp(120px, 40vw, 170px);
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .card-content h3,
    .feature h3 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* =========================
   FOOTER CONTACT BUTTONS
========================= */

.footer-contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #f7f1e6;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(247, 241, 230, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 241, 230, 0.24);
  opacity: 1;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-contact-text {
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .footer-contact-links {
    gap: 10px;
    margin-top: 18px;
  }

  .footer-contact-btn {
    padding: 9px 12px;
  }

  .footer-contact-text {
    font-size: 0.9rem;
  }
}

/* APPLY PAGE CONTACT BOX */

.apply-contact-box {
  margin: 28px 0 10px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.apply-contact-text {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #eae4d8;
  opacity: 0.9;
}

.apply-contact-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.apply-contact-btn {
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #f7f1e6;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  transition: all 0.2s ease;
}

.apply-contact-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* APPLY PAGE CONTACT BOX */

.apply-contact-box {
  margin: 18px 0 34px;
  text-align: center;
}

.apply-contact-text {
  margin: 0 0 14px;
  font-size: 0.96rem;
  line-height: 1.5;
  color: #5f5a50;
}

.apply-contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.apply-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #173222;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(23, 50, 34, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.apply-contact-link:hover {
  color: #b88a2f;
  border-bottom-color: rgba(184, 138, 47, 0.45);
}

.apply-contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 8px;
}

.apply-contact-link.whatsapp .apply-contact-dot {
  background: #25d366;
}

.apply-contact-link.telegram .apply-contact-dot {
  background: #0088cc;
}

@media (max-width: 640px) {
  .apply-contact-box {
    margin: 16px 0 28px;
  }

  .apply-contact-links {
    gap: 14px;
  }

  .apply-contact-link {
    font-size: 0.92rem;
  }
}

/* =========================
   JOURNAL INDEX PAGE
========================= */

.main-nav a.active {
  color: #d7b14a;
  font-weight: 600;
}

.journal-hero {
  padding: 96px 24px 82px;
  background:
    linear-gradient(rgba(6, 32, 18, 0.62), rgba(6, 32, 18, 0.62)),
    url("images/hero.jpg") center/cover no-repeat;
}

.journal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #f7f1e6;
}

.journal-eyebrow {
  margin: 0 0 14px;
  color: #d7b14a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  color: #f7f1e6;
}

.journal-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.88);
}

/* Featured article */
.journal-featured-section {
  padding: 40px 24px 26px;
  background: #f4efe6;
}

.journal-featured-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 50, 34, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.journal-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.11);
}

.journal-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.journal-featured-content {
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-kicker {
  margin: 0 0 12px;
  color: #b88a2f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-featured-content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  color: #173222;
}

.journal-featured-content p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(23, 50, 34, 0.82);
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(23, 50, 34, 0.62);
  font-size: 0.94rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  color: #173222;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.read-more-link:hover {
  opacity: 0.75;
}

/* Journal listing */
.journal-list-section {
  padding: 28px 24px 84px;
  background: linear-gradient(180deg, #f6f0e5 0%, #efe4d2 100%);
}

.journal-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journal-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.journal-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  color: #173222;
}

.journal-section-head p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(23, 50, 34, 0.82);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.journal-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 50, 34, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.journal-card-link {
  display: block;
  height: 100%;
}

.journal-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.journal-card-content {
  padding: 24px 22px 24px;
}

.journal-card-content h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.18;
  color: #173222;
}

.journal-card-content p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(23, 50, 34, 0.78);
}

.journal-card-content .post-meta {
  margin: 0;
}

/* Journal CTA */
.journal-cta-section {
  padding: 0 24px 92px;
  background: linear-gradient(180deg, #efe4d2 0%, #efe4d2 100%);
}

.journal-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #022516 0%, #0c5c2a 50%, #022516 100%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.journal-cta-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.04;
  color: #f7f1e6;
}

.journal-cta-inner p {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.86);
}

/* Responsive */
@media (max-width: 1100px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .journal-featured-card {
    grid-template-columns: 1fr;
  }

  .journal-featured-image img {
    min-height: 280px;
  }
}

@media (max-width: 780px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .journal-hero {
    padding: 74px 20px 68px;
  }

  .journal-hero h1 {
    line-height: 0.98;
  }

  .journal-lead {
    font-size: 1.08rem;
  }

  .journal-featured-section,
  .journal-list-section,
  .journal-cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .journal-featured-content {
    padding: 28px 22px;
  }

  .journal-card-content {
    padding: 22px 20px;
  }

  .journal-card-content h3 {
    font-size: 1.38rem;
  }

  .journal-cta-inner {
    padding: 38px 20px;
    border-radius: 24px;
  }
}

/* =========================
   JOURNAL ARTICLE PAGE
========================= */

.journal-article-hero {
  position: relative;
  padding: 100px 24px 88px;
  background: url("images/hero.jpg") center/cover no-repeat;
  overflow: hidden;
}

.journal-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.journal-article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #f7f1e6;
}

.journal-article-eyebrow {
  margin: 0 0 14px;
  color: #d7b14a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-article-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.95;
  color: #f7f1e6;
}

.journal-article-lead {
  margin: 0 auto 18px;
  max-width: 820px;
  font-size: 1.22rem;
  line-height: 1.8;
  color: rgba(247, 241, 230, 0.9);
}

.journal-article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(247, 241, 230, 0.8);
  font-size: 0.96rem;
}

.journal-article-section {
  padding: 84px 24px 96px;
  background: linear-gradient(180deg, #f6f0e5 0%, #efe4d2 100%);
}

.journal-article-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journal-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.journal-article-main {
  min-width: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 50, 34, 0.08);
  border-radius: 30px;
  padding: 42px 42px 46px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.journal-intro {
  font-size: 1.14rem;
  line-height: 1.9;
  color: rgba(23, 50, 34, 0.88);
  margin: 0 0 28px;
}

.journal-article-main h2 {
  margin: 34px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: #173222;
  scroll-margin-top: 110px;
}

.journal-article-main p {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(23, 50, 34, 0.82);
}

.journal-article-image {
  margin: 28px 0 30px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.journal-article-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.journal-bullet-list {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.journal-bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(23, 50, 34, 0.82);
}

.journal-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d7b14a;
  font-size: 1.25rem;
  line-height: 1.2;
}

.journal-article-quote {
  margin: 30px 0;
  padding: 26px 28px;
  border-left: 4px solid #d7b14a;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 22px 22px 0;
}

.journal-article-quote p {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.8;
  color: #173222;
  font-style: italic;
}

.journal-article-cta {
  margin-top: 40px;
  padding: 34px 30px;
  border-radius: 24px;
  background: linear-gradient(90deg, #022516 0%, #0c5c2a 50%, #022516 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.journal-article-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: #f7f1e6;
}

.journal-article-cta p {
  color: rgba(247, 241, 230, 0.88);
}

.journal-article-sidebar {
  position: sticky;
  top: 112px;
}

.journal-sidebar-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 50, 34, 0.08);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  margin-bottom: 22px;
}

.journal-sidebar-label {
  margin: 0 0 14px;
  color: #b88a2f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.journal-sidebar-list li {
  margin-bottom: 12px;
}

.journal-sidebar-list li:last-child {
  margin-bottom: 0;
}

.journal-sidebar-list a {
  color: #173222;
  font-size: 0.98rem;
  line-height: 1.55;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.journal-sidebar-list a:hover {
  opacity: 0.72;
}

@media (max-width: 980px) {
  .journal-article-layout {
    grid-template-columns: 1fr;
  }

  .journal-article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .journal-article-hero {
    padding: 78px 20px 72px;
  }

  .journal-article-hero h1 {
    line-height: 0.98;
  }

  .journal-article-lead {
    font-size: 1.08rem;
  }

  .journal-article-section {
    padding: 64px 20px 72px;
  }

  .journal-article-main {
    padding: 28px 22px 32px;
    border-radius: 24px;
  }

  .journal-article-image img {
    height: 280px;
  }

  .journal-article-quote {
    padding: 22px 20px;
  }

  .journal-article-cta {
    padding: 28px 22px;
  }
}
/* =========================
   JOURNAL ARTICLE VARIANT
   INTEGRATION HERO
========================= */

.journal-article-hero-integration {
  background: url("images/glimpse-2.jpg") center/cover no-repeat;
}
/* =========================
   JOURNAL ARTICLE VARIANT
   LONG-STAY HERO
========================= */

.journal-article-hero-longstay {
  background: url("images/glimpse-3.jpg") center/cover no-repeat;
}
/* =========================
   JOURNAL ARTICLE VARIANT
   DAY PAGE
========================= */

.journal-article-hero-day {
  background: url("images/restaurant.jpg") center/cover no-repeat;
}

/* JOURNAL HERO - FIT PAGE */
.journal-article-hero-fit {
  background: url("images/glimpse-2.jpg") center/cover no-repeat;
}

/* JOURNAL HERO - NATURE PAGE */
.journal-article-hero-nature {
  background: url("images/glimpse-1.jpg") center/cover no-repeat;
}

/* JOURNAL HERO - INTENTION PAGE */
.journal-article-hero-intention {
  background: url("images/stay.jpg") center/cover no-repeat;
}

/* =========================
   INLINE ARTICLE LINKS
========================= */

.journal-article-main a {
  color: #c6a86b; /* soft gold */
  text-decoration: none;
  border-bottom: 1px solid rgba(198,168,107,0.35);
  transition: all 0.2s ease;
}

.journal-article-main a:hover {
  color: #e0c48a;
  border-bottom: 1px solid rgba(224,196,138,0.8);
}

.shortstay-note {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 24px 26px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(224, 184, 76, 0.28);
  border-radius: 22px;
}

.shortstay-note h3 {
  margin: 0 0 10px;
  color: #e0b84c;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortstay-note p {
  margin: 0 0 18px;
  color: #fff7e8;
  font-size: 1.08rem;
  line-height: 1.7;
}

.shortstay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: #e0b84c;
  color: #053b21;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.shortstay-link:hover {
  background: #f0c95a;
  transform: translateY(-2px);
}

/* Short Stay Note Apply Page */

.shortstay-note-apply {
  margin-bottom: 28px;
  padding: 24px 26px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(224, 184, 76, 0.28);
  border-radius: 22px;
}

.shortstay-note-apply h3 {
  margin: 0 0 10px;
  color: #e0b84c;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortstay-note-apply p {
  margin: 0 0 18px;
  color: #fff7e8;
  font-size: 1.08rem;
  line-height: 1.7;
}

.shortstay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: #e0b84c;
  color: #053b21;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.shortstay-link:hover {
  background: #f0c95a;
  transform: translateY(-2px);
}
/* Short Stay Note Apply Page */

.shortstay-note-apply {
  margin-bottom: 28px;
  padding: 24px 26px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(224, 184, 76, 0.28);
  border-radius: 22px;
}

.shortstay-note-apply h3 {
  margin: 0 0 10px;
  color: #e0b84c;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortstay-note-apply p {
  margin: 0 0 18px;
  color: #fff7e8;
  font-size: 1.08rem;
  line-height: 1.7;
}

.shortstay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: #e0b84c;
  color: #053b21;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.shortstay-link:hover {
  background: #f0c95a;
  transform: translateY(-2px);
}