 :root{
    --cream: #FBF1EC;
    --cream-2: #F6E7DF;
    --rose-deep: #8C2F4E;
    --rose-mid: #B85C77;
    --rose-light: #EFC4CF;
    --blush: #F4D9DF;
    --gold: #C69A45;
    --plum: #3A1F2A;
    --plum-soft: #6B4552;
    --white: #FFFDFB;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Jost', sans-serif;
    background:var(--cream);
    color:var(--plum);
    overflow-x:hidden;
  }
  h1,h2,h3,.serif{
    font-family:'Cormorant Garamond', serif;
    font-weight:600;
  }
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}
  .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  .content-headig{
    font-family:'Jost', sans-serif;
    letter-spacing:0.28em;
    text-transform:uppercase;
    font-size:12px;
    color:var(--gold);
    font-weight:500;
  }

  /* vine divider — the signature element */
  .vine-divider{ width:100%; height:auto; display:block; }
  .vine-divider svg{ width:100%; height:60px; }

 /* ==================== HEADER ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 241, 236, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(140, 47, 78, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--plum-soft);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--rose-deep);
}

.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--rose-deep);
  border-radius: 30px;
  font-size: 13px;
  color: var(--rose-deep);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--rose-deep);
  color: var(--white);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-menu .bar {
  width: 26px;
  height: 2.5px;
  background: var(--rose-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(251, 241, 236, 0.98);
  padding: 30px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.mobile-nav-links a {
  font-size: 17px;
  color: var(--plum-soft);
  text-decoration: none;
  padding: 8px 0;
}

.mobile-cta {
  background: var(--rose-deep);
  color: white !important;
  padding: 14px 30px !important;
  border-radius: 30px;
  margin-top: 10px;
}

/* Active Burger Animation */
.burger-menu.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .mobile-menu.active {
    display: block;
  }
}

  /* HERO */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex; align-items:center; justify-content:center;
    text-align:center;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(184,92,119,0.18), transparent 55%),
      radial-gradient(ellipse at 80% 75%, rgba(198,154,69,0.15), transparent 55%),
      linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    overflow:hidden;
    padding-top:80px;
  }
  .hero-petals{ position:absolute; inset:0; pointer-events:none; opacity:0.5; }
  .hero-content{ position:relative; z-index:2; max-width:720px; }
  .hero .content-headig{ display:block; margin-bottom:20px; }
  .hero h1{
    font-size:clamp(40px, 5.5vw, 92px);
    font-style:italic;
    color:var(--rose-deep);
    line-height:1.05;
    margin-bottom:20px;
  }
  .hero h1 span{ color:var(--gold); }
  .hero p{
    font-size:18px; color:var(--plum-soft); max-width:520px; margin:0 auto 36px;
    line-height:1.7; font-weight:300;
  }
  .hero-btns{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
  .btn-primary{
    background:var(--rose-deep); color:var(--white); padding:15px 34px;
    border-radius:30px; font-size:14px; letter-spacing:0.05em;
    box-shadow:0 12px 24px -10px rgba(140,47,78,0.45);
    transition:transform .25s, box-shadow .25s;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(140,47,78,0.55); }
  .btn-ghost{
    border:1px solid var(--rose-mid); color:var(--rose-deep); padding:15px 34px;
    border-radius:30px; font-size:14px; letter-spacing:0.05em;
    transition:background .25s;
  }
  .btn-ghost:hover{ background:var(--blush); }
  .scroll-cue{
    position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
    font-size:11px; letter-spacing:0.3em; color:var(--plum-soft); text-transform:uppercase;
    display:flex; flex-direction:column; align-items:center; gap:8px;
  }
  .scroll-cue .line{ width:1px; height:38px; background:var(--gold); animation:pulse-line 2s ease-in-out infinite; }
  @keyframes pulse-line{ 0%,100%{opacity:0.3;} 50%{opacity:1;} }

  section{ padding:100px 0; position:relative; }
  .section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
  .section-head h2{ font-size:clamp(34px,5vw,50px); color:var(--rose-deep); font-style:italic; margin-top:14px;}
  .section-head p{ color:var(--plum-soft); margin-top:16px; font-size:16px; line-height:1.7; font-weight:300;}

 /* ==================== GALLERY ==================== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  transition: transform 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

/* Background Image */
.gallery-card .g-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(58, 31, 42, 0.75) 100%);
}

/* Icon */
.gallery-card .g-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: 3;
}

.gallery-card .g-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
}

/* Label */
.gallery-card .g-label {
  position: relative;
  z-index: 3;
}

.gallery-card .g-label .tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  display: inline-block;
  margin-bottom: 4px;
}

.gallery-card .g-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  margin-top: 4px;
  line-height: 1.1;
}

/* Gradient Backgrounds (as fallback) */
.g1 { background: linear-gradient(135deg, #C97D93, #8C2F4E); }
.g2 { background: linear-gradient(135deg, #D9A76B, #A6672E); }
.g3 { background: linear-gradient(135deg, #B98CC2, #6F3E86); }
.g4 { background: linear-gradient(135deg, #8FB2A9, #3E6B5D); }
.g5 { background: linear-gradient(135deg, #D68FA0, #7A2A44); }
.g6 { background: linear-gradient(135deg, #C9A24B, #8C6B24); }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================== DELHI SECTION ==================== */
.delhi {
  background: var(--cream);
  padding: 100px 0;
}

.delhi-grid {
  display: grid;
  grid-template-columns: 1fr;        /* Single column as requested */
  max-width: 720px;
  margin: 60px auto 0;               /* Centered */
  gap: 48px;
}

.delhi-item {
  text-align: center;                /* Fully centered */
}

.delhi-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 23px;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.delhi-item p {
  font-size: 15.5px;
  color: var(--plum-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* Responsive - Keep single column on all devices */
@media (max-width: 900px) {
  .delhi-grid {
    gap: 42px;
  }
}

 /* ==================== SERVICES ==================== */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 44px;
  margin-top: 50px;
}

.service-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 15px rgba(140, 47, 78, 0.08);
  min-height: 200px;
}

.service-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(140, 47, 78, 0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(140, 47, 78, 0.08);
  border-radius: 50%;
  margin-bottom: 12px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #8C2F4E;
}

.service-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-name h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--plum);
  margin: 0;
}

.service-name span {
  font-size: 14px;
  color: var(--plum-soft);
  text-align: center;
  max-width: 260px;
}

.service-price {
  margin-top: 18px;
  font-size: 17px;
  color: var(--rose-deep);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .services-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-list { grid-template-columns: 1fr; }
}

  /* LOCATIONS */
  .locations{
    background:linear-gradient(180deg, var(--rose-deep), #6f2540);
    color:var(--white); text-align:center;
  }
  .locations .content-headig{ color:var(--gold); }
  .locations h2{ color:var(--white); }
  .locations p{ color:rgba(255,255,255,0.78); }
  .loc-btn{
    margin-top:36px; background:var(--gold); color:var(--plum); border:none;
    padding:16px 38px; border-radius:30px; font-size:14px; letter-spacing:0.05em;
    font-family:'Jost',sans-serif; cursor:pointer; font-weight:500;
    transition:transform .25s;
  }
  .loc-btn:hover{ transform:translateY(-2px); }
  .loc-grid{
    display:grid; grid-template-columns:repeat(5,1fr); gap:16px;
    margin-top:40px;
    max-height:0; overflow:hidden; opacity:0;
    transition:max-height .6s ease, opacity .5s ease, margin-top .5s ease;
  }
  .loc-grid.open{ max-height:100%; opacity:1; }
  .loc-chip{
    background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.25);
    border-radius:14px; padding:20px 14px; text-align:center;
  }
  .loc-chip .loc-pin svg{ width:20px; height:20px; stroke:var(--gold); fill:none; }
  .loc-chip h4{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:19px; margin-bottom:4px; }
  .loc-chip span{ font-size:12px; color:rgba(255,255,255,0.65); }
  .loc-chip:hover{
    transform:translateY(-1px);
  }
  @media(max-width:960px){ .loc-grid{ grid-template-columns:repeat(3,1fr);} }
  @media(max-width:600px){ .loc-grid{ grid-template-columns:repeat(2,1fr);} }

  /* CONTACT */
  .contact{ background:var(--cream); }
  .contact-wrap{
    display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
  }
  .contact-info h2{ text-align:left; }
  .contact-info .content-headig{ display:block; }
  .contact-info p{ color:var(--plum-soft); margin:18px 0 30px; font-weight:300; line-height:1.7; }
  .info-row{ display:flex; align-items:center; gap:14px; margin-bottom:18px; }
  .info-row .ic{ width:38px; height:38px; border-radius:50%; background:var(--blush); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .info-row .ic svg{ width:17px; height:17px; stroke:var(--rose-deep); fill:none; }
  .info-row div span{ display:block; font-size:12px; color:var(--plum-soft); }
  .info-row div strong{ font-weight:500; font-size:15px; }

  .contact-form{
    background:var(--white); border-radius:22px; padding:40px;
    box-shadow:0 30px 60px -30px rgba(140,47,78,0.25);
  }
  .contact-form input, .contact-form textarea{
    width:100%; border:none; border-bottom:1px solid rgba(140,47,78,0.25);
    padding:12px 4px; margin-bottom:22px; font-family:'Jost',sans-serif;
    font-size:15px; background:transparent; color:var(--plum);
  }
  .contact-form input:focus, .contact-form textarea:focus{
    outline:none; border-bottom-color:var(--rose-deep);
  }
  .contact-form textarea{ resize:none; height:90px; }
  .contact-form button{
    width:100%; background:var(--rose-deep); color:var(--white); border:none;
    padding:16px; border-radius:30px; font-size:14px; letter-spacing:0.05em;
    cursor:pointer; transition:background .25s;
  }
  .contact-form button:hover{ background:#732541; }
  @media(max-width:860px){ .contact-wrap{ grid-template-columns:1fr; } }

  /* FOOTER */
  footer{
    background:var(--plum); color:rgba(255,255,255,0.75); padding:70px 0 28px;
  }
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px;
    padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.12);
  }
  .footer-grid .logo{ color:var(--rose-light); margin-bottom:14px; display:block; }
  .footer-grid p.tag{ font-size:14px; font-weight:300; line-height:1.7; max-width:260px; color:rgba(255,255,255,0.6); }
  .footer-col h4{ font-size:13px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; font-weight:500; }
  .footer-col a{ display:block; font-size:14px; margin-bottom:12px; color:rgba(255,255,255,0.72); transition:color .2s; }
  .footer-col a:hover{ color:var(--rose-light); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; padding-top:26px;
    font-size:13px; color:rgba(255,255,255,0.45); flex-wrap:wrap; gap:12px;
  }
  .socials{ display:flex; gap:14px; }
  .socials a{ width:34px; height:34px; border:1px solid rgba(255,255,255,0.25); border-radius:50%; display:flex; align-items:center; justify-content:center; }
  .socials a svg{ width:15px; height:15px; stroke:var(--rose-light); fill:none; }
  @media(max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }