:root {
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --sand: #e8dcc9;
  --line: #d8c7ad;
  --gold: #b58a43;
  --gold-dark: #87652f;
  --ink: #342b24;
  --muted: #786b5f;
  --shadow: 0 18px 45px rgba(73, 55, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  min-height: 760px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.88) 34%, rgba(251, 247, 239, 0.18) 62%),
    url("assets/hero-telugu-wedding.png") 80% center / cover;
  border-bottom: 1px solid var(--sand);
}

.nav-shell {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark img {
  width: 380px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-dark);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 100;
  border: 1px solid var(--sand);
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--muted);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 10px;
  border-bottom: 1px solid var(--paper);
}

.dropdown-content a:last-child {
  border-bottom: 0;
}

.dropdown-content a:hover {
  background-color: var(--ivory);
  color: var(--gold-dark);
}

.quotation-btn {
  background: transparent;
  color: var(--gold-dark) !important;
  border: 1px solid var(--sand);
  padding: 12px 26px !important;
  border-radius: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}

.quotation-btn:hover {
  background: var(--paper);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(181,138,67,0.1);
}


.desktop-only {
  display: flex !important;
}

.mobile-only-nav-link {
  display: none !important;
  color: var(--gold-dark) !important;
  font-weight: 700 !important;
}

@media (max-width: 980px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only-nav-link {
    display: block !important;
    margin-top: 15px;
    border-top: 1px solid var(--sand);
    padding-top: 15px !important;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(460px, 100%);
  padding: 92px 0 90px;
}

.eyebrow,
.small-caps {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 92px);
  text-transform: uppercase;
}

h1 span {
  display: block;
  font-size: 0.62em;
  font-style: italic;
  text-transform: none;
}

.hero-text {
  max-width: 350px;
  margin: 26px 0 30px;
  color: #554a41;
}

.outline-button,
.gold-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 180ms ease;
}

.outline-button::after,
.gold-button::after {
  content: "→";
  margin-left: 12px;
  font-size: 14px;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--gold);
  color: #fff;
}

.gold-button {
  background: var(--gold);
  color: #fff;
}

.gold-button:hover,
.gold-button:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.inner-header {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.86) 52%, rgba(251, 247, 239, 0.36) 100%),
    url("assets/hero-telugu-wedding.png") center right / cover;
  border-bottom: 1px solid var(--sand);
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 112px;
}

.page-hero h1 {
  max-width: 680px;
  font-size: clamp(52px, 6vw, 86px);
}

.page-hero p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 0;
  color: #554a41;
}

.feature-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.feature-grid article,
.blog-card,
.process-list article {
  background: var(--paper);
  border: 1px solid var(--sand);
  padding: 28px;
}

.feature-grid h3,
.process-list h2,
.blog-card h2,
.portfolio-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-grid p,
.process-list p,
.blog-card p,
.portfolio-card p,
.film-card p {
  color: var(--muted);
}

.inner-about {
  padding-top: 68px;
  padding-bottom: 68px;
}

.portfolio-grid {
  display: grid;
  gap: 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--sand);
}

.portfolio-card:nth-child(even) img {
  order: 2;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 5 / 3.4;
  object-fit: cover;
}

.portfolio-card div {
  padding: 12px 18px;
}

.wide-grid {
  width: min(1120px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.film-card p {
  margin: 10px 0 14px;
}

.process-list {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.process-list article {
  display: grid;
  grid-template-columns: 86px 0.7fr 1fr;
  gap: 24px;
  align-items: center;
}

.process-list span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.blog-card {
  padding: 12px 12px 24px;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}

.blog-card .eyebrow,
.blog-card h2,
.blog-card p,
.blog-card a {
  margin-left: 12px;
  margin-right: 12px;
}

.blog-card a {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card a::after {
  content: "  ->";
}

.contact-page-section {
  width: min(1120px, calc(100% - 48px));
  margin: 58px auto;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
}

.section {
  padding: 34px min(6vw, 72px);
  border-bottom: 1px solid var(--sand);
}

.tinted {
  background: rgba(255, 253, 248, 0.58);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: min(1190px, 100%);
  margin: 0 auto;
}

.story-card {
  text-align: center;
}

.story-card img,
.moment-grid img,
.insta-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-card img {
  box-shadow: var(--shadow);
}

.story-card h3,
.film-card h3 {
  margin: 14px 0 2px;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card a,
.film-card a {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card a::after,
.film-card a::after {
  content: "  ->";
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(1190px, 100%);
  margin: 0 auto;
}

.moment-grid figure {
  margin: 0;
  text-align: center;
}

.moment-grid figcaption {
  margin-top: 12px;
  color: #5d5146;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.film-card {
  padding: 10px 10px 18px;
  background: var(--paper);
  border: 1px solid var(--sand);
}

.film-image {
  position: relative;
  overflow: hidden;
}

.film-image img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(52, 43, 36, 0.22);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.about-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.about-image {
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--sand);
}

.about-image img {
  width: 100%;
  aspect-ratio: 5 / 3.5;
  object-fit: cover;
}

.about-copy p:not(.eyebrow):not(.small-caps) {
  color: var(--muted);
}

.testimonials {
  background: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1000px, 100%);
  margin: 0 auto;
}

blockquote {
  margin: 0;
  padding: 8px 32px 12px;
  border-left: 1px solid var(--sand);
  color: var(--muted);
  position: relative;
}

blockquote::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 62px;
}

blockquote p {
  margin: 0 0 18px;
}

cite {
  color: var(--ink);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram {
  text-align: center;
}

.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  width: min(1080px, 100%);
  margin: 0 auto 24px;
}

.insta-strip img {
  aspect-ratio: 1;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
  background: var(--paper);
}

.contact-photo {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.1), rgba(251, 247, 239, 0.74)),
    url("assets/hero-telugu-wedding.png") center / cover;
}

.contact-panel {
  padding: 56px min(6vw, 78px);
  align-self: center;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.enquiry-form label {
  display: grid;
  gap: 4px;
}

.enquiry-form span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 138, 67, 0.14);
}

.wide {
  grid-column: 1 / -1;
}

.enquiry-form .gold-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 230px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
  padding: 80px min(8vw, 100px) 40px;
  background: var(--paper);
  border-top: 1px solid var(--sand);
  text-align: left;
}

.site-footer .footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 0;
}

.site-footer h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 25px;
  font-weight: 700;
}

.site-footer a, 
.site-footer p:not(.copyright) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.site-footer a:hover {
  color: var(--gold-dark);
  transform: translateX(5px);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid rgba(181, 138, 67, 0.1);
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer .footer-logo-wrap {
    align-items: center;
  }
  .site-footer a:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.88) 48%, rgba(251, 247, 239, 0.3) 100%),
      url("assets/hero-telugu-wedding.png") center / cover;
  }

  .menu-toggle {
    display: block;
  }

  .nav-shell {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    z-index: 5;
    display: none;
    width: min(320px, calc(100vw - 48px));
    padding: 18px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--sand);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 8px;
  }

  .hero {
    min-height: 560px;
  }

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

  .about-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  blockquote {
    border-left: 0;
    border-top: 1px solid var(--sand);
  }

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

@media (max-width: 680px) {
  .nav-shell,
  .hero,
  .about-section {
    width: min(100% - 32px, 1180px);
  }

  .brand-mark img {
    width: 96px;
  }

  .hero {
    min-height: 610px;
    align-items: flex-end;
  }

  .hero-copy {
    padding-bottom: 46px;
  }

  h1 {
    font-size: 52px;
  }

  .section {
    padding: 32px 16px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .section-heading:not(.left) h2 {
    max-width: 320px;
    margin-inline: auto;
  }

  .story-grid,
  .moment-grid,
  .film-grid,
  .about-section,
  .feature-grid,
  .blog-grid,
  .portfolio-card,
  .contact-section,
  .enquiry-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-hero {
    width: min(100% - 32px, 1180px);
    padding: 62px 0 76px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .portfolio-card:nth-child(even) img {
    order: 0;
  }

  .portfolio-card div {
    padding: 6px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wide-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-section {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .story-grid,
  .moment-grid {
    gap: 18px;
  }

  .film-image img {
    aspect-ratio: 4 / 3;
  }

  .contact-photo {
    min-height: 260px;
  }

  .contact-panel {
    padding: 36px 16px;
  }

  .enquiry-form .gold-button {
    width: 100%;
  }

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

/* Quotation Button in Header */
.quotation-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.quotation-btn:hover {
  background: var(--paper);
  border-color: var(--gold-dark);
}

.quotation-btn::after {
  content: "→";
  font-size: 14px;
  margin-left: 8px;
  color: var(--gold-dark);
}

/* Packages Page Styles */
.packages-hero {
  text-align: center;
  padding: 80px 20px 40px;
  border-bottom: 1px solid var(--sand);
}

.packages-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.packages-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(1200px, 100% - 40px);
  margin: 60px auto;
}

.package-card {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-card.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(181, 138, 67, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 4px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 2;
}

.package-content {
  padding: 30px;
  text-align: center;
}

.package-content h3 {
  font-size: 24px;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-content .package-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  text-align: left;
}

.package-features li {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
}

.package-price {
  border-top: 1px solid var(--sand);
  padding-top: 20px;
  margin-top: 20px;
}

.package-price .amount {
  font-size: 22px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}

.package-price .onwards {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

/* Bottom Features Bar */
.bottom-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  background: var(--paper);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.feature-info h4 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-info p {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--muted);
}

/* Blog Hero Update */
.blog-hero {
  position: relative;
  height: 600px;
  background: url("assets/journal-hero.png") center / cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 min(6vw, 72px);
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.95) 0%, rgba(251, 247, 239, 0.7) 40%, rgba(251, 247, 239, 0) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.blog-hero h1 {
  font-size: clamp(48px, 8vw, 72px);
  margin: 0;
  text-transform: uppercase;
}

.blog-hero .eyebrow {
  font-size: 14px;
  margin-bottom: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 980px) {
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .bottom-features {
    grid-template-columns: 1fr 1fr;
  }
  
  .blog-hero {
    height: 450px;
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .bottom-features {
    grid-template-columns: 1fr;
  }
}

/* Decorative Elements for Packages */
.packages-hero h1 {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.packages-hero h1::before {
  content: "♡";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 18px;
}

.package-section-header {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.package-section-header::before,
.package-section-header::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--line);
}

/* Corner Decorations */
.packages-container {
  position: relative;
  background: var(--ivory);
  padding-bottom: 80px;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.corner-leaf {
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg width='250' height='250' viewBox='0 0 250 250' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 240C10 240 50 180 120 160C190 140 230 80 240 10' stroke='%23d8c7ad' stroke-width='0.5'/%3E%3Cpath d='M120 160C120 160 140 130 135 110C130 90 100 80 80 90C60 100 55 130 65 150C75 170 100 175 120 160Z' stroke='%23d8c7ad' stroke-width='0.5'/%3E%3Cpath d='M160 120C160 120 185 100 185 80C185 60 165 45 145 50C125 55 115 75 120 95C125 115 145 125 160 120Z' stroke='%23d8c7ad' stroke-width='0.5'/%3E%3Cpath d='M80 190C80 190 60 210 40 205C20 200 10 180 15 160C20 140 40 130 60 135C80 140 85 170 80 190Z' stroke='%23d8c7ad' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.6;
}

.top-left { top: -20px; left: -50px; transform: rotate(0deg); }
.top-right { top: -20px; right: -50px; transform: rotate(90deg); }
.bottom-left { bottom: -20px; left: -50px; transform: rotate(-90deg); }
.bottom-right { bottom: -20px; right: -50px; transform: rotate(180deg); }

/* Card icon refinements */
.package-card h3::after {
  content: "♡";
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: var(--gold);
}

.package-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -27px auto 15px;
  background: #fff;
  position: relative;
  z-index: 3;
}

.package-icon-circle img {
  width: 24px;
  aspect-ratio: 1;
}

.package-price {
  background: var(--paper);
  border: 1px solid var(--sand);
  padding: 12px 20px;
  border-radius: 4px;
  width: 80%;
  margin: 0 auto;
}

.package-price.gold-bg {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.package-price.gold-bg .onwards {
  color: rgba(255, 255, 255, 0.8);
}

.lets-talk-btn {
  background: var(--gold-dark);
  color: #fff;
  padding: 10px 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lets-talk-btn::after {
  content: "→";
}

/* Feature bar icons */
.feature-icon-box {
  opacity: 0.7;
}

@media (max-width: 980px) {
  .corner-leaf { display: none; }
}

/* Experience Page Specifics */
.exp-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: min(1200px, 100% - 40px);
  margin: 60px auto;
  align-items: center;
}

.exp-hero-content h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 10px 0 20px;
  line-height: 1.1;
}

.exp-hero-content h2 span {
  color: var(--gold);
}

.exp-hero-content .cursive {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  margin-top: 25px;
  display: block;
}

.exp-hero-image {
  position: relative;
  padding: 10px;
  border: 1px solid var(--sand);
}

.exp-hero-image::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--line);
  z-index: -1;
}

.exp-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

/* Experience Features Grid */
.exp-features-container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--sand);
}

.exp-feature-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.exp-feature-item:nth-child(3n) {
  border-right: 0;
}

.exp-feature-item:nth-child(n+4) {
  border-bottom: 0;
}

.exp-feature-item h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 15px 0 10px;
}

.exp-feature-item p {
  font-size: 12px;
  color: var(--muted);
}

/* Stats Bar */
.stats-container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px;
  border: 1px solid var(--sand);
  background: var(--paper);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  border-right: 1px solid var(--sand);
}

.stat-box:last-child {
  border-right: 0;
}

.stat-number {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
}

.expertise-card {
  background: #fff;
  border: 1px solid var(--sand);
  overflow: hidden;
}

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

.expertise-card-content {
  padding: 20px;
  text-align: center;
}

.expertise-card-content h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.expertise-card-content p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

/* Quote Bar */
.quote-bar {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 80px;
  padding: 30px;
  background: var(--ivory);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
}

@media (max-width: 980px) {
  .exp-hero-section { grid-template-columns: 1fr; gap: 40px; }
  .exp-features-container { grid-template-columns: 1fr 1fr; }
  .exp-feature-item:nth-child(2n) { border-right: 0; }
  .exp-feature-item:nth-child(n+5) { border-bottom: 0; }
  .stats-container { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat-box:nth-child(2n) { border-right: 0; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .exp-features-container, .stats-container, .expertise-grid { grid-template-columns: 1fr; }
  .exp-feature-item, .stat-box { border-right: 0; border-bottom: 1px solid var(--sand); }
  .exp-feature-item:last-child, .stat-box:last-child { border-bottom: 0; }
}

/* Contact Page Specifics */
.contact-container-box {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: #fff;
  border: 1px solid var(--sand);
}

.contact-form-side {
  padding: 60px;
  border-right: 1px solid var(--sand);
}

.contact-info-side {
  padding: 60px;
  background: var(--paper);
}

.contact-form-side h2,
.contact-info-side h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form-side h2 svg {
  color: var(--gold);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.info-content p {
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}

.info-content small {
  font-size: 11px;
  color: var(--muted);
}

.social-connect {
  margin-top: 40px;
  text-align: center;
}

.social-connect-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 15px;
}

.social-connect-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-connect-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Bottom CTA section */
.bottom-cta-box {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--sand);
  align-items: center;
}

.cta-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.cta-text-content h3 {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.cta-text-content h3 span {
  color: var(--gold);
}

.cta-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.cta-whatsapp-link svg {
  color: #25D366;
}

@media (max-width: 980px) {
  .contact-container-box { grid-template-columns: 1fr; }
  .contact-form-side { border-right: 0; border-bottom: 1px solid var(--sand); padding: 40px 20px; }
  .contact-info-side { padding: 40px 20px; }
  .bottom-cta-box { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .cta-image { width: 180px; margin: 0 auto; }
  .cta-whatsapp-link { justify-content: center; }
}

/* Quotation Page Specifics */
.quotation-grid {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.quotation-form-card {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 40px;
}

.form-section {
  margin-bottom: 40px;
}

.form-section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.form-section-title svg {
  color: var(--gold);
}

.input-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.event-item {
  border: 1px solid var(--line);
  padding: 15px 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.event-item:hover {
  border-color: var(--gold);
  background: var(--ivory);
}

.event-item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0;
}

.event-item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.budget-radio-grid {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.budget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.budget-item input {
  width: auto;
  min-height: auto;
  accent-color: var(--gold);
}

/* Quotation Sidebar */
.quotation-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--sand);
  padding: 30px;
  text-align: center;
}

.sidebar-image-wrap {
  position: relative;
  margin-bottom: 25px;
  padding: 10px;
}

.sidebar-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  z-index: 0;
}

.sidebar-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.sidebar-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.sidebar-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.benefit-item {
  text-align: center;
}

.benefit-item h4 {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 8px 0 5px;
}

.benefit-item p {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 980px) {
  .quotation-grid { grid-template-columns: 1fr; }
  .input-row-3 { grid-template-columns: 1fr; }
  .event-checkbox-grid { grid-template-columns: repeat(3, 1fr); }
  .budget-radio-grid { flex-direction: column; gap: 15px; }
  .quotation-sidebar { position: static; }
}

@media (max-width: 600px) {
  .event-checkbox-grid { grid-template-columns: 1fr 1fr; }
}

/* Portfolio Page Specifics */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  transition: 0.3s;
}

.filter-btn.active {
  color: var(--gold-dark);
  font-weight: 700;
}

.filter-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.filter-btn:hover {
  color: var(--ink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sand);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }

@media (max-width: 980px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 1; }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .portfolio-filter { gap: 15px; }
}

/* Add-ons Section */
.addons-container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  background: #fff;
  border: 1px solid var(--sand);
  padding: 40px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--paper);
  transition: 0.3s;
}

.addon-item:hover {
  border-color: var(--gold);
  background: var(--ivory);
}

.addon-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-info h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.addon-info p {
  font-size: 10px;
  color: var(--muted);
  margin: 2px 0 0;
}

@media (max-width: 980px) {
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .addons-grid { grid-template-columns: 1fr; }
}

/* Stories Page Specifics */
.stories-grid-wrap {
  position: relative;
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
}

/* Stories Grid System */
.stories-grid-wrap {
  width: min(1300px, 100% - 48px);
  margin: 0 auto 80px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(181, 138, 67, 0.08);
  border-color: var(--gold);
}

.story-card .card-img-box {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.story-card .card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card-body {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 5px;
  font-weight: 500;
  color: var(--ink);
}

.story-card .location {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 22px;
  font-weight: 700;
}

.story-card .desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.view-story-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.view-story-link:hover {
  color: var(--ink);
}

@media (max-width: 1024px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .stories-grid { grid-template-columns: 1fr; }
}

.testimonial-bar {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--sand);
  padding: 40px;
  background: #fff;
}

.testimonial-item {
  text-align: center;
}

.testimonial-item p {
  font-style: italic;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

.happy-couples-badge {
  text-align: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 20px;
}

.happy-couples-badge h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.happy-couples-badge span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

@media (max-width: 980px) {
  .testimonial-bar { grid-template-columns: 1fr; }
  .happy-couples-badge { border: 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}

/* Blog Page Specifics */
.blog-container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--sand);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
  flex-grow: 1;
}

.blog-card-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}

.blog-card-title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--ink);
}

.blog-card-meta {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--paper);
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  border: 1px solid var(--sand);
  padding: 25px;
  background: #fff;
}

.widget-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.popular-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
}

.popular-post-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.popular-post-info h5 {
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 4px;
}

.popular-post-info span {
  font-size: 9px;
  color: var(--muted);
}

/* Subscription */
.subscribe-section {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  background: #fff;
  border: 1px solid var(--sand);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.subscribe-content {
  max-width: 500px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-grow: 1;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 12px 20px;
  border: 1px solid var(--sand);
  background: var(--paper);
}

@media (max-width: 980px) {
  .blog-grid-layout { grid-template-columns: 1fr; }
  .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .subscribe-section { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .blog-posts-grid { grid-template-columns: 1fr; }
}

/* Experience Page Specifics */
.expertise-section {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.expertise-card {
  background: #fff;
  border: 1px solid var(--sand);
  transition: 0.3s;
}

.expertise-card:hover {
  border-color: var(--gold);
}

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

.expertise-card-content {
  padding: 15px;
  text-align: center;
}

.expertise-card-content h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.expertise-card-content p {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.5;
}

.exp-quote-banner {
  width: min(1200px, 100% - 40px);
  margin: 0 auto 60px;
  background: var(--ivory);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--paper);
}

.exp-quote-banner p {
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
/* Global Motifs & Flourishes */
.motif-frame {
  position: relative;
  overflow: hidden;
}

.motif-left, .motif-right {
  position: absolute;
  width: 350px;
  height: 350px;
  background: url('assets/botanical-leaf.svg') no-repeat;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.motif-left { left: -100px; top: -50px; transform: rotate(-10deg); }
.motif-right { right: -100px; top: -50px; transform: rotate(10deg) scaleX(-1); }

.corner-leaf {
  position: absolute;
  width: 180px;
  height: 180px;
  background: url('assets/floral-corner.svg') no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.corner-leaf.top-left { top: 20px; left: 20px; }
.corner-leaf.top-right { top: 20px; right: 20px; transform: scaleX(-1); }
.corner-leaf.bottom-left { bottom: 20px; left: 20px; transform: scaleY(-1); }
.corner-leaf.bottom-right { bottom: 20px; right: 20px; transform: scale(-1); }

.section-flourish {
  margin: 40px auto;
  width: 200px;
  height: 1px;
  background: var(--sand);
  position: relative;
}

.section-flourish::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  width: 30px;
  height: 30px;
  background: url('assets/minimal-leaf.svg') no-repeat center;
  background-size: 20px;
  padding: 0 10px;
  background-color: var(--paper);
}

/* Shared Package Card System */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: auto; /* Allow natural height */
  max-width: 420px;
  margin: 0 auto;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(181, 138, 67, 0.08);
  border-color: var(--gold);
}

.package-card.popular {
  border: 2px solid var(--gold);
  transform: scale(1.02);
  z-index: 5;
}

.popular-badge {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 0;
  text-align: center;
  font-weight: 700;
  width: 100%;
}

.p-img-box {
  height: 200px; /* Force landscape aspect ratio */
  overflow: hidden;
  position: relative;
}

.p-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-icon-circle {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.p-body {
  padding: 45px 25px 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.p-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.p-body .tagline {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
  flex-grow: 1;
}

.p-features li {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.p-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.p-price-box {
  background: #fbfaf8;
  border: 1px solid var(--sand);
  padding: 18px;
  border-radius: 2px;
  text-align: center;
  margin-top: auto; /* Aligns to bottom of flex container */
}

.popular .p-price-box {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.p-price-box .amount {
  display: block;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.p-price-box .onwards {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .package-grid { grid-template-columns: 1fr; gap: 60px; }
  .package-card.popular { transform: none; }
}

