/* =========================
   1. BASE STYLES
========================= */

body {
  font-family: 'Libre Caslon Text', serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* If you have any outer wrapper like .page, .container, .wrapper, etc.
     replace .page-wrapper below with that class name */
.page-wrapper,
.site-wrapper,
.main-content {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* =========================
   2. HEADER & NAV
========================= */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
}

.main-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #777;
}

/* Logo handling */

.desktop-logo-item img {
  width: 130px;
  height: auto;
  display: block;
}

.mobile-logo {
  display: none;
  height: 90px;
  width: 50px;
}

/* Icons */

.hamburger,
.close-icon {
  display: none;
}

/* Overlay for mobile menu */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}

.menu-overlay.active {
  display: block;
}

/* Make main page container full width on mobile */
@media (max-width: 768px) {

  body,
  html {
    width: 100vw;


  }
}

/* =========================
   3. STORIES GRID
========================= */

.stories {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-image img {
  width: 100%;
  display: block;
  height: 450px;
  object-fit: cover;
  position: relative;
}

.story-card {
  background: #f8f7f5;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: slideUp 2s ease-out forwards;
}

/* Remove underline from story links */

.stories a {
  text-decoration: none !important;
  color: inherit;
  display: block;
}


/* Hover on story cards */

.stories a:hover .story-card {
  opacity: 0.9;
  transition: 0.3s ease;
}

.stories a:hover .story-tagline {
  color: #777;
  text-align: center;
}

/* Story tagline styling */

.story-tagline {
  color: #242324;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: none;
  padding-bottom: 0.5px;
  text-align: center !important;
  text-decoration: none !important;
}

/* Ensure no underline anywhere in stories */

.stories a,
.stories a:hover,
.stories .story-tagline,
.stories .story-title,
.stories .story-note {
  text-align: center !important;
}

/* =========================
   4. ABOUT CARDS
========================= */

.About {
  max-width: 1080px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.About-card {
  background: #f8f7f5;
  display: flex;
  flex-direction: column;
}

.About-image img {
  width: 100%;
  display: block;
  height: 550px;
  object-fit: none;
  transition: all 0.3s ease-in-out;
  transform: scale(1.02);
}

.About-text p {
  padding: 24px 18px 26px;
  text-align: center;
  font-size: 14px;
}

.About-tagline {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #555555;
  text-align: center;
}

.About-title {
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: none;
  margin: 0 0 16px;
  color: #222222;
  text-align: center;
  padding: 13px;
}

.About-note {
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0;
  color: #999999;
  padding: 10px;
  text-align: center;
}

.About-card:hover .About-image img {
  filter: brightness(0.9);
}

/* =========================
   5. ABOUT COUPLE
========================= */

.about-couple {
  background: #ffffff;
  padding: 0;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 10px;
}

.about-heading {
  font-size: 30px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 40px;
}

.about-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #555555;
  margin: 0;
}

.about-photo img {
  width: 100%;
  display: block;
  background: #f8f8f8;
  padding: 10px;
  animation-name: myAnimation;
  animation-duration: 6s;
}

/* =========================
   6. APPROACH SECTION
========================= */

.approach {
  padding: 80px 20px;
  background: #ffffff;
}

.approach-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.approach-photo img {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 9px;
  background: #f8f8f8;
  animation-name: myAnimation;
  animation-duration: 6s;
}

.approach-text {
  text-align: left;
}

.approach-heading {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.approach-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #555555;
  margin: 0;
  text-align: center;
}

/* =========================
   7. MINI NAV
========================= */

.mini-nav {
  padding: 60px 20px;
  background: #ffffff;
}

.mini-nav-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-item {
  text-align: center;
  padding: 0 30px;
}

.mini-item a {
  text-decoration: none;
  color: inherit;
}

.mini-item a:hover {
  text-decoration: none;
}

.mini-item h3 {
  font-family: "Georgia", serif;
  font-size: 20px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #444444;
  text-decoration: none;
}

.mini-item p {
  font-family: "Georgia", serif;
  font-size: 16px;
  color: #777777;
  margin: 0;
  transition: transform 0.3s;
  text-decoration: none;
}

.mini-divider {
  width: 1px;
  height: 60px;
  background: #dddddd;
}

.mini-item:hover {
  transform: scale(1.05);
}

/* =========================
   8. INQUIRE SECTION
========================= */

.inquire {
  padding: 80px 20px;
  background: #ffffff;
}

.inquire-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.inquire-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation-name: myAnimation;
  animation-duration: 6s;
}

.inquire-panel {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquire-content {
  text-align: center;
  padding: 40px 30px;
}

.inquire-heading {
  font-family: "Georgia", serif;
  font-size: 30px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #444444;
}

.inquire-subtitle {
  font-family: "Georgia", serif;
  font-size: 16px;
  color: #777777;
  margin: 0 0 50px;
}

.inquire-btn {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #bfbfbf;
  text-decoration: none;
  font-family: "Georgia", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  background: transparent;
}

.inquire-btn:hover {
  background: #e8e8e8;
}

/* =========================
   9. CONTACT / CHAT
========================= */

.contact-chat {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Georgia", serif;
}

.contact-chat-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}

.chat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chat-intro {
  text-align: center;
  margin-bottom: 40px;
}

.chat-heading {
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.chat-intro p {
  margin: 4px 0;
  font-size: 14px;
  color: #555555;
}

.chat-intro a {
  color: #555555;
  text-decoration: underline;
}

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 7px ;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  font-family: "Georgia", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555555;
  margin: 8px 0;
}

.chat-form textarea {
  text-transform: none;
  letter-spacing: 0.05em;
  resize: vertical;

}

.chat-form button {
  margin-top: 10px;
  padding: 12px 30px;
  border: 1px solid #bfbfbf;
  background: transparent;
  font-family: "Georgia", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
}

.chat-form button:hover {
  background: #e8e8e8;
}

.budget-field {
  max-width: 360px;
  font-family: "Georgia", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
}

.budget-field label {
  display: block;
  margin-bottom: 6px;
}

.budget-field select {
  width: 100%;
  padding: 10px 12px;
  font-family: "Georgia", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: none;
  color: #333333;
  border: 1px solid #bfbfbf;
  background-color: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.budget-field select:focus {
  outline: none;
  border-color: #888888;
}

/* =========================
   10. PROJECTS / GALLERY
========================= */

.projects-section {
  width: 100%;
  font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
}

.projects-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  font-family: Georgia, sans-serif;
  letter-spacing: 2px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
}

.project-item img {
  width: 100%;
  height: 400px;
  display: block;
  transition: transform .3s;
}

.project-item:hover img {
  transform: scale(1.05);
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #080808;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 3px;
}

/* stagger project animation */
.project-item:nth-child(1) {
  animation-delay: 0.1s;
}

.project-item:nth-child(2) {
  animation-delay: 0.2s;
}

.project-item:nth-child(3) {
  animation-delay: 0.3s;
}

.project-item:nth-child(4) {
  animation-delay: 0.4s;
}

.project-item:nth-child(5) {
  animation-delay: 0.5s;
}

.project-item:nth-child(6) {
  animation-delay: 0.6s;
}

.project-item:nth-child(7) {
  animation-delay: 0.7s;
}

.project-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Masonry gallery */

.gallery {
  column-count: 3;
  column-gap: 15px;
  padding-top: 83px;
}

.gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px;
  display: block;
  break-inside: avoid;
  opacity: 0;
  animation: fadeSlide 1s ease-out forwards;
  transition: transform .4s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* stagger gallery animation */
.gallery img:nth-child(1) {
  animation-delay: .1s;
}

.gallery img:nth-child(2) {
  animation-delay: .2s;
}

.gallery img:nth-child(3) {
  animation-delay: .3s;
}

.gallery img:nth-child(4) {
  animation-delay: .4s;
}

.gallery img:nth-child(5) {
  animation-delay: .5s;
}

.gallery img:nth-child(6) {
  animation-delay: .6s;
}

.gallery img:nth-child(7) {
  animation-delay: .7s;
}

.gallery img:nth-child(8) {
  animation-delay: .8s;
}

.gallery img:nth-child(9) {
  animation-delay: .9s;
}

.gallery img:nth-child(10) {
  animation-delay: 1s;
}

/* =========================
   11. JOURNAL SECTION
========================= */

.journal-section {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: -40px auto;
  background: #ffffff;
  font-family: "Georgia", serif;
  text-align: center;
  opacity: 0;
  animation: slideDown 1s ease forwards;
}

.journal-heading {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 8px;
  font-weight: 400;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.2s;
}

.journal-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 60px;
}

.journal-item {
  display: flex;
  background-color: #f9f9f8;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  animation: slideDown 0.9s ease forwards;
}

.journal-image {
  flex: 1;
  height: 100%;
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journal-text {
  flex: 1;
  padding: 20px 30px;
  text-align: center;
}

.journal-text h3 {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 2px;
  color: #555;
  margin: 0;
  text-transform: uppercase;
}

/* stagger journal cards */
.journal-item:nth-child(1) {
  animation-delay: 0.3s;
}

.journal-item:nth-child(2) {
  animation-delay: 0.45s;
}

.journal-item:nth-child(3) {
  animation-delay: 0.6s;
}

.journal-item:nth-child(4) {
  animation-delay: 0.75s;
}

.journal-item:nth-child(5) {
  animation-delay: 0.9s;
}

.journal-item:nth-child(6) {
  animation-delay: 1.05s;
}

/* =========================
   12. SEARCH-ENDS SECTION
========================= */

.search-ends {
  padding: 130px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #555;
  letter-spacing: 4px;
  margin-bottom: 80px;
  text-transform: uppercase;
}

.search-ends-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  animation: slideUp 1.2s ease-out forwards;
}

.search-photo {
  flex: 1;
  text-align: right;
}

.search-photo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  display: block;
  margin-left: auto;
}

.search-text {
  flex: 1;
  text-align: center;
}

.search-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.search-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  transition: opacity 0.3s ease;
}

.search-link:hover {
  opacity: 0.6;
}

/* =========================
   13. PHOTO STRIP / THREE-COLUMN
========================= */

.Photo {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.Photo-image {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.Photo-image img {
  height: 450px;
  width: 300px;
  object-fit: cover;
  padding: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.Photo-image img:hover {
  filter: brightness(0.8);
  transform: scale(1.05);
}

.three-column-section {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 30px;
}

.three-column-section .box {
  flex: 1;
  max-width: 300px;
}

.title {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #444;
}

.subtitle {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}

.three-column-section .divider {
  width: 1px;
  background-color: #ddd;
  height: 50px;
  margin: auto 0;
}

/* =========================
   14. FOOTER
========================= */

.site-footer {
  padding: 80px 20px 60px;
  text-align: center;
  background: #ffffff;
}

.social-icons {
  margin-bottom: 30px;
}

.social-icons a {
  color: #666;
  margin: 0 12px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #000;
}

.footer-text p {
  font-size: 20px;
  color: #555;
  line-height: 1.6em;
}

.scroll-top {
  margin-top: 40px;
}

.scroll-top a {
  color: #362e2e;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.scroll-top a:hover {
  color: #000;
  transform: translateY(-4px);
}

/* =========================
   15. HERO & QUOTES
========================= */

.overlap-section {
  width: 100%;
  position: relative;
}

.heading {
  text-align: center;
}

.overlap-image {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.quote-box {
  max-width: 70%;
  margin: -90px auto 60px;
  background: #ffffff;
  padding: 40px 45px;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeUp 1.2s ease forwards;
}

.quote-author {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
  letter-spacing: 0.5px;
}

.ceremony-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 10s ease forwards;
}

.subtext {
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.hero-quote {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px 45px;
  max-width: 720px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  animation: slideUpFade 1.6s ease forwards;
}

.hero-quote p {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  letter-spacing: 0.5px;
}

/* =========================
   16. SLIDESHOW
========================= */

.slideshow-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.slide-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
}

/* One slide with 3 portrait photos */

.slide {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 0px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.slide img {
  width: 32%;
  height: 585px;
  object-fit: cover;
  border-radius: 3px;
}

/* Remove underline in slide links */

.slide a,
.mini-item a,
.photography-item a {
  text-decoration: none !important;
  color: inherit;
}

.slide a h3,
.slide a p {
  text-decoration: none;
}

/* =========================
   17. FORMS (GENERIC)
========================= */

form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

label {
  display: block;
}

input[type=text],
select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* =========================
   18. ALBUM GRID
========================= */

.Album-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Album-item {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  animation: slideDown 0.8s ease-out forwards;
  opacity: 0;
}

.Album-item:nth-child(1) {
  animation-delay: 0.1s;
}

.Album-item:nth-child(2) {
  animation-delay: 0.3s;
}

.Album-item:nth-child(3) {
  animation-delay: 0.5s;
}

.Album-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.Album-item:hover img {
  transform: scale(1.05);
}

/* =========================
   19. TESTIMONIAL PAGE 
========================= */
.page {
      max-width: 1100px;
      margin: 0 auto;
      background-color: #f7eee7;
    }

    /* Top collage */
    .hero-collage {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-auto-rows: 260px;
      gap: 4px;
      overflow: hidden;
    }

    .hero-collage img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-collage .center {
      grid-row: span 2;
    }

    /* White text card */
    .hero-card {
      background-color: #fff;
      text-align: center;
      padding: 60px 80px;
      margin: -80px auto 80px;
      max-width: 620px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 2;
    }

    .hero-card .eyebrow {
      letter-spacing: 0.2em;
      font-size: 11px;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 18px;
    }

    .hero-card h1 {
      font-size: 32px;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .hero-card h1 span {
      font-family: "Great Vibes", cursive;
      font-size: 40px;
      font-weight: 400;
    }

    .hero-card p {
      font-size: 13px;
      color: #777;
      line-height: 1.8;
      max-width: 420px;
      margin: 0 auto;
    }

    /* Section title */
    .section-title {
      text-align: center;
      margin-bottom: 40px;
      letter-spacing: 0.25em;
      font-size: 13px;
      text-transform: uppercase;
    }

    /* Three cards section */
    .wedding-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      padding: 0 60px 80px;
    }

    .wedding-card {
      background-color: #fdf7f2;
      text-align: center;
      padding-bottom: 25px;
    }

    .wedding-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      margin-bottom: 18px;
    }

    .wedding-card h3 {
      font-size: 16px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .wedding-card p {
      font-size: 13px;
      color: #777;
      padding: 0 20px;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-collage {
        grid-template-columns: 1fr 1fr;
      }
      .hero-collage .center {
        grid-row: auto;
      }
      .hero-card {
        margin: 20px 20px 60px;
        padding: 40px 30px;
      }
      .wedding-grid {
        padding: 0 30px 60px;
      }
    }

    @media (max-width: 640px) {
      .hero-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
      }
      .wedding-grid {
        grid-template-columns: 1fr;
      }
    }
/* =========================
   19. ANIMATIONS
========================= */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes myAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   20. RESPONSIVE QUERIES
========================= */

/* Header & nav on mobile */

@media (max-width: 991px) {
  .site-header {
    height: 80px;
  }

  .main-nav {
    justify-content: space-between !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 15px !important;
  }

  .desktop-logo-item {
    display: none !important;
  }

  .mobile-logo,
  .mobile-logo-wrapper {
    display: block !important;
  }

  .m-logo {
    width: 45px !important;
    height: auto !important;
  }

  .hamburger {
    display: block !important;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
    z-index: 10001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1002;
    display: flex;
    box-shadow: none;
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu li a {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .close-icon {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
  }

  .stories {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 100px;
  }

  .story-image img {
    height: 500px;
  }

  .approach-inner {
    grid-template-columns: 1fr;
  }

  .approach-photo {
    max-width: 350px;
    margin: 0 auto 30px;
  }

  .contact-chat-inner {
    grid-template-columns: 1fr;
  }

  .chat-photo {
    max-width: 520px;
    margin: 0 auto 30px;
  }

  .inquire-inner {
    grid-template-columns: 1fr;
  }

  .inquire-panel {
    margin-top: 20px;
  }
}

/* tablets / smaller */

@media (max-width: 900px) {
  .stories {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-inner {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    order: 1;
  }

  .about-photo {
    order: 2;
    max-width: 420px;
    margin: 30px auto 0;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-item {
    flex-direction: column;
  }

  .three-column-section {
    flex-direction: column;
    gap: 40px;
  }

  .three-column-section .divider {
    display: none;
  }

  .quote-box {
    max-width: 85%;
    font-size: 18px;
    padding: 30px;
  }

  .overlap-image {
    height: 360px;
  }

  .ceremony-hero {
    height: 70vh;
  }
}

/* small screens */

@media (max-width: 768px) {
  .search-ends-inner {
    flex-direction: column;
    text-align: center;
  }

  .search-photo {
    text-align: center;
    margin-bottom: 30px;
  }

  .search-photo img {
    margin: 0 auto;
  }

  .new-tag {
    position: static;
    display: block;
    margin-top: 15px;
  }
}

/* phones */

@media (max-width: 700px) {
  .mini-nav-inner {
    flex-direction: column;
    gap: 22px;
  }

  .mini-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .stories {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .story-image img {
    height: 320px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  label,
  input[type=text],
  input[type=submit],
  select,
  textarea {
    flex: 100%;
    min-width: 100%;
  }

  .Photo-image img {
    padding: 20px;
    height: auto;
    width: 100%;
  }

  .slide {
    flex-direction: column;
    align-items: center;
  }

  .slide img {
    width: 90%;
  }

  .ceremony-hero {
    height: 60vh;
  }

  .hero-quote {
    margin: 0 16px;
    padding: 22px;
  }

  .hero-quote p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .journal-text {
    padding: 30px 10px;
  }
}