/* ============================================
   THE FIFTH KEY — Private Wardrobe Advisory
   ============================================ */

:root {
  --cream: #faf9f5;
  --cream-2: #f4f3ef;
  --black: #1a1a1a;
  --black-soft: #232323;
  --wood-dark: #3e2a1a;
  --wood-mid: #7a5a3a;
  --gold: #a9793f;
  --text-body: #55534c;
  --text-muted: #8a887f;
  --border: #e4e1d8;

  --font-serif: 'DM Sans', sans-serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 100%;
  --gutter: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  background: var(--cream);
  color: var(--black);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

em { font-style: italic; font-family: 'Libre Caslon Text', sans-serif; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46645C;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
}

.eyebrow-light { color: rgba(250,249,245,0.55); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.hero_cta {
  font-size: 1.13rem;
  border-radius: 999px;

}
.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: transparent; color: var(--black); border-color: var(--black); }

.btn-light { background: var(--cream); color: var(--black); }
.btn-light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }

.btn-block {
    display: block;
    width: 40%;
    border-radius: 999px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.12rem;
  width: fit-content;
  color: #1A1A1A;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: gap 0.3s ease, opacity 0.3s ease;
}
.link-arrow span { transition: transform 0.3s ease; display: inline-block; }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- Layout helpers ---------- */
section { padding: 110px var(--gutter); }

.section-title {
  font-family: 'Libre Caslon Text', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1B1C1A;
  line-height: 56px;
  font-weight: 400;
  text-align: start;
  margin-bottom: 40px;
}

.section-subtitle {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FBF9F5;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #FFFFFF;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 318px;
}

.logo-mark { color: var(--black); flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-text em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 32px;
    font-weight: 500;
    font-size: 18px;
    color: #1B1C1A;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 1.2px;
}
.nav-links a { position: relative; transition: opacity 0.3s ease; }
.nav-links a:hover { opacity: 0.55; }

.nav-cta { 
    padding: 13px 22px;
    border-radius: 999px; 
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--black);
  width: 100%;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.mobile-menu .btn { margin: 18px var(--gutter); }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  background: #F5F3EF;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0 0 80px;
  /* padding: 70px var(--gutter) 100px; */
}

.hero h1 {
  font-family: 'Libre Caslon Text', sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -1.6px;
  line-height: 1.12;
  color: #1B1C1A;
  margin-bottom: 30px;
}

.hero-copy {
  color: #444748;
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 448px;
  margin-bottom: 30px;
  line-height: 36px;
}

.hero-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-image img { filter: saturate(0.85) contrast(1.02); }

/* ============ PHILOSOPHY ============ */
.philosophy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 30px;
  padding: 22px 0;
}
.Story {
  display: block;
}
.story_heading {
  font-size: 60px;
  font-weight: 300;
  color: #333333;
  font-family: 'Playfair Display', sans-serif;
  padding: 0px var(--gutter);
}
.story_heading>em {
  font-style: italic;
}
.story_container {
    grid-template-columns: 1.2fr 0.8fr;
    display: grid;
    align-items: stretch;
    gap: 30px;
    padding: 0;
}
.Story .philosophy-text {
  padding: 0px var(--gutter);
  justify-content: normal;

}
.philosophy-image { min-height: 480px; overflow: hidden; }
.philosophy-image img { filter: sepia(0.15) saturate(0.9); }

.philosophy-text {
  padding: 70px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.philosophy-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.13rem);
  font-weight: 400;
  line-height: 50px;
  font-family: 'Libre Caslon Text', sans-serif;
  color: #1A1A1A;
  margin-bottom: 32px;
}
.philosophy-text em { color: #46645C; }

.philosophy-text p {
  font-family: var(--font-serif);
  color: #444748;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

/* ============ SERVICES ============ */
.services {background-color: #F5F3EF; max-width: var(--container); margin: 0 auto; padding: 40px 70px;}

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

.service-image {
  aspect-ratio: 5/4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 26px;
}
.service-image img { transition: transform 0.6s ease; filter: saturate(0.9);}
.service-card:hover .service-image img { transform: scale(1.06); }

.service-card h3 {
  font-family: "Libre Caslon Text", sans-serif;
  font-size: 2rem;
  color: #191C1E;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card p {
  font-family: var(--font-serif);
  color: #222222;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 24px;
}

/* ============ WHY THE FIFTH KEY ============ */
.why {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  padding: 80px;
  gap: 43px;
}

.why-heading { position: sticky; top: 120px; align-self: start; height: fit-content; }
.why-heading h2 {
  font-size: 68px;
  font-weight: 400;
  line-height: 80px;
  font-family: "Libre Caslon Text", sans-serif;
  color: #1B1C1A;
}
.why-heading em { color: var(--gold); }

.why-row {
  display: grid;
  gap: 24px;
  padding-bottom: 70px;
  grid-template-columns: 0.5fr 1.5fr;
}

.reverse-why {
  grid-template-columns: 1.5fr 0.5fr;
}
.mobile_grid {
    display: flex;
    gap: 24px;
}

.why-label {
  font-family: "Libre Caslon Text", sans-serif;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2rem;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  color: #C4C7C7;
  align-self: start;
}

.why-content h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  font-family: "Libre Caslon Text", sans-serif;
  color: #1B1C1A;
  margin-bottom: 16px;
}
.why-content p {
  max-width: 512px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--font-serif);
  color: #222222;
}
.why-profile-image {
  border-radius: 4px;
}

/* ============ ADVISORY JOURNEY ============ */
.journey {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 120px 80px;
}
.journey-step {
  display: flex;
  align-items: center;
  gap: 30px;
}
 .journey_content {
  border-left: 1px solid #FFFFFF1A;
  padding: 0 12px;
 }
.journey .eyebrow-light { 
  font-size: 2.13rem;
  font-weight: 400;
  line-height: 24px;
  font-family: "Libre Caslon Text", sans-serif;
  color: #FFFFFF99;
  text-transform: capitalize;
  text-align: left;
  margin-bottom: 12px;
 }
 
.journey_header{
  margin-bottom: 60px;
}

.journey_motif img{
  width: 96px;
  height: 4px;
}
.journey-icon {
  width: 40px;
  height: 44px;
  padding-top: 4px;
}
.journey-grid {
  display: grid;
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
  gap: 30px;
}

.journey-step h3 { 
  color: #FFFFFF;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Libre Caslon Text", sans-serif;
  margin-bottom: 6px;
 }
.journey-step p { 
  color: #FFFFFF;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Libre Caslon Text", sans-serif;
 }

/* ============ GALLERY ============ */
.gallery { padding: 40px 80px; }
.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.gallery-col { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}
.gallery-item img { filter: saturate(0.9); }
.gallery-tall { aspect-ratio: 3/4.3; }
.gallery-col .gallery-item { aspect-ratio: 3/2; }

/* ============ PRICING ============ */
.pricing { max-width: var(--container); margin: 0 auto; padding: 0 80px;}

.pricing .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
    letter-spacing: -1.2px;
    color: #333333;
    margin-bottom: 24px;
}

.pricing .section-subtitle {
    text-align: start;
    margin: 0 auto 30px;
    color: #71717A;
    font-size: 18px;
    line-height: 29.25px;
    max-width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  margin: 0 auto;
  background: #E4E4E7;
}

.pricing-card {
  position: relative;
  padding: 80px;
  background: #FFFFFF;
}

.tier-eyebrow {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A1A1AA;
}

.pricing-card--featured {
  background: #CAA24F;
}

.pricing-card--featured h3 {
  color: #FFFFFF;
}

.pricing-card--featured .tier-eyebrow { color: rgba(250,249,245,0.5); }

.pricing-card h3 {
  font-size: 70px;
  font-style: italic;
  margin-bottom: 6px;
  font-family: 'playfair display';
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.96px;
  margin-bottom: 40px;
}

.tier-tag {
  font-family: 'inter';
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #A1A1AA;
  margin-bottom: 40px;
  font-weight: 400;
}

.tier-list { list-style: none; margin-bottom: 34px; height: 310px;}
.tier-list li {
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  padding-left: 22px;
  padding-bottom: 24px;
  position: relative;
  color: #52525B;
  font-family: "Inter";
}
.pricing-card--featured .tier-list li {
  color: rgba(250,249,245,0.85);
}
.tier-list li::before {
  content: '•';
  position: absolute;
  left: 0;
 font-size: 24px;
}


.pricing-note {
  text-align: center;
  margin-top: 30px;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #CAA24F;
  font-family: 'Inter';
}
.pricing-note em{
  color: #000000;
  font-style: normal;
  font-family: 'inter';
}

/* ============ CTA / CONTACT ============ */
.cta_container {
  padding: 40px 80px;
  margin-top: 100px;
}
.cta {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  padding:40px 0 30px 0;
  border-top: 1px solid #1A1A1A;
}

.cta-inner h2 {
  font-size: 72px;
  margin-bottom: 34px;
  font-weight: 400;
  color: #1B1C1A;
  line-height: 72px;
  font-family: 'Libre Caslon Text', sans-serif;
}
.cta-inner em { color: #1B1C1A; }

.cta-inner a {
  font-size: 18px;
  border-radius: 999px;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  
}

.cta-details .detail .detail-value a::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    margin-left: 14px;
    background: url("/image/whatsapp.svg") no-repeat center;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cta-details .detail .detail-value a:hover::after {
    opacity: 1;
    visibility: visible;
}
.detail { display: flex; flex-direction: column; gap: 4px; }
.detail-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #46645C;
}
.detail-value { font-size: 24px;
    font-weight: 400;
    font-family: 'Libre Caslon Text', sans-serif;
    line-height: 32px; }

/* ============ FOOTER ============ */
.footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--gutter) 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  width: 100%;
}

.footer-logo img{
  width: 100%;
}

.footer-links { display: flex; gap: 30px; font-size: 0.8rem; letter-spacing: 0.05em; }
.footer-links a { transition: opacity 0.3s ease;     
  font-size: 24px;
  font-weight: 400;
  color: #444748;
  line-height: 32px;
  letter-spacing: 1.2px; }
.footer-links a:hover { opacity: 0.55; }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #444748;
  padding-top: 30px;
  line-height: 30px;
  font-weight: 400;
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  section { padding: 90px var(--gutter); }

  .hero { gap: 40px; padding-top: 50px; }

  /* .philosophy { grid-template-columns: 1fr; } */
  .philosophy-image { min-height: 340px; }
  .philosophy-text { padding: 60px var(--gutter); }

  .services-grid { gap: 32px; }

  .why { grid-template-columns: 1fr; }
  .why-heading { position: static; margin-bottom: 20px; }

  /* .cta { grid-template-columns: 1fr; } */
  .cta-details {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 28px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }
}

/* ---- Small tablet / large mobile ---- */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero {
    padding: 0 0 0 40px;
  }
  .hero-copy { max-width: none; }
   
  .philosophy-text {
    padding: 0;
  }

  .why {
    padding: 40px;
  }
  .journey {
    padding: 60px 40px;
  }
  .gallery {
    padding: 40px 5% !important;
  }
  .services-grid { grid-template-columns: 1fr; gap: 50px; }

  .journey-grid { grid-template-columns: 1fr; gap: 40px; }
  .journey .eyebrow-light { text-align: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall:first-child { grid-row: span 2; }
  .gallery-col { grid-column: span 2; grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }
  .gallery-tall:last-child { grid-column: span 2; aspect-ratio: 16/9; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }

  .cta {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .cta_container {
    padding: 40px 40px;
    margin-top: 0;
  }
  .cta-inner h2 {
    font-size: 46px;
  }
  .cta-inner a {
    font-size: 14px;
  }
  .detail-value {
    font-size: 18px;
    line-height: 22px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 560px) {
  section { padding: 20px; }
  .nav-inner { padding: 16px 20px; }
  .footer .logo img {
    width: 100%;
    height: 100%;
  }
  .logo img {
    width: 220px;
    height: 60px;
  }

  .logo-text strong { font-size: 0.92rem; }
  .logo-text em { font-size: 0.5rem; }

  .hero-image { order: -1;}
  .hero { padding: 20px; gap: 34px; grid-template-columns: unset;}
  .hero h1 { font-size: 40px; }
  
  .philosophy {
    grid-template-columns: unset;
    padding: 0px 20px;
  }
  .philosophy-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .philosophy-text { padding: 0; }

  .philosophy-image img {
    border-radius: 4px;
  }
  .services {
    padding: 20px;
  }
  .pricing {
    padding: 20px;
  } 
  .tier-list {
    height: auto;
    margin-bottom: 10px;
  }
  .tier-list li {
    font-size: 18px;
  }
  .pricing-card h3 {
    font-size: 40px;
    line-height: 42px;
  }
  .pricing .section-title {
    font-size: 40px;
    line-height: 42px;
  }
  .btn-block {
    width: 100%;
  }
  .story_container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .story_container .philosophy-image {
    order: -1;
  }
  .story_container .philosophy-text {
    padding: 0;
  }
  .why {
    padding: 20px;
    gap: 0;
  }
  .why-heading h2 {
    font-size: 40px;
    line-height: 48px;
  }
  
  .why-row { grid-template-columns: 1fr; gap: 14px; padding: 15px 0; }
  .why-label { writing-mode: vertical-rl;  font-size: 21px;}
  .why-content h3 {
    font-size: 26px;
  }
  
  .reverse-why .why-profile-image {
    order: -1;
  }

  .journey {
    padding: 60px 20px;
  }
  .journey .eyebrow-light {
    text-align: left;
    line-height: 32px;
    font-size: 26px;
  }
  

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-col { grid-column: span 1; grid-template-columns: 1fr 1fr; }
  .gallery-tall:first-child { grid-row: auto; aspect-ratio: 4/5; }
  .gallery-tall:last-child { grid-column: span 1; aspect-ratio: 4/5; }

  .pricing-card { padding: 34px 26px; }

  .cta {
    grid-template-columns: 1fr;
  }
  .cta_container {
        padding: 20px 20px;
  }
  .cta-details { flex-direction: column; gap: 20px; }
  .cta-inner h2 {
    font-size: 40px;
    line-height: 42px;
  }
  
  .cta-inner a {
    font-size: 10px;
  }
  .footer { flex-direction: column; text-align: center; justify-content: center; }
  .footer-links { justify-content: center; }
}
.row_gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.col_gallery {
  width: 50%;
}
.flex_gallery {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
}