/* ── Custom properties ── */
:root {
  --brand-amber: #FAB503;
  --brand-red: #dc2626;
  --brand-bg: #fdf8f0;
  --text-color: #3b2a1a;
  --color-7: #c0392b;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-color);
  background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: 16px 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo img { height: 67px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand-amber); }
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: 12px 32px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

/* ── Hero banner ── */
.hero-section {
  width: 100%;
  aspect-ratio: 1920 / 480;
  position: relative;
  /* no overflow:hidden so strip is visible below */
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-section img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-btn-wrap {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translate(6px, -50%);
  z-index: 1;
}
.hero-strip {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-strip img { flex-shrink: 0; }

/* ── Solid button ── */
.btn-solid {
  display: inline-block;
  background: var(--brand-amber);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-solid:hover {
  background: #e6a200;
  transform: translateY(-1px);
}

/* ── Section wrapper ── */
.section-wrap {
  padding: 56px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Section title ── */
.section-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--brand-amber);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title::before,
.section-title::after {
  content: ' ── ';
  color: var(--brand-amber);
  opacity: .6;
}
.section-sub {
  text-align: center;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #5c4033;
  margin-top: 8px;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ── Gift image grid ── */
.gift-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.gift-grid .main-img {
  grid-row: span 2;
}
.gift-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gift-grid .sub-col {
  display: grid;
  gap: 16px;
}
.gift-grid .sub-col img {
  height: 100%;
  object-fit: cover;
}

/* Corporate grid (reversed) */
.corp-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.corp-grid .sub-col {
  display: grid;
  gap: 16px;
}
.corp-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ── Video hero ── */
.video-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
@media (max-width: 640px) { .video-hero { height: 420px; } }
.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.video-overlay h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
}
.video-overlay p {
  color: #fff;
  font-size: clamp(16px, 2.5vw, 30px);
}

/* ── Shipping bar ── */
.shipping-bar {
  background: #c0392b;
  border-radius: 18px;
  padding: 24px 16px;
  box-shadow: 0 8px 24px rgba(250,181,3,.3);
}
.shipping-bar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0; padding: 16px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 100px;
}
.shipping-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.shipping-item svg {
  width: 64px;
  height: 64px;
}
.shipping-item p {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* ── Gift categories ── */
.gift-cats ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin: 0; padding: 0;
}
.gift-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  border-radius: 12px;
  transition: background .2s;
  cursor: pointer;
}
.gift-cat-item:hover { background: #fef9ec; }
.gift-cat-item svg { width: 72px; height: 72px; }
.gift-cat-item p {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #3b2a1a;
  margin: 0;
}

/* ── Bridesmaid section ── */
.bridesmaid-section {
  padding: 56px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.bridesmaid-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 320px;
  position: relative;
}
.bridesmaid-img-wrap { position: relative; flex-shrink: 0; }
.bridesmaid-img-main {
  max-width: 520px;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.bridesmaid-img-overlay {
  position: absolute;
  max-width: 466px;
  width: 100%;
  height: auto;
  left: 320px;
  top: 96px;
  object-fit: cover;
  z-index: 1;
}
.bridesmaid-text {
  max-width: 537px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 3;
}
.bridesmaid-text h2 {
  color: var(--color-7);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
}
.bridesmaid-text p {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #5c4033;
  line-height: 1.7;
}

/* ── Image cards ── */
.image-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.image-card:hover img { transform: scale(1.04); }
.image-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 32px 16px 14px;
}

/* ── Lead form ── */
.lead-section {
  position: relative;
  background: #fdf8f0;
  padding: 80px 16px;
  overflow: hidden;
}
.lead-blob-1, .lead-blob-2, .lead-blob-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lead-blob-1 { top: -96px; left: -96px; width: 384px; height: 384px; background: #fde68a; opacity: .6; }
.lead-blob-2 { bottom: -96px; right: -96px; width: 384px; height: 384px; background: #fecdd3; opacity: .5; }
.lead-blob-3 { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: #fef9c3; opacity: .4; }
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.ornament-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #f59e0b);
}
.ornament-line.rev { background: linear-gradient(to left, transparent, #f59e0b); }
.lead-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.lead-header { text-align: center; margin-bottom: 40px; }
.lead-header .eyebrow {
  color: #d97706;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lead-header h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin: 0 0 12px;
}
.lead-header h2 span { display: block; color: #f59e0b; font-style: italic; }
.lead-header p { color: #78716c; font-size: 14px; line-height: 1.7; max-width: 340px; margin: 0 auto; }
.lead-card {
  position: relative;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(245,158,11,.15);
  border: 1px solid #fde68a;
  padding: 40px;
}
.corner { position: absolute; width: 24px; height: 24px; border-color: #fcd34d; border-style: solid; }
.corner.tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 8px 0 0 0; }
.corner.tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; border-radius: 0 8px 0 0; }
.corner.bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; border-radius: 0 0 0 8px; }
.corner.br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 8px 0; }
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { position: relative; }
.form-field label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 14px;
  color: #a8a29e;
  pointer-events: none;
  transition: all .2s;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 20px 16px 10px;
  font-size: 14px;
  color: #1c1917;
  outline: none;
  transition: border .2s, box-shadow .2s;
  font-family: inherit;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 11px;
  background: #fff;
  padding: 0 4px;
  color: #d97706;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  position: relative;
  overflow: hidden;
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn-whatsapp svg { flex-shrink: 0; }
.lead-note { text-align: center; font-size: 12px; color: #a8a29e; margin-top: 20px; }

/* ── Footer ── */
.footer {
  position: relative;
  overflow: hidden;
  padding: 48px 24px;
  text-align: center;
  background-image: url('../static/images/shubji-footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-logo { display: flex; justify-content: flex-start; margin-bottom: 40px; max-width: 1152px; margin-left: auto; margin-right: auto; }
.footer-logo img { height: 63px; width: auto; }
.footer-grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--brand-amber);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
}
.footer-col.connect h4,
.footer-col.connect ul { color: var(--brand-red); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; font-weight: 300; color: var(--brand-amber); transition: opacity .2s; }
.footer-col.connect ul a { color: var(--brand-red); }
.footer-col ul a:hover { opacity: .7; }
.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  max-width: 1152px;
  margin: 0 auto 24px;
  padding: 0 8px;
  color: var(--brand-red);
}
.footer-social span { font-size: 13px; font-weight: 500; }
.footer-social ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; }
.footer-social a { color: var(--brand-red); transition: transform .2s; display: block; }
.footer-social a:hover { transform: scale(1.15); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(220,38,38,.2);
  padding-top: 16px;
  font-size: 12px;
  color: rgba(220,38,38,.6);
}

/* ── Page hero (about / contact) ── */
.page-hero {
  background: linear-gradient(135deg, #fef9ec 0%, #fff0e0 100%);
  padding: 80px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: #1c1917; margin: 0 0 16px; }
.page-hero p { font-size: 16px; color: #78716c; max-width: 560px; margin: 0 auto; }

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1152px;
  margin: 0 auto;
}
.about-text h2 { font-size: clamp(22px, 2.5vw, 36px); font-weight: 700; color: #1c1917; margin: 0 0 16px; }
.about-text p { color: #5c4033; line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.about-img img { width: 100%; border-radius: 16px; object-fit: cover; }
.values-grid {
  background: var(--brand-bg);
  padding: 80px 24px;
}
.values-inner { max-width: 1152px; margin: 0 auto; }
.values-inner h2 { text-align: center; font-size: clamp(22px, 2.5vw, 36px); font-weight: 700; margin: 0 0 48px; }
.values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.value-card .icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.value-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 24px;
  max-width: 1152px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; margin: 0 0 24px; }
.contact-info p { color: #5c4033; line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #374151; }
.contact-detail svg { color: var(--brand-amber); flex-shrink: 0; }
.contact-form-wrap h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; margin: 0 0 24px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gift-grid { grid-template-columns: 2fr 1fr; }
  .gift-grid .sub-col:last-child { display: none; }
  .corp-grid { grid-template-columns: 1fr 2fr; }
  .corp-grid .sub-col:last-child { display: none; }
  .bridesmaid-img-overlay { display: none; }
  .bridesmaid-inner { gap: 64px; }
  .gift-cats ul { grid-template-columns: repeat(4, 1fr); }
  .shipping-bar ul { grid-template-columns: repeat(3, 1fr); border-radius: 18px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 12px 16px; }
  .nav-links { display: none; }
  .hamburger-btn { display: block; }
  /* hero button centered over banner */
  .hero-btn-wrap {
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  /* corp grid: main image first (full width), then sub-cols below */
  .corp-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "s1   s2";
  }
  .corp-grid .main-img  { grid-area: main; grid-row: auto; }
  .corp-grid .sub-col:first-child { grid-area: s1; }
  .corp-grid .sub-col:last-child  { grid-area: s2; display: grid; }
  /* wedding grid: main first */
  .gift-grid { grid-template-columns: 1fr 1fr; }
  .gift-grid .main-img { grid-column: span 2; }
  .gift-grid .sub-col { display: grid; }
  /* bridesmaid */
  .bridesmaid-inner { flex-direction: column; gap: 24px; align-items: center; }
  .bridesmaid-img-wrap { width: 100%; }
  .bridesmaid-img-main { max-width: 100%; }
  .bridesmaid-text { max-width: 100%; padding: 0 8px; }
  /* layout */
  .image-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { justify-content: center; }
  .footer-logo { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-cards { grid-template-columns: 1fr; }
  .lead-card { padding: 24px; }
  .section-wrap { padding: 32px 16px; }
}
@media (max-width: 480px) {
  /* hero */
  .hero-section { aspect-ratio: auto; height: 200px; }
  .hero-section img.hero-bg { object-fit: cover; }
  /* gift cats: 4 per row for cleaner grid */
  .gift-cats ul { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .gift-cat-item { padding: 10px 4px; }
  .gift-cat-item svg { width: 48px; height: 48px; }
  .gift-cat-item p { font-size: 11px; }
  /* shipping icons smaller */
  .shipping-bar ul { grid-template-columns: repeat(3, 1fr); border-radius: 12px; padding: 12px 8px; }
  .shipping-item svg { width: 48px; height: 48px; }
  .shipping-item p { font-size: 11px; }
  /* section spacing */
  .section-wrap { padding: 28px 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  /* bridesmaid text */
  .bridesmaid-section { padding: 32px 16px; }
}
