:root {
  --paper: #fff8f5;
  --blush: #f7dfd8;
  --rose: #de8d86;
  --cocoa: #3f2926;
  --cocoa-soft: #6d5550;
  --ink: #2c211f;
  --line: rgba(63, 41, 38, 0.16);
  --sage: #8a8f79;
  --gold: #b8874f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(63, 41, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  width: 100%;
  max-width: 100vw;
  padding: 12px 18px;
  color: var(--cocoa);
  background: rgba(255, 248, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34), 0 10px 28px rgba(63, 41, 38, 0.24);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a,
.header-cta,
.button {
  min-height: 44px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--white);
  background: var(--cocoa);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100svh - 64px);
  width: 100%;
  max-width: 100vw;
  padding: 34px 20px 22px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(25, 14, 12, 0.18) 0%, rgba(28, 15, 13, 0.18) 42%, rgba(25, 14, 12, 0.86) 100%),
    url("assets/hero-neerosha.jpg") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(20, 11, 10, 0.62), transparent);
}

.hero-content {
  width: 100%;
  max-width: calc(100vw - 40px);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd1cc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cocoa);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 3rem;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
}

h3 {
  color: var(--cocoa);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--cocoa);
  box-shadow: 0 14px 30px rgba(63, 41, 38, 0.22);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  color: var(--cocoa);
  border-color: var(--cocoa);
  background: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.quick-strip {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  color: var(--cocoa);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  display: grid;
  gap: 2px;
}

.quick-strip strong {
  font-size: 0.96rem;
}

.quick-strip span {
  color: var(--cocoa-soft);
  font-size: 0.92rem;
}

.quick-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--cocoa);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 66px 20px;
}

.services-section {
  background: var(--paper);
}

.services-title-row {
  display: grid;
  gap: 12px;
  width: min(100%, 1120px);
  margin: 0 auto 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(222, 141, 134, 0.42);
}

.services-title-row h2 {
  margin-bottom: 0;
}

.services-title-row > span {
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 900;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 28px;
}

.service-menu-grid {
  display: grid;
  gap: 42px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.service-category {
  min-width: 0;
}

.service-category h3 {
  margin: 0 0 20px;
  padding-bottom: 10px;
  color: var(--rose);
  border-bottom: 1px solid rgba(222, 141, 134, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.service-list h4 {
  margin: 0 0 4px;
  color: var(--cocoa);
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-list p {
  margin: 0;
  color: var(--cocoa-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.service-list strong {
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  gap: 14px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.service-card {
  display: grid;
  gap: 8px;
  min-height: 188px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(63, 41, 38, 0.07);
}

.service-card span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.service-card p {
  margin-bottom: 4px;
  color: var(--cocoa-soft);
}

.service-card strong {
  align-self: end;
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
}

.bridal-callout {
  display: grid;
  gap: 0;
  background: #f2e4df;
}

.callout-copy {
  padding: 58px 20px;
}

.callout-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--cocoa-soft);
}

.bridal-callout img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.gallery-section {
  background: #f8e7e3;
}

.gallery-track,
.reel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 78%);
  gap: 16px;
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.gallery-track figure,
.reel-track figure {
  margin: 0;
  scroll-snap-align: start;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-track figcaption,
.reel-track figcaption {
  margin-top: 10px;
  color: var(--cocoa-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reels-section {
  background: var(--white);
}

.reel-track {
  grid-auto-columns: minmax(172px, 58%);
}

.reel-track img {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(63, 41, 38, 0.14);
}

.booking-section {
  display: grid;
  gap: 28px;
  padding: 66px 20px;
  background: var(--paper);
}

.booking-copy,
.booking-stack {
  width: min(100%, 560px);
}

.booking-copy p {
  color: var(--cocoa-soft);
}

.visit-card {
  margin-top: 26px;
  padding: 22px;
  color: var(--cocoa);
  background: #f4e4de;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visit-card h3 {
  margin-bottom: 10px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-style: italic;
}

.visit-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.visit-card div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.visit-card dt,
.visit-card dd {
  margin: 0;
}

.visit-card dt {
  color: var(--sage);
  font-weight: 800;
}

.visit-card dd {
  text-align: right;
}

.visit-card + .booking-form {
  margin-top: 18px;
}

.map-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(63, 41, 38, 0.08);
}

.map-embed {
  width: 100%;
  min-height: 260px;
  background: #f4e4de;
  border: 0;
  border-radius: 8px;
}

.booking-stack {
  display: grid;
  gap: 16px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-video-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: #f4e4de;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-copy h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.video-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--cocoa-soft);
}

.location-embed {
  width: 100%;
  height: 560px;
  background: var(--cocoa);
  border: 0;
  border-radius: 8px;
}

.social-video-section {
  background: #f8e7e3;
}

.social-video-grid {
  display: grid;
  gap: 16px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.social-video-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(63, 41, 38, 0.12);
}

.social-video-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.social-video-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--cocoa-soft);
}

.social-video-card img,
.social-embed {
  width: 100%;
  border-radius: 8px;
  background: var(--cocoa);
}

.social-video-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.social-embed {
  height: 560px;
  border: 0;
}

.social-video-card-muted {
  align-content: start;
}

.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--cocoa);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--cocoa);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  min-height: 48px;
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--rose);
  box-shadow: 0 2px 0 rgba(222, 141, 134, 0.18);
}

.form-note {
  margin: 0;
  color: var(--cocoa-soft);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  color: var(--paper);
  background: var(--cocoa);
}

.site-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.site-credit img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.credit-separator {
  opacity: 0.65;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper);
}

.footer-whatsapp svg {
  width: 22px;
  height: 22px;
  color: #25d366;
  fill: currentColor;
}

@media (min-width: 560px) {
  .hero-actions,
  .quick-strip {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .quick-strip {
    justify-content: space-between;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .full-row {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
    min-height: 76px;
    padding: 14px 32px;
  }

  .nav-links {
    display: flex;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 70px 54px 42px;
    background-position: center top;
  }

  .hero-content {
    max-width: 680px;
  }

  h1 {
    font-size: 5.3rem;
  }

  h2 {
    font-size: 3.7rem;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 1.14rem;
  }

  .section,
  .booking-section {
    padding: 92px 54px;
  }

  .services-title-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .service-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 58px;
  }

  .service-list {
    gap: 26px;
  }

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

  .bridal-callout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    align-items: stretch;
  }

  .callout-copy {
    align-self: center;
    padding: 70px 54px;
  }

  .bridal-callout img {
    height: 640px;
  }

  .gallery-track {
    grid-auto-columns: 280px;
  }

  .reel-track {
    grid-auto-columns: 210px;
  }

  .booking-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
    align-items: start;
  }

  .booking-copy {
    justify-self: end;
  }

  .booking-stack {
    justify-self: start;
  }

  .social-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .site-header {
    padding-inline: 48px;
  }

  .hero {
    padding-inline: 70px;
    background:
      linear-gradient(90deg, rgba(25, 14, 12, 0.76) 0%, rgba(25, 14, 12, 0.44) 43%, rgba(25, 14, 12, 0.08) 78%),
      url("assets/hero-neerosha.jpg") right center / auto 100% no-repeat,
      #21100f;
  }

  h1 {
    font-size: 6.1rem;
  }

  .hero-meta {
    max-width: 680px;
  }

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

  .gallery-track,
  .reel-track {
    grid-auto-flow: initial;
    overflow: visible;
  }

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

  .reel-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
