/* =========================================================
   AMRITVAN – LIGHT LUXURY DEVOTIONAL BRAND WEBSITE
   PHASE 1 – BASE STYLES
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Root Variables ---------- */
:root {
  --bg: #fffdf9;
  --bg-soft: #fff8f0;
  --bg-cream: #f9f1e6;
  --surface: #ffffff;

  --primary: #1f4d36;        /* deep devotional green */
  --primary-dark: #173b2a;
  --secondary: #c9a15c;      /* muted luxury gold */
  --secondary-soft: #ead7b2;

  --text: #243128;
  --muted: #6d726c;
  --line: rgba(31, 77, 54, 0.10);

  --success: #2f7a53;
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.08);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1240px;
  --transition: all 0.3s ease;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-cream {
  background: var(--bg-cream);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  line-height: 1.1;
  font-weight: 600;
}

.display-title {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.4px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-text {
  color: var(--muted);
  max-width: 760px;
  font-size: 16px;
  line-height: 1.9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 77, 54, 0.07);
  border: 1px solid rgba(31, 77, 54, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 77, 54, 0.16);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(31, 77, 54, 0.16);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: #fff;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.text-link:hover {
  color: var(--primary-dark);
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card-lg {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 10px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-line {
  font-size: 12px;
  color: #7c766d;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
   padding: 13px 22px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;

  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(31, 77, 54, 0.16);
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #ffffff !important;
}
/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-cream);
  padding: 9px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* =========================================================
   PAGE PLACEHOLDER BLOCKS (for structure now)
   ========================================================= */
.page-shell {
  padding: 72px 0 88px;
}

.page-shell-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.shell-card {
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  padding: 34px;
}

.shell-card h1 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 16px;
  color: var(--text);
}

.shell-card p {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.9;
}

.shell-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shell-side h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.shell-side p {
  color: var(--muted);
  line-height: 1.8;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, #163525 0%, #10281d 100%);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
}

/* top trust strip */
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0;
}

.footer-top-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-top-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  font-size: 18px;
}

.footer-top-item p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

/* main footer */
.footer-main {
  padding: 56px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.9fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: #fff;
}

.footer-logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.85;
  font-size: 15px;
}

.footer-note {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .page-shell-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand-logo {
    height: 56px;
    max-width: 180px;
  }

  .brand-line {
    font-size: 10px;
    white-space: normal;
    max-width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fffdf8;
    border-top: 1px solid var(--line);
    padding: 18px 20px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
  }

  .nav a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .page-shell {
    padding: 56px 0 64px;
  }

  .page-shell-grid,
  .footer-top-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shell-card,
  .shell-side {
    padding: 24px;
    border-radius: 24px;
  }

  .footer-main {
    padding: 42px 0 28px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    height: 50px;
    max-width: 160px;
  }

  .shell-card h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 30px;
  }

  .footer-logo {
    height: 54px;
  }
}
/* =========================================================
   PHASE 2 – HOMEPAGE LUXURY SECTIONS
   ========================================================= */

/* ---------- Hero Luxury ---------- */
.hero-lux {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(202, 163, 95, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(31, 77, 54, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #fff9f1 100%);
}

.hero-lux-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.hero-lux-shape-1 {
  width: 280px;
  height: 280px;
  background: rgba(201, 161, 92, 0.10);
  top: -60px;
  left: -80px;
}

.hero-lux-shape-2 {
  width: 340px;
  height: 340px;
  background: rgba(31, 77, 54, 0.05);
  right: -100px;
  bottom: -120px;
}

.hero-lux-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-lux-content {
  max-width: 680px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
  color: var(--primary);
}

.hero-text {
  font-size: 17px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-note-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.04);
}

.hero-note-card strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 8px;
}

.hero-note-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.hero-lux-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-lux-image-wrap {
  position: relative;
  width: 100%;
  max-width: 590px;
  padding: 54px 18px 18px; /* top padding badha di */
  background: linear-gradient(180deg, #fffaf3 0%, #fff4e8 100%);
  border-radius: 36px;
  border: 1px solid rgba(31, 77, 54, 0.08);
  box-shadow:
    0 30px 72px rgba(0,0,0,0.09),
    0 14px 34px rgba(201, 161, 92, 0.12);
}

.hero-lux-image-wrap img {
 width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(201, 161, 92, 0.08);
}

.hero-lux-badge {
   position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;

  background: linear-gradient(180deg, #fff8ee 0%, #f6ead4 100%);
  border: 1px solid rgba(201, 161, 92, 0.28);
  box-shadow: 0 10px 24px rgba(201, 161, 92, 0.10);

  color: #23412f;
  font-weight: 600;
  font-size: 15px;
}

.hero-lux-floating {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 22px;
  padding: 16px 18px;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-lux-floating strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 6px;
}

.hero-lux-floating span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  line-height: 1.5;
}

.hero-lux-floating-left {
  left: -74px;
  bottom: 42px;
  display: none;
}

.hero-lux-floating-right {
   right: -48px;
  top: 34px;
}

/* ---------- Section heading ---------- */
.lux-section-head {
  max-width: 780px;
  margin: 0 auto 42px;
}

.lux-section-head.center {
  text-align: center;
}

/* ---------- Signature Collection ---------- */
.signature-collection {
  padding-top: 90px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, #fff9f1 0%, #fffdf8 100%);
}

.signature-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.signature-card,
.signature-card-large {
  min-height: 100%;
}
.signature-card {
  background: #fff;
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.signature-card-image {
  padding: 24px 24px 0;
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf3 100%);
}

.signature-card-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 18px;
}

.signature-card-image img {
  height: 240px;
}
.signature-card-content {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.signature-label {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  background: rgba(31, 77, 54, 0.07);
  border: 1px solid rgba(31, 77, 54, 0.08);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.signature-card-content h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #223127;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  min-height: 72px;
}

.signature-card-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* =========================================================
   BRAND ESSENCE SECTION – FINAL POLISHED VERSION
   ========================================================= */

.brand-essence-section {
  padding: 110px 0 70px;
}

.brand-essence-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 54px;
  align-items: center;
}

.brand-essence-content {
  max-width: 640px;
}

.brand-essence-content .section-badge {
  margin-bottom: 22px;
}

.brand-essence-content h2 {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.brand-essence-content p {
  margin: 0 0 22px;
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--text);
}

.brand-essence-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.brand-essence-point {
  background: #ffffff;
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.04);
}

.brand-essence-point h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--primary);
}

.brand-essence-point p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

/* Right image card */
.brand-essence-image-card {
  background: linear-gradient(180deg, #fffdf9 0%, #fff7ed 100%);
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);

  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-essence-image-card img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 24px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .brand-essence-grid {
    gap: 36px;
  }

  .brand-essence-content p {
    font-size: 1.08rem;
  }
}

@media (max-width: 920px) {
  .brand-essence-section {
    padding: 90px 0 60px;
  }

  .brand-essence-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .brand-essence-content {
    max-width: 100%;
  }

  .brand-essence-image-card {
    order: -1;
  }

  .brand-essence-image-card img {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .brand-essence-section {
    padding: 70px 0 50px;
  }

  .brand-essence-content h2 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .brand-essence-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .brand-essence-point {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .brand-essence-point h4 {
    font-size: 1.05rem;
  }

  .brand-essence-image-card {
    padding: 14px;
    border-radius: 26px;
  }

  .brand-essence-image-card img {
    border-radius: 18px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .signature-collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signature-card-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .hero-lux-grid,
  .brand-essence-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-lux-content,
  .brand-essence-copy {
    max-width: 100%;
  }

  .hero-lux-visual {
    min-height: auto;
  }

  .hero-lux-image-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-lux-floating-left {
    left: 0;
    bottom: 40px;
  }

  .hero-lux-floating-right {
    right: 0;
    top: 60px;
  }
}

@media (max-width: 820px) {
  .hero-lux {
    padding: 58px 0 46px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-notes,
  .signature-collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-lux-image-wrap img,
  .brand-essence-image-card img {
    height: 420px;
  }

  .hero-lux-floating {
    position: static;
    min-width: 100%;
    margin-top: 14px;
    min-width: 0;
  max-width: 320px;
  padding: 18px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .signature-card-large .signature-card-image img,
  .signature-card-image img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-lux-image-wrap,
  .brand-essence-image-card {
    padding: 14px;
    border-radius: 24px;
  }

  .hero-lux-image-wrap img,
  .brand-essence-image-card img {
    height: 320px;
    border-radius: 18px;
  }

  .signature-card-content {
    padding: 20px;
  }

  .signature-card-content h3 {
    font-size: 22px;
  }
}
/* =========================================================
   PHASE 3 – HOMEPAGE POLISH
   Why Amritvan + CTA Strip
   ========================================================= */

.why-amritvan {
  padding-top: 20px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8f0 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.08);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(31, 77, 54, 0.08);
  font-size: 24px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #223127;
}

.why-card p {
  color: var(--muted);
  line-height: 1.85;
}

/* CTA strip */
.home-cta-strip {
  padding: 0 0 90px;
  background: linear-gradient(180deg, #fff8f0 0%, #fffdf9 100%);
}

.home-cta-card {
  background:
    radial-gradient(circle at top right, rgba(201, 161, 92, 0.14), transparent 24%),
    linear-gradient(135deg, #1f4d36 0%, #173b2a 100%);
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}

.home-cta-card .eyebrow {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.home-cta-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 14px;
}

.home-cta-copy p {
  color: rgba(255,255,255,0.84);
  line-height: 1.9;
  max-width: 700px;
}

.home-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-cta-actions .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.home-cta-actions .btn-primary:hover {
  background: #f5efe5;
}

.home-cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  background: transparent;
}

.home-cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* responsive */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-card {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .why-amritvan {
    padding-bottom: 60px;
  }

  .home-cta-strip {
    padding-bottom: 60px;
  }

  .why-card {
    padding: 24px;
    border-radius: 22px;
  }

  .why-card h3 {
    font-size: 24px;
  }

  .home-cta-card {
    border-radius: 24px;
    padding: 26px;
  }

  .home-cta-actions {
    flex-direction: column;
  }

  .home-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   ABOUT PAGE – PART 2
========================= */

.about-promise,
.why-amritvan,
.about-cta {
  padding: 90px 0;
}

.section-head.center {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.center h2 {
  margin: 16px 0 16px;
}

.section-head.center p {
  margin: 0 auto;
}

/* PROMISE */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  background: #fff;
  border: 1px solid rgba(28, 78, 58, 0.10);
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 18px 45px rgba(65, 49, 24, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(65, 49, 24, 0.12);
}

.promise-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fffaf0 0%, #f7efe1 100%);
  border: 1px solid rgba(183, 145, 78, 0.25);
  font-size: 28px;
  margin-bottom: 18px;
}

.promise-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.promise-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.why-left h2 {
  margin: 16px 0 16px;
}

.why-left > p {
  margin: 0 0 30px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(28, 78, 58, 0.10);
  border-radius: 24px;
  padding: 22px 22px;
  box-shadow: 0 18px 45px rgba(65, 49, 24, 0.06);
}

.why-badge {
  min-width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1d5a3f 0%, #184d35 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 25px rgba(29, 90, 63, 0.22);
}

.why-point h3 {
  margin: 2px 0 8px;
  font-size: 24px;
}

.why-point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.why-right {
  position: sticky;
  top: 110px;
}

.why-card {
  background:
    radial-gradient(circle at top left, rgba(255, 238, 201, 0.65), transparent 42%),
    linear-gradient(180deg, #fffdf8 0%, #fbf5ea 100%);
  border: 1px solid rgba(183, 145, 78, 0.18);
  border-radius: 32px;
  padding: 34px 30px;
  box-shadow: 0 25px 60px rgba(65, 49, 24, 0.10);
}

.why-label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f4f1e7;
  border: 1px solid rgba(28, 78, 58, 0.12);
  color: #0f4a37;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.why-card h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.25;
}

.why-card p {
  margin: 0 0 20px;
}

.why-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.why-list li {
  color: #46585f;
  line-height: 1.8;
}

/* ABOUT CTA */
.about-cta-box {
  background:
    radial-gradient(circle at top left, rgba(255, 231, 189, 0.55), transparent 35%),
    linear-gradient(180deg, #fffdf9 0%, #f8f1e6 100%);
  border: 1px solid rgba(183, 145, 78, 0.18);
  border-radius: 34px;
  padding: 44px 42px;
  box-shadow: 0 25px 60px rgba(65, 49, 24, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.about-cta-content {
  max-width: 760px;
}

.about-cta-content h2 {
  margin: 16px 0 14px;
}

.about-cta-content p {
  margin: 0;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.about-cta-actions .btn {
  margin: 0;
  flex-shrink: 0;
}

.about-cta-content h2 {
  margin: 16px 0 14px;
}

.about-cta-content p {
  margin: 0;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.about-cta-actions .btn {
  margin: 0;
  flex-shrink: 0;
}

.about-cta-actions .btn-outline {
  margin-left: 2px;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-right {
    position: static;
    top: auto;
  }

  .about-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .about-promise,
  .why-amritvan,
  .about-cta {
    padding: 70px 0;
  }

  .promise-card,
  .why-card,
  .about-cta-box {
    border-radius: 24px;
  }

  .why-card h3 {
    font-size: 28px;
  }

  .why-point {
    flex-direction: column;
  }
}

/* =========================
   PHASE 6 — CONTACT PAGE
========================= */

.contact-hero {
  padding: 90px 0 40px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 18px 0 20px;
}

.contact-hero-copy p {
  max-width: 760px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 34px;
}

.contact-points {
  display: grid;
  gap: 18px;
}

.contact-point-card {
  background: #fff;
  border: 1px solid rgba(28, 78, 58, 0.10);
  border-radius: 26px;
  padding: 24px 24px 22px;
  box-shadow: 0 18px 42px rgba(64, 48, 23, 0.08);
}

.contact-point-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.contact-point-card p {
  margin: 0 0 14px;
  line-height: 1.9;
}

.contact-point-card a {
  color: #0f4a37;
  font-weight: 700;
  text-decoration: none;
}

.contact-point-card a:hover {
  text-decoration: underline;
}

.contact-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f2f5ef;
  color: #1c4e3a;
  font-weight: 600;
  font-size: 14px;
}

/* RIGHT VISUAL */
.contact-hero-visual {
  position: relative;
}

.contact-visual-card {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 189, 0.65), transparent 35%),
    linear-gradient(180deg, #fffefb 0%, #fbf4e9 100%);
  border: 1px solid rgba(183, 145, 78, 0.16);
  border-radius: 36px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(65, 49, 24, 0.12);
  overflow: hidden;
}

.contact-visual-card {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 189, 0.55), transparent 35%),
    linear-gradient(180deg, #fffefb 0%, #fbf4e9 100%);
  border: 1px solid rgba(183, 145, 78, 0.16);
  border-radius: 34px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(65, 49, 24, 0.12);
  overflow: hidden;
}

.contact-visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.96);
  border: 1px solid rgba(28, 78, 58, 0.12);
  box-shadow: 0 12px 28px rgba(56, 43, 20, 0.10);
  color: #174737;
  font-weight: 700;
  font-size: 15px;
}

.contact-visual-card img {
  width: 100%;
  display: block;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(65, 49, 24, 0.12);
}

.contact-visual-note {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(55, 42, 19, 0.12);
  padding: 18px 20px;
  max-width: 310px;
}

.contact-visual-note strong {
  display: block;
  color: #174737;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-visual-note span {
  display: block;
  color: #5f6c73;
  line-height: 1.7;
  font-size: 15px;
}

.contact-visual-note.top {
  top: 120px;
  right: -22px;
}

.contact-visual-note.bottom {
  left: -20px;
  bottom: 44px;
}

/* TRUST STRIP */
.contact-trust-strip {
  padding: 10px 0 80px;
}

.contact-trust-grid {
  background: #163f2f;
  border-radius: 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(17, 56, 40, 0.18);
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  font-size: 20px;
}

.contact-trust-item p {
  margin: 0;
  color: #f4f2ea;
  line-height: 1.75;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .contact-visual-note.top {
    right: 20px;
  }

  .contact-visual-note.bottom {
    left: 20px;
  }
}

@media (max-width: 900px) {
  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .contact-trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 70px 0 30px;
  }

  .contact-point-card,
  .contact-visual-card {
    border-radius: 24px;
  }

  .contact-point-card h3 {
    font-size: 24px;
  }

  .contact-visual-badge {
    position: static;
    margin-bottom: 16px;
  }

  .contact-visual-note {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }

  .contact-trust-strip {
    padding: 10px 0 70px;
  }

  .contact-trust-grid {
    border-radius: 22px;
  }
}

.product-price {
  margin: 14px 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #174737;
  line-height: 1.2;
}

.product-price .old-price {
  margin-left: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #8b8f87;
  text-decoration: line-through;
}

.product-price-block {
  margin: 14px 0 14px;
}

.price-top-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.discount-badge {
  font-size: 1.55rem;
  font-weight: 500;
  color: #d94b63; /* pink-red like screenshot */
  line-height: 1;
}

.selling-price {
  font-size: 2rem;
  font-weight: 500;
  color: #1f1f1f;
  line-height: 1;
}

.mrp-row {
  font-size: 0.92rem;
  color: #6f746f;
  letter-spacing: 0.01em;
}

.mrp-old {
  color: #6f746f;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.mrp-old1 {
  color: #6f746f;
  
  text-decoration-thickness: 1.5px;
}

/* =========================================================
   FINAL HOMEPAGE PRODUCT CARD + CTA PATCH
   Add this at the END of style.css
========================================================= */

/* ---------- Signature cards equal height ---------- */
.signature-collection-grid {
  align-items: stretch;
}

.signature-card {
  height: 100%;
}

.signature-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.signature-card-content p {
  margin-bottom: 18px;
}

.signature-card-content h3 {
  min-height: 72px;
}

/* ---------- Product price ---------- */
.product-price-block {
  margin: 12px 0 16px;
}

.price-top-row {
  font-size: 14px;
  color: #6f746f;
  margin-bottom: 4px;
}

.mrp-old {
  color: #6f746f;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.mrp-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 0.95rem;
  color: #6f746f;
}

.selling-price {
  font-size: 2rem;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1;
}

.mrp-old1 {
  color: #6f746f;
  font-size: 0.95rem;
}

/* ---------- Product action buttons ---------- */
.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.product-btn {
  min-height: 54px;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.28s ease;
}

.product-btn span:last-child {
  flex: 1;
}

.product-btn-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

/* WhatsApp */
.product-btn-whatsapp {
  background: linear-gradient(180deg, #1f5a40 0%, #184d35 100%);
  color: #fff;
  border: 1px solid rgba(20, 76, 53, 0.95);
  box-shadow: 0 14px 28px rgba(24, 77, 53, 0.16);
}

.product-btn-whatsapp .product-btn-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.product-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(24, 77, 53, 0.22);
  background: linear-gradient(180deg, #1a5038 0%, #143d2b 100%);
}

/* Amazon */
.product-btn-amazon {
  background: #fffaf2;
  color: #1f2b24;
  border: 1px solid rgba(201, 161, 92, 0.34);
  box-shadow: 0 10px 22px rgba(65, 49, 24, 0.06);
}

.product-btn-amazon .product-btn-icon {
  background: #f5ead2;
  color: #6b4b14;
  border: 1px solid rgba(201, 161, 92, 0.28);
  font-size: 22px;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.product-btn-amazon:hover {
  transform: translateY(-2px);
  background: #fff6e8;
  box-shadow: 0 14px 28px rgba(65, 49, 24, 0.10);
}

.amazon-mini {
  font-style: italic;
}

/* ---------- Brand essence points fix ---------- */
.brand-essence-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.essence-point {
  background: #fff;
  border: 1px solid rgba(31, 77, 54, 0.08);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.essence-point strong {
  display: block;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 8px;
}

.essence-point span {
  display: block;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* ---------- HOME why section grid fix ---------- */
.why-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- CTA strip button fix ---------- */
.home-cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
}

.home-cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Mobile ---------- */
@media (max-width: 1180px) {
  .signature-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .why-grid-home {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .signature-collection-grid {
    grid-template-columns: 1fr;
  }

  .product-btn {
    min-height: 50px;
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 14px;
  }

  .product-btn-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
  }

  .product-btn-amazon .product-btn-icon {
    font-size: 20px;
  }

  .selling-price {
    font-size: 1.75rem;
  }

  .mrp-old1 {
    display: inline-block;
    margin-top: 2px;
  }

  .signature-card-content h3 {
    min-height: auto;
  }
}