:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0b0b0d;
  --panel: #121113;
  --panel-soft: #181519;
  --line: rgba(244, 214, 150, 0.18);
  --line-strong: rgba(244, 214, 150, 0.36);
  --gold: #d8b46a;
  --gold-light: #f4d696;
  --wine: #7f1d2d;
  --green: #2d513e;
  --copper: #b66a43;
  --text: #f8f1e3;
  --muted: #c7bca8;
  --soft: #938878;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--gold-light);
}

p {
  margin: 0 0 1rem;
}

strong {
  color: #fff8e8;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold);
  color: #120d07;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.age-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 1rem;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 190px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, #17120c, #3f151e 48%, #173125);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  display: block;
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-note {
  display: block;
  color: var(--soft);
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--gold-light);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  border-radius: 8px;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 650;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  background: rgba(244, 214, 150, 0.08);
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #120d07;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button:hover,
button.button:hover {
  background: var(--gold-light);
  color: #120d07;
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(244, 214, 150, 0.62);
  background: rgba(244, 214, 150, 0.1);
  color: #fff8e8;
}

.button.slim {
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero.compact {
  min-height: 48svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.12) 42%, rgba(5, 5, 5, 0.52) 100%);
  content: "";
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(4.75rem, 8vw, 8rem);
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #fff8e8;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  margin-top: 1rem;
  font-size: clamp(2.35rem, 6vw, 5.75rem);
}

.hero-lede {
  max-width: 680px;
  margin-top: 1.2rem;
  color: #e5d9c7;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 32px, var(--max));
  margin: -3.2rem auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 110px;
  padding: 1.1rem;
  background: rgba(14, 13, 14, 0.94);
}

.trust-value {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.trust-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  border-bottom: 1px solid rgba(244, 214, 150, 0.1);
}

@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }

  .section.no-contain {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(127, 29, 45, 0.11), transparent 42%),
    #090909;
}

.section.green {
  background:
    linear-gradient(180deg, rgba(45, 81, 62, 0.16), transparent 44%),
    #080a09;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-head.full {
  grid-template-columns: 1fr;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-intro {
  color: var(--muted);
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid > * {
  min-width: 0;
}

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  position: relative;
  min-height: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 17, 19, 0.88);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.card-body {
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.card h3 {
  font-size: 1.25rem;
}

.card p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.service-card {
  border-top: 3px solid var(--gold);
}

.service-card:nth-child(2) {
  border-top-color: var(--wine);
}

.service-card:nth-child(3) {
  border-top-color: var(--green);
}

.service-card:nth-child(4) {
  border-top-color: var(--copper);
}

.card-meta,
.price-note {
  color: var(--gold-light);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-size: cover;
}

.media-visual.lounge {
  background-image: url("../images/private-lounge-companion-nashik.jpg");
}

.media-visual.vineyard {
  background-image: url("../images/vineyard-date-nashik.jpg");
}

.media-visual.arrival {
  background-image: url("../images/luxury-arrival-nashik.jpg");
}

.media-card .card-body {
  background: rgba(10, 9, 10, 0.96);
}

.rate-card {
  display: flex;
  flex-direction: column;
}

.price {
  margin: 1rem 0 0.4rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
}

.feature-list,
.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--gold);
  content: "+";
  font-weight: 900;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.editorial-aside {
  position: sticky;
  top: 130px;
  border-left: 1px solid var(--line-strong);
  padding-left: 1.25rem;
}

.editorial-aside p {
  color: var(--muted);
}

.long-copy {
  color: #ded2bf;
}

.long-copy h2 {
  margin-top: 3.5rem;
}

.long-copy h2:first-child {
  margin-top: 0;
}

.long-copy h3 {
  margin: 2rem 0 0.85rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.long-copy h3:first-child {
  margin-top: 0;
}

.long-copy h4 {
  margin: 1.45rem 0 0.55rem;
  color: #fff8e8;
  font-size: 1.02rem;
  font-weight: 850;
}

.long-copy p {
  color: #d9cdbc;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.quote-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  background: linear-gradient(135deg, rgba(216, 180, 106, 0.12), rgba(127, 29, 45, 0.12));
}

.quote-panel p {
  margin: 0;
  color: #fff1d3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  line-height: 1.35;
}

.process {
  counter-reset: step;
}

.process .card {
  counter-increment: step;
}

.process .card::before {
  position: absolute;
  right: 1.1rem;
  top: 0.9rem;
  color: rgba(244, 214, 150, 0.2);
  content: "0" counter(step);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  color: #fff8e8;
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: rgba(18, 17, 19, 0.86);
}

.contact-row {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244, 214, 150, 0.12);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row strong {
  color: #fff8e8;
  font-size: 1.05rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0a0b;
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(244, 214, 150, 0.4);
  outline-offset: 2px;
  border-color: var(--gold-light);
}

.form-message {
  min-height: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.site-footer {
  padding: 3rem 0 5.5rem;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr) minmax(220px, 0.55fr);
  gap: 2rem;
}

.footer-title {
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-small {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.88rem;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0.6rem;
  background: rgba(5, 5, 5, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-action-bar a {
  min-height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.mobile-action-bar .call {
  background: var(--gold);
  color: #120d07;
}

.mobile-action-bar .whatsapp {
  background: #1f6f46;
  color: #fff;
}

.breadcrumb {
  color: var(--soft);
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

.breadcrumb a {
  color: var(--muted);
}

.legal-note {
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1rem;
  background: rgba(216, 180, 106, 0.08);
  color: var(--muted);
}

@media (max-width: 980px) {
  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .editorial,
  .split-band,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-aside {
    position: static;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body {
    font-size: 15px;
  }

  .age-strip .container {
    justify-content: center;
    text-align: center;
  }

  .age-strip span:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-note {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: 101px 0 auto;
    display: none;
    gap: 0;
    max-height: calc(100svh - 101px);
    padding: 0.65rem 1rem 1rem;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease;
    overflow-y: auto;
  }

  .nav-open .primary-nav {
    display: grid;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(244, 214, 150, 0.1);
    border-radius: 0;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero.compact {
    min-height: 44svh;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.2));
  }

  .hero-inner {
    padding-top: 4rem;
  }

  .grid.four,
  .grid.three,
  .grid.two,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .trust-item {
    min-height: auto;
  }

  .footer-actions .button {
    width: 100%;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-inner {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(2.05rem, 13vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
