 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #FFFFFF;
    --warm-white: #FFFFFF;
    --blush: #C9A97A;
    --blush-deep: #A07840;
    --sage: #1A1A1A;
    --sage-light: #D4B896;
    --espresso: #111111;
    --espresso-mid: #333333;
    --text-muted: #7A6A56;
    --gold: #C9A97A;
    --gold-light: #D4B896;
    --tan: #C9A97A;
    --tan-light: #EAD9C0;
    --tan-mid: #B08B5A;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background-color: #FFFFFF;
    color: var(--espresso);
    overflow-x: hidden;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--tan-light);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--espresso);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--espresso-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 6rem;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 0.5px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 2rem;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--espresso-mid);
  }

  .hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--espresso);
    text-decoration: none;
    border-bottom: 1px solid var(--blush-deep);
    padding-bottom: 0.25rem;
    transition: color 0.2s, border-color 0.2s;
    width: fit-content;
  }

  .hero-cta:hover { color: var(--gold); border-color: var(--gold); }
  .hero-cta span { display: block; transition: transform 0.2s; }
  .hero-cta:hover span { transform: translateX(4px); }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tan-light) 0%, var(--tan) 60%, var(--tan-mid) 100%);
  }

  .hero-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    
  }

  
  @media (max-width:768px)  {
.hero-right{
 
  position: relative;
  
}

.hero-image-card{
position: absolute;
top: 30px;
}

  }


  .hero-image-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border: 0.5px solid rgba(201, 169, 122, 0.5);
  }

  .hero-image-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--espresso);
    line-height: 1.5;
  }

  .hero-image-card cite {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    font-style: normal;
  }

  /* Decorative cross */
  .deco-cross {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 4rem;
    right: 4rem;
    opacity: 0.3;
  }

  .deco-cross::before, .deco-cross::after {
    content: '';
    position: absolute;
    background: var(--espresso);
  }

  .deco-cross::before { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
  .deco-cross::after { width: 100%; height: 1px; top: 50%; transform: translateY(-50%); }

  /* STORY SECTION */
  .story {
    padding: 8rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
  }

  .story::before {
    content: 'Story';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: var(--tan-light);
    letter-spacing: 0.3em;
    pointer-events: none;
  }

  .story-image-stack {
    position: relative;
    height: 520px;
  }

  .story-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    background: linear-gradient(160deg, var(--tan-light) 0%, var(--tan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-img-main svg { opacity: 0.4; }

  .story-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    background: linear-gradient(160deg, var(--tan) 0%, var(--espresso) 100%);
    border: 6px solid var(--warm-white);
    
  }

  .story-year-badge {
    position: absolute;
    top: 45%;
    left: 60%;
    background: var(--espresso);
    color: var(--cream);
    padding: 1rem 1.5rem;
    text-align: center;
    z-index: 2;
  }

  .story-year-badge span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
  }

  .story-year-badge small {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  /*.story-content {}*/

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--espresso);
  }

  .section-title em { font-style: italic; font-weight: 300; }

  .story-text {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .story-divider {
    width: 3rem;
    height: 0.5px;
    background: var(--gold-light);
    margin: 2rem 0;
  }

  /* VALUES */
  .values {
    padding: 7rem 6rem;
    background: var(--espresso);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .values::after {
    content: '';
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    border: 0.5px solid rgba(201, 169, 122, 0.15);
    pointer-events: none;
  }

  .values-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .values-header .section-label { color: var(--gold-light); }

  .values-header .section-title { color: var(--cream); }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .value-item {
    border-top: 0.5px solid rgba(201, 169, 122, 0.3);
    padding-top: 2rem;
  }

  .value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201, 169, 122, 0.25);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--cream);
  }

  .value-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-weight: 300;
  }

  /* MEET SECTION */
  .meet {
    padding: 8rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: #FFFFFF;
  }

  .meet-image {
    position: relative;
  }

  .meet-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, var(--tan-light) 0%, var(--tan) 60%, var(--espresso) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .meet-photo-placeholder {
    text-align: center;
    color: rgba(17, 17, 17, 0.3);
  }

  .meet-photo-placeholder svg { margin-bottom: 0.5rem; }

  .meet-photo-placeholder p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .meet-tag {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--espresso);
    padding: 1.5rem 2rem;
  }

  .meet-tag p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--warm-white);
    line-height: 1.5;
  }

  .meet-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .credential {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .credential-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.55rem;
    flex-shrink: 0;
  }

  .credential p {
    font-size: 0.88rem;
    color: var(--text-muted);
  }

  /* JOURNEY TIMELINE */
  .journey {
    padding: 7rem 6rem;
    background: #FFFFFF;
  }

  .journey-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 0.5px;
    background: var(--tan-light);
    transform: translateX(-50%);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
  }

  .timeline-item:nth-child(odd) .tl-content { grid-column: 1; grid-row: 1; text-align: right; }
  .timeline-item:nth-child(odd) .tl-spacer { grid-column: 2; grid-row: 1; }

  .timeline-item:nth-child(even) .tl-spacer { grid-column: 1; grid-row: 1; }
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; }

  .tl-dot {
    position: absolute;
    left: 50%;
    top: 0.35rem;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--cream);
  }

  .tl-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
  }

  .tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 0.5rem;
  }

  .tl-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* CTA BANNER */
  .cta-banner {
    padding: 7rem 6rem;
    background: var(--tan-light);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before, .cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 0.5px solid rgba(176, 139, 90, 0.2);
  }

  .cta-banner::before { width: 40rem; height: 40rem; top: -20rem; left: -10rem; }
  .cta-banner::after { width: 25rem; height: 25rem; bottom: -12rem; right: -5rem; }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .cta-sub {
    font-size: 0.95rem;
    color: var(--espresso-mid);
    margin-bottom: 3rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--espresso);
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s;
  }

  .btn-primary:hover { background: var(--espresso-mid); }

  .btn-outline {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--espresso);
    color: var(--espresso);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
  }

  .btn-outline:hover { background: var(--espresso); color: var(--cream); }

  /* FOOTER */
  footer {
    padding: 3rem 6rem;
    background: var(--espresso);
    display: flex;
    justify-content:center;
    align-items: center;
    border-top: 0.5px solid rgba(201, 169, 122, 0.15);
  }

  footer .nav-logo { color: var(--cream); }

  footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.7s ease both 0.1s; }
  .hero-title { animation: fadeUp 0.7s ease both 0.25s; }
  .hero-subtitle { animation: fadeUp 0.7s ease both 0.4s; }
  .hero-cta { animation: fadeUp 0.7s ease both 0.55s; }

  @media (max-width: 900px) {
    nav { padding: 1.25rem 2rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 50vw; }
    .hero-left { padding: 7rem 2rem 3rem; }
    .story, .meet { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
    .story::before { display: none; }
    .story-image-stack { height: 320px; }
    .values { padding: 5rem 2rem; }
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
    .journey { padding: 5rem 2rem; }
    .cta-banner { padding: 5rem 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  }


  
.kaylove-txt-cont{
  background-color: black;
  text-align: center;

  font-family: "jost",sans-serif;
  font-weight: 500;
  padding: 12px 16px;
  color: white;
}