/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
/* ========================================
   GLOBAL ANIMATIONS
   ======================================== */
:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-luxury: cubic-bezier(0.65, 0, 0.35, 1);
}
/* --- FADE UP ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* --- STAGGER DELAYS --- */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
/* --- ANIMATED H2 UNDERLINE --- */
h2::after {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 100%;
  margin-left: 15px;
  width: 0px;
  height: 2px;
  background-color: var(--brand-red, #c1262e);
  transition: width 1.5s var(--ease-luxury) 0.5s;
}
h2.in-view::after {
  width: 40px;
}
@media (max-width: 900px) {
  h2::after {
    margin-left: 10px;
  }
  h2.in-view::after {
    width: 30px;
  }
}
/* --- IMAGE CURTAIN REVEAL --- */
.reveal-frame {
  position: relative;
  overflow: hidden;
  display: block;
}
.reveal-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1.2s var(--ease-luxury);
  z-index: 2;
}
.reveal-frame.in-view::after {
  transform: scaleX(0);
  transform-origin: right;
  transition-delay: 0.2s;
}
.reveal-frame img {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease 0.3s, transform 1.5s var(--ease-out) 0.3s;
}
.reveal-frame.in-view img {
  opacity: 1;
  transform: scale(1);
}
.reveal-frame:hover img {
  transform: scale(1.05);
  transition: transform 1.5s ease;
}
/* --- HERO BACKGROUND ANIMATION --- */
@keyframes heroScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ========================================
   QUOTE SECTION STYLES
   ======================================== */
.wp-block-cecile-quote {
  padding: 80px 50px;
}
.quote-large {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}
/* Quote Color Variants */
.quote--dark .quote-large {
  color: var(--text-dark, #2b2b2b);
}
.quote--red .quote-large {
  color: var(--brand-red, #c1262e);
}
@media (max-width: 900px) {
  .wp-block-cecile-quote {
    padding: 60px 20px;
  }
  .quote-large {
    font-size: 1.6rem;
  }
}
/* --- 4. HERO SECTION --- */
header.hero,
.wp-block-cecile-hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white, #ffffff);
}
/* Parallax Image Background */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* Clip path for modern angle */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
  max-width: 600px;
  padding-top: 60px;
  z-index: 1;
  position: relative;
}
.hero-content .subtitle {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-red, #c1262e);
  display: block;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  color: var(--text-dark, #2b2b2b);
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--text-light, #7a7a7a);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: var(--brand-red, #c1262e);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: background 0.3s;
  cursor: pointer;
}
.hero-btn:hover {
  background: #8a1f23;
}
/* Editor-specific styles */
.editor-styles-wrapper .wp-block-cecile-hero,
.block-editor-block-list__block.wp-block-cecile-hero {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.editor-styles-wrapper .hero-content [data-rich-text-placeholder]::before {
  color: #999;
  font-style: italic;
}
@media (max-width: 900px) {
  header.hero,
  .wp-block-cecile-hero {
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-bg {
    width: 100%;
    clip-path: none;
    opacity: 0.2;
  }
}
/* --- IMAGE & TEXT SECTION --- */
.image-text-block,
.wp-block-cecile-image-text {
  padding: 120px 50px;
  max-width: 1400px;
  margin: 0 auto;
}
/* ========================================
   GRID LAYOUT (Default)
   ======================================== */
.image-text--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-text--grid.image-text--left .image-text__content {
  padding-left: 40px;
}
.image-text--grid.image-text--right .image-text__content {
  padding-right: 40px;
}
.image-text--grid .image-text__image {
  height: 600px;
}
/* ========================================
   OVERLAP LAYOUT
   ======================================== */
.image-text--overlap {
  display: grid;
  align-items: center;
  padding: 0;
  max-width: 1200px;
}
.image-text--overlap .image-text__content {
  background: white;
  z-index: 2;
  position: relative;
}
.image-text--overlap .image-text__image {
  z-index: 1;
  height: 700px;
  width: 100%;
  position: relative;
}
/* Image on LEFT: Image first (1fr), Content second (1.2fr) */
/* Content extends LEFT over the image */
.image-text--overlap.image-text--left {
  grid-template-columns: 1fr 1.2fr;
}
.image-text--overlap.image-text--left .image-text__content {
  padding: 60px 50px 60px 60px;
  margin-left: -50px;
}
/* Image on RIGHT: Content first (1.2fr), Image second (1fr) */
/* Content extends RIGHT over the image */
.image-text--overlap.image-text--right {
  grid-template-columns: 1.2fr 1fr;
}
.image-text--overlap.image-text--right .image-text__content {
  padding: 60px 60px 60px 50px;
  margin-right: -50px;
}
/* ========================================
   COMMON STYLES
   ======================================== */
/* Image Container */
.image-text__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--bg-soft, #fcfcfc);
}
.image-text__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* Image Overlay for Editor */
.image-text__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.image-text__image:hover .image-text__image-overlay {
  opacity: 1;
}
/* Placeholder */
.image-text__placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8f8f8 0%, #e8e8e8 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px dashed #ddd;
}
.image-text__placeholder:hover {
  background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 100%);
  border-color: var(--brand-red, #c1262e);
}
.image-text__placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #888;
}
.image-text__placeholder-content .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: #bbb;
}
.image-text__placeholder:hover .dashicons {
  color: var(--brand-red, #c1262e);
}
/* Content Area */
.image-text__content {
  display: flex;
  flex-direction: column;
}
.image-text__content .subtitle {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-red, #c1262e);
  display: block;
  margin-bottom: 1rem;
}
.image-text__content h2 {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  color: var(--text-dark, #2b2b2b);
  position: relative;
  display: inline-block;
  line-height: 1.25;
}
/* H2 underline - positioned at bottom of last line */
.image-text__content h2::after {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 100%;
  margin-left: 15px;
  width: 0;
  height: 2px;
  background-color: var(--brand-red, #c1262e);
  transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}
.image-text__content h2.in-view::after {
  width: 40px;
}
.image-text__content .text-content {
  margin-top: 0.5rem;
}
.image-text__content .text-content p {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: 1rem;
  color: var(--text-light, #7a7a7a);
  margin-bottom: 1.25rem;
  max-width: 550px;
  line-height: 1.8;
}
.image-text__content .text-content p:last-child {
  margin-bottom: 0;
}
/* ========================================
   EDITOR STYLES
   ======================================== */
.editor-styles-wrapper .wp-block-cecile-image-text,
.block-editor-block-list__block.wp-block-cecile-image-text {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.editor-styles-wrapper .image-text--grid {
  padding: 40px;
}
.editor-styles-wrapper .image-text--overlap {
  padding: 20px;
}
.editor-styles-wrapper .image-text--grid .image-text__image {
  height: 400px;
}
.editor-styles-wrapper .image-text--overlap .image-text__image {
  height: 500px;
  width: 100%;
}
.editor-styles-wrapper .image-text__placeholder {
  min-height: 400px;
}
.editor-styles-wrapper .image-text__content .subtitle {
  font-size: 0.7rem;
}
.editor-styles-wrapper .image-text__content h2 {
  font-size: 1.8rem;
}
.editor-styles-wrapper .image-text__content .text-content p,
.editor-styles-wrapper .image-text__content .text-content {
  font-size: 0.9rem;
  line-height: 1.7;
}
.editor-styles-wrapper .image-text__content [data-rich-text-placeholder]::before {
  color: #aaa;
  font-style: italic;
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .image-text-block,
  .wp-block-cecile-image-text {
    padding: 60px 20px;
  }
  .image-text--grid,
  .image-text--overlap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }
  /* Stack image on top, content below */
  .image-text--grid .image-text__image,
  .image-text--overlap .image-text__image {
    order: 1;
    height: 300px;
    width: 100%;
    margin: 0 !important;
  }
  .image-text--grid .image-text__content,
  .image-text--overlap .image-text__content {
    order: 2;
    padding: 30px 0 0 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: transparent;
  }
  .image-text__content h2 {
    font-size: 1.75rem;
  }
  /* Adjust h2 underline for mobile */
  .image-text__content h2::after {
    margin-left: 10px;
    width: 30px;
  }
  .image-text__content h2.in-view::after {
    width: 30px;
  }
  .image-text__content .text-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .image-text__content .subtitle {
    font-size: 0.7rem;
  }
}
/* --- TEXT SECTION --- */
.text-section-block,
.wp-block-cecile-text-section {
  padding: 120px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text-section__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Subtitle */
.text-section__inner .subtitle {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-red, #c1262e);
  display: block;
  margin-bottom: 1rem;
}
/* Title */
.text-section__inner h2 {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
  color: var(--text-dark, #2b2b2b);
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.text-section__inner h2::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -25px;
  width: 40px;
  height: 2px;
  background-color: var(--brand-red, #c1262e);
}
/* Content */
.text-section__inner .text-content {
  max-width: 700px;
}
.text-section__inner .text-content p {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: 1.05rem;
  color: var(--text-light, #7a7a7a);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
.text-section__inner .text-content p:last-child {
  margin-bottom: 0;
}
/* Bold text gets special serif styling */
.text-section__inner .text-content strong {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 1.6rem;
  color: var(--text-dark, #2b2b2b);
  line-height: 1.4;
  font-weight: 400;
  display: block;
  margin-bottom: 1rem;
}
/* ========================================
   EDITOR STYLES
   ======================================== */
.editor-styles-wrapper .wp-block-cecile-text-section,
.block-editor-block-list__block.wp-block-cecile-text-section {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 80px 40px;
}
.editor-styles-wrapper .text-section__inner {
  max-width: 800px;
}
/* Editor Typography */
.editor-styles-wrapper .text-section__inner .subtitle {
  font-size: 0.7rem;
  min-width: 150px;
}
.editor-styles-wrapper .text-section__inner h2 {
  font-size: 2.2rem;
  min-width: 200px;
}
.editor-styles-wrapper .text-section__inner .text-content {
  width: 100%;
  min-height: 100px;
}
.editor-styles-wrapper .text-section__inner .text-content p {
  font-size: 1rem;
  text-align: center;
}
.editor-styles-wrapper .text-section__inner .text-content strong {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 1.6rem;
  color: var(--text-dark, #2b2b2b);
  line-height: 1.4;
  font-weight: 400;
  display: block;
  margin-bottom: 1rem;
}
/* Editor Placeholders */
.editor-styles-wrapper .text-section__inner [data-rich-text-placeholder]::before {
  color: #aaa;
  font-style: italic;
}
/* Editor Focus States */
.editor-styles-wrapper .text-section__inner .subtitle:focus,
.editor-styles-wrapper .text-section__inner h2:focus,
.editor-styles-wrapper .text-section__inner .text-content:focus {
  outline: none;
  box-shadow: none;
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .text-section-block,
  .wp-block-cecile-text-section {
    padding: 80px 20px;
  }
  .text-section__inner h2 {
    font-size: 2rem;
  }
  .text-section__inner h2::after {
    display: none;
  }
  .text-section__inner .text-content p {
    font-size: 1rem;
  }
  .text-section__inner .text-content strong {
    font-size: 1.3rem;
  }
}
/* --- FULL WIDTH IMAGE BLOCK --- */
.full-image-block,
.wp-block-cecile-full-image {
  padding: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.full-width-banner {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 400px;
}
.full-image__placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8f8f8 0%, #e8e8e8 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px dashed #ddd;
}
.full-image__placeholder:hover {
  background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 100%);
  border-color: var(--brand-red, #c1262e);
}
.full-image__placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #888;
}
.full-image__placeholder-content .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: #bbb;
}
.full-image__placeholder:hover .dashicons {
  color: var(--brand-red, #c1262e);
}
/* Editor */
.editor-styles-wrapper .wp-block-cecile-full-image {
  margin: 20px 0;
}
/* --- INQUIRY FORM BLOCK --- */
.inquiry-form-block,
.wp-block-cecile-inquiry-form {
  padding: 120px 50px;
  background: white;
}
.inquiry-form__inner {
  max-width: 900px;
  margin: 0 auto;
}
.inquiry-form__inner .subtitle {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-red, #c1262e);
  display: block;
  margin-bottom: 1rem;
}
.inquiry-form__inner h2 {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
  color: var(--text-dark, #2b2b2b);
  position: relative;
  display: inline-block;
}
/* Form Container */
.form-container {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}
.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-full {
  width: 100%;
  margin-bottom: 25px;
}
.form-container label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: var(--text-light, #7a7a7a);
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
}
.form-container input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background: white;
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: 1rem;
  color: var(--text-dark, #2b2b2b);
  transition: border 0.3s;
}
.form-container input:focus {
  outline: none;
  border-color: var(--brand-red, #c1262e);
}
.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 15px 40px;
  background: var(--brand-red, #c1262e);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.form-btn:hover {
  background: #8a1f23;
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 768px) {
  .inquiry-form-block {
    padding: 80px 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .inquiry-form__inner h2 {
    font-size: 2rem;
  }
}
/* Editor */
.editor-styles-wrapper .inquiry-form-block input {
  pointer-events: none;
  background: #f9f9f9;
}
/* --- FEATURE CARDS BLOCK --- */
.feature-cards-block,
.wp-block-cecile-feature-cards {
  padding: 120px 50px;
  position: relative;
  overflow: hidden;
}
.feature-cards-block.bg-soft {
  background: var(--bg-soft, #fcfcfc);
}
/* Background Image Layer */
.feature-cards__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.feature-cards__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-cards-block.has-parallax .feature-cards__bg-image,
.wp-block-cecile-feature-cards.has-parallax .feature-cards__bg-image {
  background-attachment: fixed;
}
.feature-cards__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.feature-cards__bg-overlay.overlay-white {
  background: white;
}
.feature-cards__bg-overlay.overlay-black {
  background: black;
}
/* When has background image */
.feature-cards-block.has-bg-image .feature-cards__wrapper {
  position: relative;
  z-index: 1;
}
.feature-cards-block.has-bg-image .card-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}
.feature-cards-block.has-bg-image .card-item:hover {
  background: white;
}
.feature-cards__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-cards__header {
  margin-bottom: 60px;
}
.feature-cards__header .subtitle {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-red, #c1262e);
  display: block;
  margin-bottom: 1rem;
}
.feature-cards__header h2 {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: var(--text-dark, #2b2b2b);
  position: relative;
  display: inline-block;
}
.feature-cards__intro {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 1.3rem;
  color: var(--text-dark, #2b2b2b);
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Grid */
.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* Card Item */
.card-item {
  position: relative;
  padding: 40px 30px;
  background: var(--bg-soft, #fcfcfc);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.feature-cards-block.bg-soft .card-item {
  background: white;
}
.card-item:hover {
  background: white;
  border-color: #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.card-item h4 {
  font-family: var(--font-serif, "Prata", serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-dark, #2b2b2b);
  line-height: 1.3;
}
.card-item p {
  font-size: 1rem;
  color: var(--text-light, #7a7a7a);
  line-height: 1.7;
  margin: 0;
}
/* Responsive */
@media (max-width: 900px) {
  .feature-cards-block {
    padding: 80px 20px;
  }
  .feature-cards__grid {
    grid-template-columns: 1fr;
  }
  .feature-cards__header h2 {
    font-size: 2rem;
  }
  .feature-cards__intro {
    font-size: 1.1rem;
  }
  .feature-cards-block.has-parallax .feature-cards__bg-image,
  .wp-block-cecile-feature-cards.has-parallax .feature-cards__bg-image {
    background-attachment: scroll;
  }
}
/* Editor */
.editor-styles-wrapper .feature-cards-block {
  padding: 60px 30px;
}
.editor-styles-wrapper .feature-cards__grid {
  gap: 20px;
}
/* --- LOGO CENTER SECTION --- */
.logo-center-block,
.wp-block-cecile-logo-center {
  background: var(--bg-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
}
.logo-center__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  flex-direction: column;
  align-items: center;
}
.logo-center__logo {
  width: 100%;
  height: auto;
  display: block;
}
.logo-center__text {
  margin: 24px 0 0 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: 1.05rem;
  color: var(--text-light, #7a7a7a);
  line-height: 1.8;
}
.logo-center__link {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}
.logo-center__placeholder {
  width: 100%;
  max-width: 480px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 22px 16px;
  color: #777;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
}
.logo-center__placeholder .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .logo-center-block,
  .wp-block-cecile-logo-center {
    min-height: 70vh;
  }
}
/* --- PARALLAX SECTION --- */
.parallax-section-block,
.wp-block-cecile-parallax-section {
  position: relative;
  width: 100%;
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-section-block.has-parallax,
.wp-block-cecile-parallax-section.has-parallax {
  background-attachment: fixed;
}
.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(var(--overlay-rgb, 0, 0, 0), var(--overlay-opacity, 0.4));
  z-index: 0;
}
.parallax-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 90px 30px;
  color: #fff;
}
.parallax-section__inner a {
  color: inherit;
}
.parallax-section__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 900px) {
  .parallax-section-block.has-parallax,
  .wp-block-cecile-parallax-section.has-parallax {
    background-attachment: scroll;
  }
  .parallax-section__inner {
    padding: 70px 20px;
  }
}
/* --- SERVICES HERO (LUXURY) --- */
.services-hero-block,
.wp-block-cecile-services-hero {
  position: relative;
  width: 100%;
  background-color: #111;
  background-size: cover;
  background-position: var(--bg-position, center) top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-color, #ffffff);
}
.services-hero-block.is-bw,
.wp-block-cecile-services-hero.is-bw {
  filter: grayscale(1);
}
.services-hero-block.is-bw .services-hero__content,
.wp-block-cecile-services-hero.is-bw .services-hero__content {
  filter: grayscale(0);
}
.services-hero-block.has-parallax,
.wp-block-cecile-services-hero.has-parallax {
  background-attachment: fixed;
}
.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--overlay-rgb, 34, 46, 60), var(--overlay-opacity-top, 0.4)), rgba(var(--overlay-rgb, 34, 46, 60), var(--overlay-opacity-bottom, 0.6)));
  z-index: 0;
}
.services-hero__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
.services-hero__header-group {
  margin-top: 50px;
  text-align: center;
}
.services-hero__header-group.align-left {
  text-align: left;
}
.services-hero__header-group.align-center {
  text-align: center;
}
.services-hero__header-group.align-right {
  text-align: right;
}
.services-hero__title {
  font-family: var(--font-serif, "Prata", serif);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: var(--title-size, 56px);
  line-height: 1.1;
  color: var(--text-color, #ffffff);
  margin: 0 0 22px 0;
}
.services-hero__subtitle {
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: var(--subtitle-size, 14px);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  opacity: 0.9;
  color: var(--text-color, #ffffff);
  margin: 0 0 46px 0;
  width: 100%;
}
.services-hero__subtitle.align-left {
  text-align: left;
}
.services-hero__subtitle.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.services-hero__subtitle.align-right {
  text-align: right;
}
.services-hero__description {
  text-align: left;
  max-width: 520px;
  margin-top: auto;
  margin-bottom: 18vh;
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: var(--body-size, 18px);
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.services-hero__description.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.services-hero__description.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.services-hero__description.align-right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.services-hero__description p {
  margin: 0 0 1.5rem 0;
  color: inherit;
  max-width: none;
}
.services-hero__description p:last-child {
  margin-bottom: 0;
}
.services-hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .services-hero-block.has-parallax,
  .wp-block-cecile-services-hero.has-parallax {
    background-attachment: scroll;
  }
  .services-hero__content {
    padding-top: 70px;
  }
  .services-hero__header-group {
    margin-top: 40px;
  }
  .services-hero__title {
    font-size: 40px;
  }
  .services-hero__description {
    text-align: center;
    margin: 0 auto;
    margin-top: 22px;
    padding-bottom: 50px;
    font-size: 16px;
    max-width: 640px;
  }
}
/* --- SERVICES HERO V2 --- */
.services-hero-v2-block,
.wp-block-cecile-services-hero-v2 {
  position: relative;
  width: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--padding-top, 80px);
  padding-bottom: var(--padding-bottom, 80px);
}
/* Background image pseudo-element - allows independent grayscale filter */
.services-hero-v2-block::before,
.wp-block-cecile-services-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: var(--bg-position-x, 50%) var(--bg-position-y, 20%);
  background-repeat: no-repeat;
  z-index: 0;
}
/* Black & White filter - only applies to the background image pseudo-element */
.services-hero-v2-block.is-bw::before,
.wp-block-cecile-services-hero-v2.is-bw::before {
  filter: grayscale(1);
}
.services-hero-v2-block.has-parallax::before,
.wp-block-cecile-services-hero-v2.has-parallax::before {
  background-attachment: fixed;
}
.services-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--overlay-rgb, 34, 46, 60), var(--overlay-opacity-top, 0.4)), rgba(var(--overlay-rgb, 34, 46, 60), var(--overlay-opacity-bottom, 0.6)));
  z-index: 0;
}
.services-hero-v2__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
}
/* Optional content box background */
.services-hero-v2-block.has-content-box .services-hero-v2__content,
.wp-block-cecile-services-hero-v2.has-content-box .services-hero-v2__content {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
}
/* Title - large heading below subtitle */
.services-hero-v2__title {
  display: inline-block !important;
  position: relative;
  max-width: none !important;
  font-family: var(--font-serif, "Prata", serif);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: var(--title-size, 56px);
  line-height: 1.1;
  color: var(--title-color, #ffffff);
  margin: 0 0 var(--content-gap, 46px) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, var(--title-shadow, 0.8)), 0 4px 8px rgba(0, 0, 0, calc(var(--title-shadow, 0.8) * 0.75)), 0 8px 16px rgba(0, 0, 0, calc(var(--title-shadow, 0.8) * 0.5)), 0 16px 32px rgba(0, 0, 0, calc(var(--title-shadow, 0.8) * 0.25));
}
/* Hide accent by default */
.services-hero-v2__title::after {
  display: none;
}
/* Red accent underline - only when enabled */
.services-hero-v2-block.has-title-accent .services-hero-v2__title::after,
.wp-block-cecile-services-hero-v2.has-title-accent .services-hero-v2__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.1em;
  left: 100%;
  margin-left: 15px;
  width: 40px;
  height: 2px;
  background-color: var(--brand-red, #c1262e);
}
/* Flex alignment positions the inline-block title within the flex container */
.services-hero-v2__title.align-left {
  align-self: flex-start;
  text-align: left;
}
.services-hero-v2__title.align-center {
  align-self: center;
  text-align: center;
}
.services-hero-v2__title.align-right {
  align-self: flex-end;
  text-align: right;
}
/* Subtitle - small red label above the title */
.services-hero-v2__subtitle {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: var(--subtitle-size, 14px);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 300;
  color: var(--subtitle-color, #c1262e);
  margin: 0 0 1rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, var(--subtitle-shadow, 0.6)), 0 2px 4px rgba(0, 0, 0, calc(var(--subtitle-shadow, 0.6) * 0.75)), 0 4px 8px rgba(0, 0, 0, calc(var(--subtitle-shadow, 0.6) * 0.5));
}
.services-hero-v2__subtitle.align-left {
  text-align: left !important;
}
.services-hero-v2__subtitle.align-center {
  text-align: center !important;
}
.services-hero-v2__subtitle.align-right {
  text-align: right !important;
}
/* Content/Description */
.services-hero-v2__description {
  max-width: 520px;
  font-family: var(--font-sans, "Tenor Sans", sans-serif);
  font-size: var(--body-size, 18px);
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, var(--content-shadow, 0.6)), 0 2px 4px rgba(0, 0, 0, calc(var(--content-shadow, 0.6) * 0.75)), 0 4px 8px rgba(0, 0, 0, calc(var(--content-shadow, 0.6) * 0.5));
  color: var(--content-color, #ffffff);
}
.services-hero-v2__description.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.services-hero-v2__description.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.services-hero-v2__description.align-right {
  text-align: left;
  margin-left: auto;
  margin-right: 0;
}
.services-hero-v2__description p {
  margin: 0 0 1.5rem 0;
  color: inherit;
  max-width: none;
}
.services-hero-v2__description p:last-child {
  margin-bottom: 0;
}
.services-hero-v2__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
/* 4K and large screens */
@media (min-width: 2000px) {
  .services-hero-v2__content {
    max-width: 1600px;
  }
  .services-hero-v2__description {
    max-width: 700px;
  }
}
@media (min-width: 2560px) {
  .services-hero-v2__content {
    max-width: 1900px;
  }
  .services-hero-v2__description {
    max-width: 800px;
  }
}
/* Tablet and mobile */
@media (max-width: 768px) {
  .services-hero-v2-block.has-parallax::before,
  .wp-block-cecile-services-hero-v2.has-parallax::before {
    background-attachment: scroll;
  }
  .services-hero-v2__content {
    padding: 30px 25px;
  }
  .services-hero-v2__title {
    font-size: 40px;
  }
  /* Hide red accent on mobile to prevent overflow */
  .services-hero-v2-block.has-title-accent .services-hero-v2__title::after,
  .wp-block-cecile-services-hero-v2.has-title-accent .services-hero-v2__title::after {
    display: none;
  }
  .services-hero-v2__subtitle {
    margin-bottom: 50px;
  }
  .services-hero-v2__description {
    font-size: 16px;
    max-width: 640px;
  }
  .services-hero-v2__description.align-left,
  .services-hero-v2__description.align-center,
  .services-hero-v2__description.align-right {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* --- SMASH BALLOON INSTAGRAM FEED - CECILE THEME OVERRIDES --- */
#sb_instagram {
  padding: 80px 50px !important;
  background: #fff;
  /* ---- HEADER ---- */
}
#sb_instagram .sb_instagram_header {
  padding: 0 0 40px 0 !important;
  justify-content: center;
}
#sb_instagram .sb_instagram_header a.sbi_header_link {
  text-decoration: none !important;
  box-shadow: none !important;
}
#sb_instagram .sb_instagram_header .sbi_header_text {
  justify-content: center;
}
#sb_instagram .sb_instagram_header .sbi_header_img,
#sb_instagram .sb_instagram_header .sbi_header_img img {
  border-radius: 50% !important;
}
#sb_instagram .sb_instagram_header .sbi_header_img_hover {
  border-radius: 50%;
}
#sb_instagram .sb_instagram_header h3 {
  font-family: var(--font-serif, "Prata", serif) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--text-dark, #2b2b2b) !important;
  letter-spacing: 0.02em;
}
#sb_instagram .sb_instagram_header .sbi_bio {
  font-family: var(--font-sans, "Tenor Sans", sans-serif) !important;
  font-size: 0.85rem !important;
  color: var(--text-light, #7a7a7a) !important;
  letter-spacing: 0.05em;
}
#sb_instagram {
  /* ---- GRID ---- */
}
#sb_instagram #sbi_images {
  gap: 4px !important;
  padding: 0 !important;
}
#sb_instagram .sbi_item {
  overflow: hidden;
}
#sb_instagram .sbi_item .sbi_photo_wrap {
  overflow: hidden;
}
#sb_instagram .sbi_item .sbi_photo {
  display: block;
  overflow: hidden;
}
#sb_instagram .sbi_item .sbi_photo img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease !important;
  transform: scale(1);
}
#sb_instagram .sbi_item:hover .sbi_photo img {
  transform: scale(1.05) !important;
}
#sb_instagram {
  /* ---- PLAY BUTTON (videos) ---- */
}
#sb_instagram .svg-inline--fa.fa-play.sbi_playbtn {
  font-size: 28px !important;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#sb_instagram .sbi_item:hover .svg-inline--fa.fa-play.sbi_playbtn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
#sb_instagram {
  /* ---- CAROUSEL ICON ---- */
}
#sb_instagram .sbi_lightbox_carousel_icon {
  opacity: 0.8;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}
#sb_instagram {
  /* ---- LOAD MORE & FOLLOW BUTTONS ---- */
}
#sb_instagram #sbi_load {
  padding: 40px 0 0 !important;
  text-align: center;
}
#sb_instagram #sbi_load .sbi_load_btn {
  font-family: var(--font-sans, "Tenor Sans", sans-serif) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  font-size: 0.75rem !important;
  padding: 14px 40px !important;
  background: transparent !important;
  color: var(--text-dark, #2b2b2b) !important;
  border: 1px solid var(--text-dark, #2b2b2b) !important;
  border-radius: 0 !important;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
  box-shadow: none !important;
}
#sb_instagram #sbi_load .sbi_load_btn:hover, #sb_instagram #sbi_load .sbi_load_btn:focus {
  background: var(--brand-red, #c1262e) !important;
  color: #fff !important;
  border-color: var(--brand-red, #c1262e) !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}
#sb_instagram #sbi_load .sbi_load_btn:active {
  box-shadow: none !important;
}
#sb_instagram #sbi_load .sbi_follow_btn a {
  font-family: var(--font-sans, "Tenor Sans", sans-serif) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  font-size: 0.75rem !important;
  padding: 14px 40px !important;
  background: var(--brand-red, #c1262e) !important;
  color: #fff !important;
  border-radius: 0 !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
  box-shadow: none !important;
}
#sb_instagram #sbi_load .sbi_follow_btn a:hover, #sb_instagram #sbi_load .sbi_follow_btn a:focus {
  background: #8a1f23 !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}
#sb_instagram #sbi_load .sbi_follow_btn a:active {
  box-shadow: none !important;
}
/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  #sb_instagram {
    padding: 60px 20px !important;
  }
  #sb_instagram .sb_instagram_header {
    padding: 0 0 30px 0 !important;
  }
  #sb_instagram .sb_instagram_header h3 {
    font-size: 1.1rem !important;
  }
  #sb_instagram #sbi_load {
    padding: 30px 0 0 !important;
  }
  #sb_instagram #sbi_load .sbi_load_btn,
  #sb_instagram #sbi_load .sbi_follow_btn a {
    padding: 12px 30px !important;
    font-size: 0.7rem !important;
  }
}

/*# sourceMappingURL=style-index.css.map*/