@charset "UTF-8";
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
  background-color: transparent;
}
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}
.site-header .navbar-brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.site-header .logo-default,
.site-header .logo-sticky {
  height: auto;
  width: 200px;
  display: inline-block;
}
.site-header .logo-sticky {
  display: none;
}
.site-header.scrolled .logo-default {
  display: none;
}
.site-header.scrolled .logo-sticky {
  display: inline-block;
}
.site-header .nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 1.5rem;
  color: #ffffff;
}
.site-header .nav-link.active, .site-header .nav-link:hover {
  color: #70bfcb;
}
.site-header.scrolled .nav-link {
  color: #111111;
}
.site-header .navbar-toggler {
  border: none;
  border-radius: 0;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}

/* ---------------------------------------
   HOME PAGE SCSS - COMPLETE
---------------------------------------- */
.page-home {
  /* ============= HERO ============= */
}
.page-home .hero-home {
  position: relative;
  height: 100vh;
  min-height: 640px;
  color: #ffffff;
  overflow: hidden;
}
.page-home .hero-home .hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-home .hero-home .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
  transform: scale(1.02);
}
.page-home .hero-home .hero-slide-1 {
  animation-delay: 0s;
}
.page-home .hero-home .hero-slide-2 {
  animation-delay: 8s;
}
.page-home .hero-home .hero-slide-3 {
  animation-delay: 16s;
}
.page-home .hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  z-index: 1;
}
.page-home .hero-home .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .page-home .hero-home .hero-content {
    align-items: center;
    padding-bottom: 40px;
    text-align: center;
  }
}
.page-home .hero-home .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
}
.page-home .hero-home .hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
  margin-bottom: 0.75rem;
}
.page-home .hero-home .hero-subtitle {
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0.5rem auto 1.5rem auto;
  line-height: 1.6;
}
.page-home .hero-home .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.page-home .hero-home .btn-outline-heras {
  border-radius: 0;
  border-width: 1px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  padding: 0.7rem 1.9rem;
}
.page-home .hero-home .hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
}
.page-home .hero-home .hero-scroll-indicator .scroll-line {
  margin-top: 6px;
  width: 1px;
  height: 34px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.page-home .hero-home .hero-scroll-indicator .scroll-line::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #70bfcb;
  animation: scrollLine 1.8s infinite;
}
.page-home {
  /* Hero keyframes */
}
@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(34px);
    opacity: 0;
  }
}
.page-home {
  /* Fade text on load */
}
.page-home .fade-in-on-load {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 0.9s forwards;
}
.page-home .fade-in-on-load.delay-1 {
  animation-delay: 0.1s;
}
.page-home .fade-in-on-load.delay-2 {
  animation-delay: 0.25s;
}
.page-home .fade-in-on-load.delay-3 {
  animation-delay: 0.4s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-home {
  /* ============= GLOBAL SECTION STYLES ============= */
}
.page-home section.section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .page-home section.section {
    padding: 70px 0;
  }
}
.page-home .section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.page-home .section-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 750px;
  margin: 0 auto;
}
.page-home {
  /* IMAGE BLOCKS */
}
.page-home .signature-image,
.page-home .plan-image,
.page-home .destination-image {
  width: 100%;
  height: auto;
  padding-bottom: 120%;
  background-size: cover;
  background-position: bottom center;
}
.page-home {
  /* ============= SIGNATURE WEDDINGS ============= */
}
.page-home .section-signature-weddings .signature-title {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C2B59B;
}
.page-home {
  /* ============= PLAN TEASER ============= */
}
.page-home .section-plan-teaser {
  background-color: #f7f4f1;
}
.page-home {
  /* ============= PROMISE SECTION ============= */
}
.page-home .section-promise {
  padding: 100px 0;
  position: relative;
}
.page-home .section-promise.has-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.page-home .promise-content-wrapper {
  position: relative;
  z-index: 2;
}
.page-home .section-title.promise-eyebrow {
  margin-bottom: 30px;
}
.page-home .section-promise.has-background .promise-eyebrow {
  color: #fff;
  opacity: 0.9;
}
.page-home .promise-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}
.page-home .promise-text p {
  margin-bottom: 20px;
}
.page-home .promise-text strong,
.page-home .promise-text b {
  font-weight: 600;
  color: var(--heras-primary-color, #2C3E50);
}
.page-home .section-promise.has-background .promise-text strong,
.page-home .section-promise.has-background .promise-text b {
  color: #fff;
  font-weight: 500;
}
.page-home .promise-text em,
.page-home .promise-text i {
  font-style: italic;
  color: var(--heras-accent-color, #D4AF37);
}
.page-home {
  /* Responsive */
}
@media (max-width: 768px) {
  .page-home .section-promise {
    padding: 60px 0;
  }
  .page-home .promise-text {
    font-size: 16px;
    line-height: 1.7;
  }
}
.page-home {
  /* ============= DESTINATIONS ============= */
}
.page-home .section-destination-teaser .destination-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============= FINAL CTA ============= */
.section-final-cta {
  padding: 80px 0;
  background-color: #f7f4f1;
}
.section-final-cta .final-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.page-meet-ellie .section-meet-ellie-editorial {
  padding: 140px 0 120px;
}
.page-meet-ellie .meet-ellie-header {
  margin-bottom: 80px;
}
.page-meet-ellie .meet-ellie-header .page-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.page-meet-ellie .meet-ellie-header .page-subtitle {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
  color: #555;
}
.page-meet-ellie .meet-ellie-editorial-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  align-items: start;
}
.page-meet-ellie .collage-portrait {
  position: sticky;
  top: 140px;
  height: 700px;
}
.page-meet-ellie {
  /* κοινά */
}
.page-meet-ellie .collage-img {
  position: absolute;
  border-radius: 2px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s ease;
}
.page-meet-ellie {
  /* ΠΑΝΩ ΔΕΞΙΑ */
}
.page-meet-ellie .collage-top {
  width: 60%;
  right: -6%;
  top: 0;
  z-index: 2;
}
.page-meet-ellie {
  /* ΚΑΤΩ ΔΕΞΙΑ */
}
.page-meet-ellie .collage-bottom {
  width: 60%;
  left: -2%;
  bottom: -40px;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-meet-ellie .meet-ellie-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }
  .page-meet-ellie {
    /* ΣΕΙΡΑ 1: ΕΙΚΟΝΕΣ */
  }
  .page-meet-ellie .ellie-portrait,
  .page-meet-ellie .collage-portrait {
    position: relative;
    top: auto;
    height: auto;
    max-width: 420px;
    margin: 0 auto;
  }
  .page-meet-ellie .collage-img {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: none;
    margin-bottom: 24px;
  }
  .page-meet-ellie .collage-top {
    right: 0;
  }
  .page-meet-ellie {
    /* ΣΕΙΡΑ 2: ΚΕΙΜΕΝΟ */
  }
  .page-meet-ellie .ellie-story {
    max-width: 680px;
    margin: 0 auto;
  }
}

.ellie-story {
  max-width: 680px;
}

/* Editorial typography */
.editorial-content p {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.editorial-content h2,
.editorial-content h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 56px 0 24px;
}

/* Mobile */
@media (max-width: 991px) {
  .meet-ellie-editorial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ellie-portrait {
    position: relative;
    top: auto;
    max-width: 420px;
    margin: 0 auto;
  }
}
.couples-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.couples-gallery .couple-item {
  overflow: hidden;
  margin-bottom: 0;
}
.couples-gallery .couple-item img {
  width: 100%;
  height: 400px;
  transition: transform 0.6s ease;
  object-fit: cover;
}
.couples-gallery .couple-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .couples-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.kw-list {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f7f4f1;
}
.kw-list .kw-item {
  margin-bottom: 80px;
}
.kw-list .kw-item:last-child {
  margin-bottom: 0;
}
.kw-list .kw-item .kw-image-wrapper {
  position: relative;
}
.kw-list .kw-item .kw-img {
  border-radius: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .kw-list .kw-item .kw-content-col {
    padding-left: 60px;
  }
}
.kw-list .kw-item .kw-card {
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .kw-list .kw-item .kw-card {
    margin-top: 40px;
  }
}
.kw-list .kw-item .kw-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 38px;
  font-weight: 300;
  color: #C2B59B;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.kw-list .kw-item .kw-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.kw-list .kw-item .kw-meta p {
  margin: 0;
}
.kw-list .kw-item .kw-location {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: #C2B59B;
  opacity: 0.8;
}
.kw-list .kw-item .kw-date {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: #C2B59B;
  opacity: 0.8;
}
.kw-list .kw-item .kw-text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}
.kw-list .kw-item .kw-text p {
  margin: 0;
}
.kw-list .kw-item .kw-text::before {
  content: '"';
  font-size: 80px;
  position: absolute;
  left: -40px;
  top: -25px;
  color: #333;
  opacity: 0.15;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1;
}
.kw-list .kw-item .kw-text::after {
  content: '"';
  font-size: 80px;
  position: relative;
  color: #333;
  opacity: 0.15;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1;
  margin-left: 5px;
}
.kw-list .kw-item .kw-read-more {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #70bfcb;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: color 0.3s ease;
  float: right;
}
.kw-list .kw-item .kw-read-more:hover {
  color: #7FA9AE;
}
@media (min-width: 768px) {
  .kw-list .kw-item.kw-reverse .row {
    flex-direction: row-reverse;
  }
  .kw-list .kw-item.kw-reverse .kw-content-col {
    padding-left: 15px;
    padding-right: 60px;
  }
}

.section-instagram .instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.section-instagram .instagram-grid img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .section-instagram .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .section-instagram .instagram-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------
   PLAN YOUR WEDDING — FINAL EDITORIAL STYLE
   Matches Home + Meet Ellie
---------------------------------------------- */
body:not(.home) .site-main.page-plan-your-wedding {
  padding-top: 0;
}

.page-plan-your-wedding {
  /* ---------------------------------
     HERO VIDEO (AS IS)
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.page-plan-your-wedding .pyw-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-plan-your-wedding .pyw-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.page-plan-your-wedding {
  /* ---------------------------------
     EDITORIAL INTRO
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-editorial-intro {
  padding: 120px 0 80px;
  text-align: center;
  background-color: #f7f4f1;
}
.page-plan-your-wedding .editorial-eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 18px;
}
.page-plan-your-wedding .editorial-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
}
.page-plan-your-wedding .editorial-title span {
  display: block;
  font-size: 34px;
  opacity: 0.85;
}
.page-plan-your-wedding .editorial-text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}
.page-plan-your-wedding {
  /* ---------------------------------
     VISUAL STORY GRID
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-visual-story {
  padding: 80px 0;
}
.page-plan-your-wedding .visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.page-plan-your-wedding .visual-grid .visual-item {
  overflow: hidden;
  margin-bottom: 0;
}
.page-plan-your-wedding .visual-grid .visual-item img {
  width: 100%;
  height: 400px;
  transition: transform 0.6s ease;
  object-fit: cover;
  object-position: 0 100%;
}
.page-plan-your-wedding .visual-grid .visual-item:hover img {
  transform: scale(1.04);
}
.page-plan-your-wedding {
  /* ---------------------------------
     EDITORIAL BLOCK
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-editorial-block {
  padding: 200px 0;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: #fff;
}
.page-plan-your-wedding .editorial-subtitle {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 30px;
  opacity: 0.9;
}
.page-plan-your-wedding {
  /* ---------------------------------
     PLANNING PILLARS
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-pillars {
  padding: 100px 0;
}
.page-plan-your-wedding .pillar-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 14px;
}
.page-plan-your-wedding .pyw-pillars p {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 14px;
}
.page-plan-your-wedding .pyw-pillars ul {
  padding-left: 18px;
  list-style: disc;
}
.page-plan-your-wedding .pyw-pillars ul li {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}
.page-plan-your-wedding {
  /* ---------------------------------
     FINAL QUOTE
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-quote {
  padding: 80px 0 120px;
}
.page-plan-your-wedding .pyw-quote blockquote {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  opacity: 0.85;
  line-height: 1.6;
  color: #70bfcb;
}
.page-plan-your-wedding {
  /* ---------------------------------
     FINAL VIDEO (AS IS)
  ---------------------------------- */
}
.page-plan-your-wedding .pyw-final-video {
  padding-bottom: 80px;
}
.page-plan-your-wedding {
  /* ---------------------------------
     RESPONSIVE
  ---------------------------------- */
}
@media (max-width: 992px) {
  .page-plan-your-wedding .editorial-title {
    font-size: 36px;
  }
  .page-plan-your-wedding .editorial-title span {
    font-size: 28px;
  }
  .page-plan-your-wedding .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-plan-your-wedding .visual-grid {
    grid-template-columns: 1fr;
  }
  .page-plan-your-wedding .editorial-title {
    font-size: 32px;
  }
}

/* --------------------------------------------------------
   KIND WORDS PAGE (Matches Home + Meet Ellie + PYW)
--------------------------------------------------------- */
.page-kind-words {
  /* ---------------------------
     HERO
  --------------------------- */
}
.page-kind-words .kw-hero .kw-eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
}
.page-kind-words .kw-hero .kw-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.page-kind-words .kw-hero .kw-intro {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
  color: #444;
}
.page-kind-words {
  /* ---------------------------
     TESTIMONIAL LIST
  --------------------------- */
}
.page-kind-words .kw-list {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
.page-kind-words .kw-list .kw-item {
  position: relative;
  margin-bottom: 80px;
}
.page-kind-words .kw-list .kw-item.kw-reverse {
  padding: 40px 0;
}
.page-kind-words .kw-list .kw-item {
  /* Full width background μόνο στα εναλλάξ */
}
.page-kind-words .kw-list .kw-item.kw-reverse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #f7f4f1;
  z-index: 0;
}
.page-kind-words .kw-list .kw-item {
  /* Το πραγματικό content πάνω από το background */
}
.page-kind-words .kw-list .kw-item .row {
  position: relative;
  z-index: 1;
}
.page-kind-words .kw-list .kw-item:last-child {
  margin-bottom: 0;
}
.page-kind-words .kw-list .kw-item .kw-image-wrapper {
  position: relative;
}
.page-kind-words .kw-list .kw-item .kw-img {
  border-radius: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-kind-words .kw-list .kw-item .kw-content-col {
    padding-left: 60px;
  }
}
.page-kind-words .kw-list .kw-item .kw-card {
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .page-kind-words .kw-list .kw-item .kw-card {
    margin-top: 40px;
  }
}
.page-kind-words .kw-list .kw-item .kw-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  color: #C2B59B;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.page-kind-words .kw-list .kw-item .kw-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.page-kind-words .kw-list .kw-item .kw-meta p {
  margin: 0;
}
.page-kind-words .kw-list .kw-item .kw-location {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: #C2B59B;
  opacity: 0.8;
}
.page-kind-words .kw-list .kw-item .kw-date {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: #C2B59B;
  opacity: 0.8;
}
.page-kind-words .kw-list .kw-item .kw-text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}
.page-kind-words .kw-list .kw-item .kw-text p {
  margin: 0;
}
.page-kind-words .kw-list .kw-item .kw-text::before {
  content: '"';
  font-size: 80px;
  position: absolute;
  left: -40px;
  top: -25px;
  color: #333;
  opacity: 0.15;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1;
}
.page-kind-words .kw-list .kw-item .kw-text::after {
  content: '"';
  font-size: 80px;
  position: relative;
  color: #333;
  opacity: 0.15;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1;
  margin-left: 5px;
}
.page-kind-words .kw-list .kw-item .kw-read-more {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #70bfcb;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: color 0.3s ease;
  float: right;
}
.page-kind-words .kw-list .kw-item .kw-read-more:hover {
  color: #7FA9AE;
}
@media (min-width: 768px) {
  .page-kind-words .kw-list .kw-item.kw-reverse .row {
    flex-direction: row-reverse;
  }
  .page-kind-words .kw-list .kw-item.kw-reverse .kw-content-col {
    padding-left: 15px;
    padding-right: 60px;
  }
}
.page-kind-words {
  /* ---------------------------
     PAGINATION
  --------------------------- */
}
.page-kind-words .kw-pagination {
  margin-top: 80px;
  text-align: center;
}
.page-kind-words .kw-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.page-kind-words .kw-pagination li {
  display: inline-block;
}
.page-kind-words .kw-pagination a,
.page-kind-words .kw-pagination span {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}
.page-kind-words .kw-pagination a:hover {
  background: #C2B59B;
  color: #fff;
  border-color: #C2B59B;
}
.page-kind-words .kw-pagination .current {
  background: #C2B59B;
  color: #fff;
  border-color: #C2B59B;
}
.page-kind-words {
  /* ---------------------------
     FINAL CTA OVERRIDE (OPTIONAL)
  --------------------------- */
}
.page-kind-words .section-final-cta {
  margin-top: -20px;
}
.page-kind-words .section-final-cta h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/* ===============================
   CONNECT PAGE
================================ */
.connect-hero {
  padding-bottom: 80px;
}
.connect-hero .eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #777;
}
.connect-hero .section-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
}
.connect-hero .connect-intro {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
  color: #444;
}

/* FORM */
.connect-form {
  margin-bottom: 80px;
}
.connect-form label {
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 14px;
  margin-bottom: 6px;
}
.connect-form input,
.connect-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  background: transparent;
}
.connect-form input:focus,
.connect-form textarea:focus {
  outline: none;
  border-color: #000;
}
.connect-form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  background-color: transparent;
  color: #444;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
}
.connect-form select:focus {
  outline: none;
  border-color: #000;
}
.connect-form {
  /* Fix CF7 wrapper */
}
.connect-form .wpcf7-form-control-wrap {
  display: block;
}
.connect-form textarea {
  resize: vertical;
}
.connect-form .wpcf7-submit {
  margin-top: 30px;
  border: 1px solid #70bfcb;
  color: #70bfcb;
  border-radius: 0;
  padding: 0.75rem 1.8rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

/* WHATSAPP */
.connect-whatsapp {
  padding-bottom: 80px;
}
.connect-whatsapp .whatsapp-label {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 300;
}
.connect-whatsapp .whatsapp-link {
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.connect-whatsapp .whatsapp-link:hover {
  opacity: 0.6;
}

/* SOCIALS */
.connect-socials {
  padding-bottom: 80px;
}
.connect-socials .social-label {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
}
.connect-socials .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.connect-socials .social-links li a {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1px;
  color: #000;
  transition: opacity 0.3s ease;
}
.connect-socials .social-links li a:hover {
  opacity: 0.6;
}

/* ===============================
   FAQ SECTION (ACCORDION)
================================ */
.connect-faq {
  padding-bottom: 120px;
}
.connect-faq .faq-title {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 60px;
}
.connect-faq {
  /* GRID */
}
.connect-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 60px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.connect-faq .faq-inner {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 18px;
}
.connect-faq .faq-item {
  align-self: flex-start;
}
.connect-faq {
  /* QUESTION */
}
.connect-faq .faq-question {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
.connect-faq .faq-toggle {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.connect-faq {
  /* ANSWER */
}
.connect-faq .faq-answer {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  opacity: 0;
  margin-top: 0;
}
.connect-faq {
  /* OPEN STATE */
}
.connect-faq .faq-item.is-open .faq-answer {
  max-height: 600px;
  opacity: 1;
  margin-top: 14px;
}
.connect-faq .faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}
.connect-faq {
  /* RESPONSIVE */
}
@media (max-width: 992px) {
  .connect-faq .faq-grid {
    grid-template-columns: 1fr;
  }
}

.connect-form-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.connect-form-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  border-radius: 2px;
}

/* subtle editorial frame */
.connect-form__image::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: -1;
}

/* Form breathing space */
.connect-inquiry-form {
  padding-top: 10px;
}

/* Better vertical rhythm between fields */
.connect-inquiry-form .row {
  row-gap: 32px;
}

/* Labels refinement */
.connect-form label {
  letter-spacing: 0.04em;
}

/* Inputs – πιο “ήσυχα” */
.connect-form input,
.connect-form textarea,
.connect-form select {
  border-bottom-color: #ddd;
  transition: border-color 0.3s ease;
}

.connect-form input:focus,
.connect-form textarea:focus,
.connect-form select:focus {
  border-bottom-color: #000;
}

/* Submit button – πιο premium */
.connect-form .wpcf7-submit {
  margin-top: 42px;
  padding: 0.85rem 2.3rem;
  letter-spacing: 0.18em;
  transition: all 0.35s ease;
}

.connect-form .wpcf7-submit:hover {
  background-color: #70bfcb;
  color: #fff;
}

/* ===============================
   RESPONSIVE TWEAK
================================ */
@media (max-width: 991px) {
  .connect-form-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .connect-form-image {
    text-align: center;
  }
  .connect-form-image img {
    margin: 0 auto;
    max-width: 320px;
  }
  .connect-form-head h2 {
    font-size: 28px;
  }
}
.thankyou-page .thankyou-grid {
  margin: 80px 0 110px;
}
.thankyou-page .thankyou-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 18px;
}
.thankyou-page .thankyou-subtitle {
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.thankyou-page .thankyou-block {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.thankyou-page .thankyou-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.thankyou-page .thankyou-block-title {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}
.thankyou-page .thankyou-block-text {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}
.thankyou-page .thankyou-signoff {
  margin-top: 26px;
}
.thankyou-page .ig-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.thankyou-page .ig-tile {
  border-radius: 2px;
  overflow: hidden;
}
.thankyou-page .ig-tile img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.thankyou-page .ig-tile a:hover img {
  transform: scale(1.04);
}
.thankyou-page .thankyou-posts {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.thankyou-page .thankyou-post {
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.thankyou-page .thankyou-post-title {
  display: block;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #111;
  margin-bottom: 4px;
}
.thankyou-page .thankyou-post-meta {
  display: block;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.4px;
}
.thankyou-page .thankyou-actions {
  margin-top: 18px;
}
@media (max-width: 991px) {
  .thankyou-page .thankyou-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .thankyou-page .ig-tile img {
    height: 110px;
  }
}

/* ---------------------------------------------
   PORTFOLIO PAGE (Santorini Weddings)
---------------------------------------------- */
/* HERO */
.portfolio-hero {
  padding: 0 0 80px;
}
.portfolio-hero .section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.portfolio-hero .portfolio-intro {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  color: #444;
}
.portfolio-hero .portfolio-intro:first-of-type {
  margin-bottom: 20px;
}

/* GRID */
.portfolio-grid.first {
  padding: 0px 0 110px;
}
.portfolio-grid.my-bg-secondary {
  background-color: #f7f4f1;
  padding: 90px 0 110px;
}
.portfolio-grid .portfolio-cta-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.portfolio-grid .portfolio-card {
  text-align: left;
}
.portfolio-grid .portfolio-card:hover .portfolio-title {
  color: #999;
}
.portfolio-grid .portfolio-card .portfolio-thumb {
  border-radius: 4px;
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 18px;
}
.portfolio-grid .portfolio-card .portfolio-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 0;
  transition: color 0.3s ease;
}

/* DESTINATIONS CTA BLOCK */
.portfolio-destinations-cta {
  padding: 90px 0 110px;
}
.portfolio-destinations-cta .portfolio-cta-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.portfolio-destinations-cta .destination-card {
  text-align: left;
}
.portfolio-destinations-cta .destination-card .destination-thumb {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.portfolio-destinations-cta .destination-card h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.4px;
  margin-top: 14px;
}
.portfolio-destinations-cta .btn.btn-outline-heras {
  margin-top: 32px;
}

/* FINAL CTA override (optional, για οπτική συνέχεια) */
.section-final-cta {
  margin-top: -20px;
}

/* ---------------------------------------------
   DESTINATION WEDDINGS PAGE
---------------------------------------------- */
.page-destination-weddings {
  /* HERO */
}
.page-destination-weddings .destination-hero {
  padding: 0 0 80px;
}
.page-destination-weddings .destination-hero .section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-destination-weddings .destination-hero .intro {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  color: #444;
}
.page-destination-weddings {
  /* GROUPS */
}
.page-destination-weddings .destination-groups .destination-group {
  margin-bottom: 80px;
}
.page-destination-weddings .destination-groups .destination-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.page-destination-weddings .destination-groups .destination-card {
  text-align: left;
}
.page-destination-weddings .destination-groups .destination-card .destination-thumb {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 14px;
}
.page-destination-weddings .destination-groups .destination-card h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.4px;
  margin: 0;
}
.page-destination-weddings .section-final-cta {
  margin-top: -20px;
}

/* ---------------------------------------------------------
   ARCHIVE WEDDINGS (Weddings Index)
   Luxury grouped-by-destination layout
---------------------------------------------------------- */
.archive-weddings {
  /* ----------------------
     HERO
  ----------------------- */
}
.archive-weddings .archive-weddings-hero {
  padding: 0 80px 80px;
}
.archive-weddings .archive-weddings-hero .section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.archive-weddings .archive-weddings-hero .archive-intro {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  color: #444;
}
.archive-weddings {
  /* ----------------------
     DESTINATION GROUPS
  ----------------------- */
}
.archive-weddings .archive-weddings-groups .archive-destination-group {
  margin-top: 80px;
  margin-bottom: 80px;
}
.archive-weddings .archive-weddings-groups .archive-destination-group:first-child {
  margin-top: 0;
}
.archive-weddings .archive-weddings-groups .archive-destination-group .destination-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.archive-weddings .archive-weddings-groups {
  /* Cards */
}
.archive-weddings .archive-weddings-groups .wedding-item {
  text-align: left;
  margin-bottom: 20px;
}
.archive-weddings .archive-weddings-groups .wedding-item .wedding-thumb {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 14px;
  transition: opacity 0.3s ease;
}
.archive-weddings .archive-weddings-groups .wedding-item .wedding-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 20px;
  margin: 0;
  letter-spacing: 0.4px;
}
.archive-weddings .archive-weddings-groups .wedding-item:hover .wedding-thumb {
  opacity: 0.8;
}
.archive-weddings {
  /* ----------------------
     FINAL CTA
  ----------------------- */
}
.archive-weddings .section-final-cta {
  margin-top: -10px;
}

/* ---------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 991px) {
  .archive-weddings .archive-weddings-hero {
    padding: 120px 0 60px;
  }
  .archive-weddings .archive-weddings-hero .section-title {
    font-size: 34px;
  }
  .archive-weddings .archive-weddings-hero .archive-intro {
    font-size: 18px;
  }
  .archive-weddings .archive-weddings-groups .destination-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .archive-weddings .archive-weddings-hero {
    padding: 100px 0 50px;
  }
  .archive-weddings .archive-weddings-hero .section-title {
    font-size: 30px;
  }
  .archive-weddings .archive-weddings-groups .archive-destination-group {
    margin-bottom: 90px;
  }
}
/* ---------------------------------------------------------
   SINGLE DESTINATION TERM PAGE
   e.g. /wedding-destination/mykonos/
---------------------------------------------------------- */
.taxonomy-wedding-destination {
  /* ----------------------
     HERO
  ----------------------- */
}
.taxonomy-wedding-destination .destination-term-hero {
  padding: 0 0 80px;
}
.taxonomy-wedding-destination .destination-term-hero .destination-term-hero-img-wrapper {
  margin-bottom: 40px;
}
.taxonomy-wedding-destination .destination-term-hero .destination-term-hero-img-wrapper .destination-term-hero-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.taxonomy-wedding-destination .destination-term-hero .section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.taxonomy-wedding-destination .destination-term-hero .destination-term-intro {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  color: #444;
}
.taxonomy-wedding-destination {
  /* ----------------------
     GRID
  ----------------------- */
}
.taxonomy-wedding-destination .destination-term-grid {
  padding: 0 0 80px;
}
.taxonomy-wedding-destination .destination-term-grid .destination-term-card {
  text-align: left;
}
.taxonomy-wedding-destination .destination-term-grid .destination-term-card .destination-term-thumb {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 14px;
  transition: opacity 0.3s ease;
}
.taxonomy-wedding-destination .destination-term-grid .destination-term-card:hover .destination-term-thumb {
  opacity: 0.8;
}
.taxonomy-wedding-destination .destination-term-grid .destination-term-card .wedding-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.4px;
  margin: 0;
}
.taxonomy-wedding-destination {
  /* Final CTA spacing */
}
.taxonomy-wedding-destination .section-final-cta {
  margin-top: -10px;
}

/* ---------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 991px) {
  .destination-term .destination-term-hero {
    padding: 120px 0 60px;
  }
  .destination-term .destination-term-hero .section-title {
    font-size: 34px;
  }
  .destination-term .destination-term-hero .destination-term-intro {
    font-size: 18px;
  }
  .destination-term .destination-term-grid {
    padding-bottom: 90px;
  }
}
@media (max-width: 575px) {
  .destination-term .destination-term-hero {
    padding: 100px 0 50px;
  }
  .destination-term .destination-term-hero .section-title {
    font-size: 30px;
  }
  .destination-term .destination-term-grid .destination-term-card {
    margin-bottom: 40px;
  }
}
/* ---------------------------------------------------------
   SINGLE WEDDING PAGE
   herasweddings theme — editorial, luxury
---------------------------------------------------------- */
.single-wedding {
  /* ----------------------
     HERO IMAGE
  ----------------------- */
}
.single-wedding .wedding-hero {
  width: 100%;
  overflow: hidden;
}
.single-wedding .wedding-hero .wedding-hero-img {
  width: 100%;
  height: calc(100vh - 122px);
  object-fit: cover;
  display: block;
}
.single-wedding {
  /* ----------------------
     HEADER SECTION
  ----------------------- */
}
.single-wedding .wedding-header {
  padding: 120px 0 80px;
}
.single-wedding .wedding-header .wedding-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 46px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.single-wedding .wedding-header .wedding-meta {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 30px;
}
.single-wedding .wedding-header .wedding-meta .meta-item {
  margin: 0 4px;
}
.single-wedding .wedding-header .wedding-intro {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  color: #444;
  line-height: 1.7;
}
.single-wedding {
  /* ----------------------
     STORY TEXT
  ----------------------- */
}
.single-wedding .wedding-story {
  padding: 0px 0 80px;
}
.single-wedding .wedding-story .narrow {
  max-width: 760px;
  margin: 0 auto;
}
.single-wedding .wedding-story p {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  font-size: 18px;
  margin-bottom: 22px;
  color: #444;
}
.single-wedding {
  /* ----------------------
     GALLERY
  ----------------------- */
}
.single-wedding .wedding-content {
  padding: 0 0 80px;
}
.single-wedding .wedding-content .wp-block-gallery {
  margin-top: 60px;
}
.single-wedding .wedding-content .wp-block-gallery img {
  border-radius: 4px;
}
.single-wedding .wedding-content .wp-block-image {
  margin-bottom: 40px;
}
.single-wedding {
  /* ----------------------
     FINAL CTA (adjust spacing)
  ----------------------- */
}
.single-wedding .section-final-cta {
  margin-top: -20px;
}

/* -------------------------
    RESPONSIVE
-------------------------- */
@media (max-width: 991px) {
  .single-wedding .wedding-header {
    padding: 90px 0 60px;
  }
  .single-wedding .wedding-header .wedding-title {
    font-size: 38px;
  }
  .single-wedding .wedding-header .wedding-intro {
    font-size: 18px;
  }
  .single-wedding .wedding-story p {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .single-wedding .wedding-header {
    padding: 80px 0 50px;
  }
  .single-wedding .wedding-header .wedding-title {
    font-size: 32px;
  }
  .single-wedding .wedding-story {
    padding: 50px 0 70px;
  }
}
/* ---------------------------------------------------------
   SINGLE KIND WORDS PAGE
   herasweddings theme — editorial, luxury
---------------------------------------------------------- */
.single-kind-words {
  /* ----------------------
     HERO IMAGE
  ----------------------- */
}
.single-kind-words .kind-words-hero {
  width: 100%;
  overflow: hidden;
}
.single-kind-words .kind-words-hero .kind-words-hero-img {
  width: 100%;
  height: calc(100vh - 122px);
  object-fit: cover;
  display: block;
}
.single-kind-words {
  /* ----------------------
     HEADER SECTION
  ----------------------- */
}
.single-kind-words .kind-words-header {
  padding: 120px 0 0px;
}
.single-kind-words .kind-words-header .kind-words-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 56px;
  color: #C2B59B;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.single-kind-words .kind-words-header .kind-words-meta {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C2B59B;
  opacity: 0.8;
  margin-bottom: 30px;
}
.single-kind-words .kind-words-header .kind-words-meta .meta-item {
  margin: 0 4px;
}
.single-kind-words {
  /* ----------------------
     TESTIMONIAL TEXT
  ----------------------- */
}
.single-kind-words .kind-words-content {
  padding: 0px 0 80px;
}
.single-kind-words .kind-words-content .narrow {
  max-width: 800px;
  margin: 0 auto;
}
.single-kind-words .kind-words-content .kind-words-text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
  position: relative;
}
.single-kind-words .kind-words-content .kind-words-text p {
  margin-bottom: 30px;
}
.single-kind-words .kind-words-content .kind-words-text p:last-child {
  margin-bottom: 0;
}
.single-kind-words {
  /* ----------------------
     FINAL CTA (adjust spacing)
  ----------------------- */
}
.single-kind-words .section-final-cta {
  margin-top: -20px;
}

/* -------------------------
    RESPONSIVE
-------------------------- */
@media (max-width: 991px) {
  .single-kind-words .kind-words-header {
    padding: 90px 0 0px;
  }
  .single-kind-words .kind-words-header .kind-words-title {
    font-size: 44px;
  }
  .single-kind-words .kind-words-content .kind-words-text {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .single-kind-words .kind-words-header {
    padding: 80px 0 0px;
  }
  .single-kind-words .kind-words-header .kind-words-title {
    font-size: 38px;
  }
  .single-kind-words .kind-words-content {
    padding: 50px 0 70px;
  }
  .single-kind-words .kind-words-content .kind-words-text {
    font-size: 20px;
  }
  .single-kind-words .kind-words-content .kind-words-text::before {
    left: -20px;
    font-size: 80px;
    top: -20px;
  }
}
.blog-archive-hero {
  padding: 0 0 80px;
}
.blog-archive-hero .blog-archive-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 1px;
}

.blog-archive-list {
  padding-bottom: 120px;
}

.blog-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  margin-bottom: 90px;
  align-items: flex-start;
}

.blog-row-image {
  position: relative;
}
.blog-row-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-row-image .blog-date-box {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  padding: 10px 12px;
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
}

.blog-row-content {
  padding-top: 10px;
}

.blog-row-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}
.blog-row-title a {
  text-decoration: none;
  color: inherit;
}

.blog-divider {
  width: 80px;
  height: 1px;
  background: #cfcfcf;
  margin: 20px 0;
}

.blog-row-excerpt {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  max-width: 720px;
}

.blog-read-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.editorial-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
}

.pagination-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.pagination-links .page-item {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 16px;
}
.pagination-links .page-item a,
.pagination-links .page-item span {
  text-decoration: none;
  color: #000;
}
.pagination-links .page-item .current {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  font-weight: 400;
}
.pagination-links .page-item a {
  transition: opacity 0.2s ease;
}
.pagination-links .page-item a:hover {
  opacity: 0.6;
}

.pagination-status {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.single-post-editorial {
  background: #fff;
}

/* HERO */
.single-post-hero {
  width: 100%;
}
.single-post-hero .single-post-hero-img {
  width: 100%;
  height: calc(100vh - 122px);
  object-fit: cover;
  display: block;
}

/* HEADER */
.single-post-header {
  padding: 60px 0 40px;
}

.single-post-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 12px;
}

.single-post-meta {
  font-size: 14px;
  letter-spacing: 1px;
  color: #777;
}

/* CONTENT */
.single-post-content {
  padding-bottom: 100px;
}

.content-editorial {
  max-width: 760px;
}

.single-post-content p {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 26px;
}
.single-post-content h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 300;
  margin: 60px 0 20px;
}
.single-post-content h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 300;
  margin: 50px 0 16px;
}

/* RELATED */
.single-post-related {
  padding: 80px 0 120px;
  background: rgba(247, 244, 241, 0.4);
}

.related-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 50px;
}

.related-post-title {
  font-size: 18px;
  margin-top: 16px;
}
.related-post-title a {
  text-decoration: none;
  color: inherit;
}

.related-thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.related-thumb:hover img {
  transform: scale(1.04);
}

.site-footer {
  background: #f7f4f1;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.site-footer__inner {
  padding: 80px 0 28px;
}
.site-footer {
  /* LOGO */
}
.site-footer__brand--center {
  text-align: center;
  margin-bottom: 60px;
}
.site-footer__logo img {
  max-width: 280px;
}
.site-footer {
  /* MAIN GRID */
}
.site-footer__grid--main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.site-footer__title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 16px;
}
.site-footer__menu, .site-footer__socials {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__menu li, .site-footer__socials li {
  margin-bottom: 10px;
}
.site-footer__menu li a, .site-footer__socials li a {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  color: #111;
  text-decoration: none;
}
.site-footer__menu li a:hover, .site-footer__socials li a:hover {
  opacity: 0.6;
}
.site-footer__tagline {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 340px;
}
.site-footer {
  /* SOCIALS BOTTOM */
}
.site-footer__social--center {
  text-align: center;
  margin: 60px 0 30px;
}
.site-footer .cta-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__whatsapp {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 3px;
  color: #111;
  transition: opacity 0.25s ease;
}
.site-footer__whatsapp:hover {
  opacity: 0.6;
}
.site-footer__socials--horizontal {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.site-footer__socials--horizontal li {
  margin: 0;
}
.site-footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
  margin-top: 40px;
}
.site-footer__copyright {
  font-size: 12px;
  color: #666;
}
.site-footer {
  /* RESPONSIVE */
}
@media (max-width: 992px) {
  .site-footer__grid--main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer__socials--horizontal {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .plan-your-wedding .pyw-hero-video .pyw-title {
    font-size: 28px;
  }
  .plan-your-wedding .pyw-service-block p {
    font-size: 16px;
  }
  .plan-your-wedding .process-title {
    font-size: 26px;
  }
  .plan-your-wedding .pyw-cta h2 {
    font-size: 24px;
  }
  .portfolio .portfolio-hero {
    padding: 110px 0 50px;
  }
  .portfolio .portfolio-hero .section-title {
    font-size: 30px;
  }
  .portfolio .portfolio-grid {
    padding-bottom: 60px;
  }
  .destination-weddings .destination-hero {
    padding: 110px 0 50px;
  }
  .destination-weddings .destination-hero .section-title {
    font-size: 30px;
  }
  .destination-weddings .destination-groups .destination-group {
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan-your-wedding .pyw-hero-video {
    padding: 80px 0 40px;
  }
  .plan-your-wedding .pyw-hero-video .pyw-title {
    font-size: 34px;
  }
  .plan-your-wedding .pyw-service-block h3 {
    font-size: 24px;
  }
  .plan-your-wedding .pyw-process .process-step {
    padding-left: 45px;
  }
  .plan-your-wedding .pyw-process .process-step .step-number {
    font-size: 26px;
  }
  .plan-your-wedding .pyw-cta h2 {
    font-size: 28px;
  }
  .portfolio .portfolio-hero {
    padding: 120px 0 60px;
  }
  .portfolio .portfolio-hero .section-title {
    font-size: 34px;
  }
  .portfolio .portfolio-hero .portfolio-intro {
    font-size: 18px;
  }
  .portfolio .portfolio-grid .portfolio-card .portfolio-title {
    font-size: 20px;
  }
  .portfolio .portfolio-destinations-cta h2 {
    font-size: 26px;
  }
  .destination-weddings .destination-hero {
    padding: 120px 0 60px;
  }
  .destination-weddings .destination-hero .section-title {
    font-size: 34px;
  }
  .destination-weddings .destination-hero .intro {
    font-size: 18px;
  }
  .destination-weddings .destination-groups .destination-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  body:not(.home) .site-main {
    padding-top: 120px;
  }
}
body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background-color: #ffffff;
}

body:not(.home):not(.page-plan-your-wedding):not(.single) .site-main {
  padding-top: 140px;
}

body.single .site-main {
  padding-top: 122px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.03em;
}

a {
  color: #C2B59B;
  text-decoration: none;
}
a:hover {
  color: rgb(174.6770186335, 157.5590062112, 123.3229813665);
}

.section:not(.section-final-cta) {
  padding: 0 0 80px;
}
@media (max-width: 767px) {
  .section:not(.section-final-cta) {
    padding: 0 0 80px;
  }
}

.section.section-instagram,
.section.section-kindwords-teaser,
section.pyw-process {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section.section-instagram,
  .section.section-kindwords-teaser,
  section.pyw-process {
    padding: 80px 0;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-outline-heras {
  border: 1px solid #70bfcb;
  color: #70bfcb;
  border-radius: 0;
  padding: 0.75rem 1.8rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}
.btn-outline-heras:hover {
  background-color: #70bfcb;
  color: #ffffff;
}

/*# sourceMappingURL=main.css.map */
