/* =========================
   RESET (Global) 
========================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  color: #222;
}
/* End */

/* =========================
   HEADER (Desktop) 
   ⤷ Encapsulated under .pv-header
========================= */
.pv-header {
  position: sticky;
  top: 0;
  background: #004364;
  border-bottom: 1px solid #00344d;
  width: 100%;
  z-index: 9999;
  margin-top: 0;
  padding-top: 0;
  height: 100px;
}

.pv-header .pv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* LOGO (Header-only) */
.pv-header .pv-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pv-header .pv-brand img {
  height: 80px;
  width: auto;
  display: block;
}

/* NAVIGATION (Desktop, Header-only) */
.pv-header .pv-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-right: 35px;
}

.pv-header .pv-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
}

.pv-header .pv-nav a:hover,
.pv-header .pv-nav a:focus {
  color: #ffd814;
  background-color: rgba(255, 216, 20, 0.2);
}

/* BURGER (Desktop hidden, Header-only) */
.pv-header .pv-burger {
  display: none;
}

/* DRAWER (Header-only) */
.pv-header .pv-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  display: none;
  z-index: 10000; /* above header */
}

.pv-header .pv-drawer.open { display: block; }

.pv-header .pv-drawer-nav {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(85vw, 360px);
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: -12px 0 24px rgba(0, 0, 0, .08);
}

.pv-header .pv-drawer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

.pv-header .pv-drawer-nav a {
  color: #1f2a37;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 6px;
  border-radius: 8px;
}

.pv-header .pv-drawer-nav a:hover,
.pv-header .pv-drawer-nav a:focus {
  background: #f3f7fb;
}

/* =========================
   HEADER (Mobile ≤1024px) 
========================= */
@media (max-width: 1024px) {
  .pv-header { height: 80px; }

  .pv-header .pv-container {
    max-width: 100vw;
    padding-inline: 12px;
  }

  .pv-header .pv-brand img {
    height: 78px;
    max-height: 80px;
  }

  .pv-header .pv-nav { display: none; }

  .pv-header .pv-burger {
    display: inline-block;
    font-size: 1.6rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .pv-header .pv-drawer-nav {
    width: clamp(240px, 62vw, 280px);
    padding: 20px 16px;
    gap: 12px;
    border-left: 1px solid #e5eef5;
  }

  .pv-header .pv-drawer-nav a {
    font-size: 0.95rem;
    padding: 10px 8px;
  }
}
/* End */

/* =========================
   HEADER (Mobile ≤640px) 
========================= */
@media (max-width: 640px) {
  .pv-header .pv-drawer-nav { width: clamp(220px, 70vw, 248px); }
}
/* End */

/* =========================
   HERO (Desktop) 
========================= */
@media (min-width: 1025px) {
  .hero-section{
    background: #1f2931;
    margin: 0;
    padding: 48px 0 64px;
    height: auto;
    min-height: unset;
    display: block;
    color: #fff;
  }

  .hero-section::after{ content: none; }

  .hero-section .image-container{
    position: relative;
    width: min(1100px, 90vw);
    aspect-ratio: 16 / 6;
    max-height: 420px;
    margin: 0 auto 28px;
    overflow: hidden;
    border-radius: 6px;
  }

  .hero-section .image-container::before{
    content:"";
    position: absolute; inset: 0;
    background: rgba(0,0,0,.35);
    pointer-events: none;
  }

  .hero-section .image-container img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 28%;
  }

  .hero-section .text-container{
    width: min(980px, 90vw);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .hero-section .text-container h1{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    color: #D9B368;
    margin: 0;
  }

  .hero-section .text-container .tagline{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.35;
    margin: 0;
    max-width: 48ch;
  }

  .hero-section .text-container .description{
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.75;
    margin: 0;
    max-width: 75ch;
  }
}
/* End */

/* =========================
   HERO (Mobile) 
========================= */
@media (max-width: 1024px) {
  .hero-section {
    background: #1f2931;
    margin: 0;
    padding: 18px 0 28px;
    height: auto;
    display: block;
    color: #fff;
  }

  .hero-section::after { content: none; }

  .hero-section .image-container {
    position: relative;
    width: min(94vw, 620px);
    aspect-ratio: 16 / 10;
    max-height: 320px;
    margin: 0 auto 16px;
    overflow: hidden;
    border-radius: 6px;
  }

  .hero-section .image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 28%;
  }

  .hero-section .text-container {
    width: min(92%, 560px);
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .hero-section .text-container h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.12;
    color: #D9B368;
    margin: 0;
  }

  .hero-section .text-container .tagline {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.35;
    margin: 0;
    max-width: 40ch;
  }

  .hero-section .text-container .description {
    font-family: 'Playfair Display', serif;
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.55;
    margin: 0;
    max-width: 42ch;
  }
}
/* End */

/* =========================
   IMAGE (Mobile) 
========================= */
.image-content {
  text-align: center;
  margin: 0 auto 20px;
}

.image-content img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border: none;
  border-radius: 12px;
}
/* End */

/* =========================
   TEXT (Mobile) 
========================= */
.text-content {
  width: 100%;
  text-align: center;
}
/* End */

/* =========================
   OUR STORY (Global)
========================= */
.our-story-section {
  background-color: #fff;
  padding: 50px 20px;
}

.our-story-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.image-content {
  text-align: center;
}

.image-content img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: none;
}

.text-content {
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.8;
  color: #222;
}

.text-content h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  margin-bottom: 20px;
  color: #004364;
}

.story-description {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.8;
  color: #333;
}

/* =========================
   OUR STORY (Desktop)
========================= */
@media (min-width: 1025px) {
  .our-story-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .image-content {
    width: 420px;
    height: 550px;
    position: relative;
    top: 90px;
    left: 1110px;
    margin: 0 0 230px 20px;
    text-align: center;
    background: none;
    border: none;
  }

  .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: none;
  }

  .text-content {
    width: 50%;
    margin-left: 150px;
    margin-top: -430px;
  }
}

/* =========================
   OUR STORY (Mobile)
========================= */
@media (max-width: 768px) {
  .our-story-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
  }

  .our-story-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .text-content {
    width: 80%;
    text-align: left;
  }

  .image-content {
    width: 80%;
    text-align: center;
  }

  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}

/* =========================
   OUR MISSION (Global) 
========================= */
.our-mission-section {
  background-color: #f5f5f5;
  padding: 50px 20px;
}

.our-mission-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text-content {
  width: 80% !important;
  margin-left: 10% !important;
  text-align: left !important;
  font-size: 1.2rem !important;
  font-family: 'Playfair Display', serif !important;
  line-height: 1.8 !important;
  color: #222 !important;
}

.mission-text-content h2 {
  font-size: 2.5rem !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: bold !important;
  margin-bottom: 20px !important;
  color: #004364 !important;
  position: relative !important;
  top: 0px !important;
  left: 0px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-top: 0px !important;
}

.mission-description {
  font-size: 1.2rem !important;
  font-family: 'Playfair Display', serif !important;
  line-height: 1.8 !important;
  color: #333 !important;
  position: relative !important;
  top: 0px !important;
  left: 0px !important;
  margin-top: 20px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-bottom: 0px !important;
}
/* End */

/* =========================
   FOOTER (Global) 
========================= */
.pv-footer {
  margin-top: 48px;
  background: linear-gradient(135deg, #004364, #0b6cab);
  color: #fff;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pv-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 36px 20px;
  text-align: left;
  width: 100%;
}

.pv-foot-col h4 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.pv-foot-col h5 {
  font-size: 1rem;
  margin: 0 0 10px;
  color: #ffd814;
}

.pv-foot-col a,
.pv-foot-col p {
  display: block;
  color: #e6f1f7;
  text-decoration: none;
  margin: 6px 0;
  font-size: 0.95rem;
}

.pv-foot-col a:hover {
  text-decoration: underline;
}

.pv-footer-bottom {
  text-align: left;
  width: 100%;
  font-size: 0.9rem;
  color: #eaf6ff;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.pv-footer-bottom span {
  margin: 0;
}

#pv-year {
  font-weight: bold;
}
/* End */

/* =========================
   FOOTER (Mobile ≤1024px) 
========================= */
@media (max-width: 1024px) {
  .pv-footer-grid { grid-template-columns: 1fr 1fr; }
}
/* End */

/* =========================
   FOOTER (Mobile ≤640px) 
========================= */
@media (max-width: 640px) {
  .pv-footer-grid { grid-template-columns: 1fr; }
}
/* End */