
:root {
/* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: Georgia, "Times New Roman", serif;
  --nav-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  --background-color: #090909; /* Background color for the entire website, including individual sections */
  --default-color: #f5f1e8; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #dcc188; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c7ae6a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #12100d; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --muted-color: rgba(245, 241, 232, 0.74);
  --border-color: rgba(199, 174, 106, 0.22);
  --surface-highlight: rgba(199, 174, 106, 0.08);

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color:#C7AE6A; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000000; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #000000; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #C7AE6A; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #0c0b09;
  --surface-color: #151311;
}

.dark-background {
  --background-color: #12100d;
  --default-color: #f8f4eb;
  --heading-color: #f4ead3;
  --surface-color: #1c1915;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.65;
  letter-spacing: 0.01em;
  background-image:
    radial-gradient(circle at top left, rgba(199, 174, 106, 0.08), transparent 32%),
    linear-gradient(180deg, #0d0c0a 0%, #080808 100%);
}

.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 0.01em;
}

p {
  color: inherit;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199, 174, 106, 0.1);
  padding: 18px 0;
  transition: all 0.5s;
  z-index: 10000;
}

.header .logo {
  line-height: 1;
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.header .logo img {
  width: clamp(42px, 4.2vw, 52px);
  height: auto;
  max-height: none;
  margin-right: 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .header .header-social-links {
    order: 3;
    padding-right: 10px;
  }
}

.scrolled .header {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 22%);
    padding: 10px 14px;
    margin-left: 6px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: transparent;
  }

  .navmenu a::after,
  .navmenu a:focus::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
    position: relative;
    z-index: 10005;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    position: static;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100svh;
    padding: 120px 32px 48px;
    margin: 0;
    background:
      radial-gradient(circle at top left, rgba(199, 174, 106, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.985) 0%, rgba(14, 12, 10, 0.99) 100%);
    overflow-y: auto;
    transition: transform 0.45s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: 10003;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 0;
    font-family: var(--nav-font);
    font-size: clamp(1.4rem, 4.8vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    transition: 0.3s;
    border-bottom: 1px solid rgba(199, 174, 106, 0.14);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header,
  .mobile-nav-active #header {
    z-index: 10001;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 10004;
  }

  .mobile-nav-active .navmenu {
    z-index: 10002;
  }

  .mobile-nav-active .navmenu>ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-active .header-social-links {
    opacity: 0;
    pointer-events: none;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #080808;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  border-top: 1px solid rgba(199, 174, 106, 0.1);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-flex;
  line-height: 1.5;
}

.footer .footer-links a + a {
  margin-left: 0;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #000000;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  
/* Reduce animation duration on mobile for faster paint */
  [data-aos] {
    transition-duration: 0.2s !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 84px 0;
  scroll-margin-top: 84px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 52px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 2.6vw, 3.3rem);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 18px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 124px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 174, 106, 0.55), transparent);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 38px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-color);
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero container — FIRST paint */
.hero {
  --hero-focus-desktop: center center;
  --hero-focus-tablet: center center;
  --hero-focus-mobile: center center;
  --hero-mobile-media-ratio: 4 / 5;
  --hero-mobile-media-max: 560px;
  --hero-mobile-overlay:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.42) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.18) 100%);
  width: 100%;
  min-height: 84vh;
  position: relative;
  padding: 110px 0 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
}

.hero-home {
  --hero-focus-desktop: center 38%;
  --hero-focus-tablet: center 42%;
  --hero-focus-mobile: center 38%;
  --hero-mobile-media-ratio: 5 / 6;
  --hero-mobile-media-max: 520px;
}

.hero-home::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.74) 38%, rgba(5, 5, 5, 0.3) 68%, rgba(5, 5, 5, 0.42) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.56) 100%);
}

.hero-home .col-lg-8 {
  max-width: 940px;
}

.hero-home h2 {
  max-width: 37ch;
}

.hero-home p {
  max-width: 64ch;
}

.hero-home .hero-actions {
  gap: 28px;
}

.hero-home .hero-trust-note {
  margin-top: 18px;
  color: rgba(244, 234, 211, 0.76);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.digital-guest-book-hero {
  --hero-focus-desktop: center 24%;
  --hero-focus-tablet: center 26%;
  --hero-focus-mobile: center 20%;
}

/* Background image wrapper — LCP element */
.hero picture,
.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero picture::after,
.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Hero image itself */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus-desktop);
  display: block;
}

/* Overlay — after image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.38) 68%, rgba(5, 5, 5, 0.52) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.56) 100%);
  z-index: 1;
}

/* Text/content — LAST and TOPMOST */
.hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero > .container.text-center {
  text-align: left !important;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.98;
  max-width: 11ch;
  margin: 0;
  color: #f6efdf;
  text-wrap: balance;
}

.hero .hero-title {
  max-width: 13ch;
}

.hero .hero-title-primary,
.hero .hero-title-secondary {
  display: block;
}

.hero .hero-title-topics {
  display: inline;
}

.hero .hero-title-topic {
  display: inline;
}

.hero .hero-title-secondary {
  margin-top: 0.2em;
  font-size: 0.68em;
  line-height: 1.05;
  color: rgba(246, 239, 223, 0.92);
  text-wrap: balance;
  max-width: 11.5ch;
}

.hero .hero-title-softener {
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0.72;
  margin-right: 0.14em;
}

.hero .col-lg-8 {
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(244, 234, 211, 0.78);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 174, 106, 0.15), rgba(199, 174, 106, 0.82));
}

.hero h2 {
  margin: 22px 0 0;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 234, 211, 0.78);
  max-width: 34ch;
}

.hero p {
  margin: 22px 0 0;
  font-size: clamp(1.03rem, 1.2vw, 1.16rem);
  color: rgba(245, 241, 232, 0.82);
  max-width: 58ch;
}

.hero p strong {
  font-weight: 400;
}

.hero .btn-get-started {
  background: linear-gradient(180deg, #d7bf83 0%, #bfa260 100%);
  color: #14110d;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 28px;
  margin: 34px 0 0 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
  transition: 0.35s ease;
}

.hero .btn-get-started:hover {
  background: linear-gradient(180deg, #dfca95 0%, #c6ab69 100%);
  color: #100e0a;
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero .hero-secondary-link {
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.hero .hero-secondary-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(199, 174, 106, 0.45);
}

.hero .hero-secondary-link:hover {
  color: #fff2d0;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 30px;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 241, 232, 0.76);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 12px rgba(199, 174, 106, 0.45);
}

.hero a:not(.btn-get-started) {
  color: #edd39c;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: clamp(86px, 12vw, 104px) 0 clamp(44px, 8vw, 60px);
  }

  .hero img {
    object-position: var(--hero-focus-tablet);
  }

  .hero .container {
    text-align: center;
  }

  .hero > .container.text-center {
    text-align: center !important;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
    line-height: 1.02;
    max-width: 8.6ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-title-secondary {
    font-size: 0.5em;
    line-height: 1.1;
    max-width: 10ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-title-softener {
    display: block;
    margin: 0 0 0.22em;
    font-size: 0.34em;
    letter-spacing: 0.18em;
  }

  .hero-home .container,
  .hero-home > .container.text-center {
    text-align: center !important;
  }

  .hero-home .hero-eyebrow {
    justify-content: center !important;
    margin-bottom: 16px;
  }

  .hero-home h1 {
    max-width: 8.2ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-title-secondary {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.28em;
    line-height: 1.04;
  }

  .hero-home .hero-title-softener {
    display: inline;
    margin: 0 0.16em 0 0;
    font-size: 0.52em;
    letter-spacing: 0.1em;
  }

  .hero-home h2,
  .hero-home p,
  .hero-home .hero-trust-note,
  .hero-home .hero-trust-strip {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-actions,
  .hero-home .hero-trust-strip {
    justify-content: center;
  }

  .hero-home .hero-secondary-link {
    width: 100%;
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero h2 {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero .hero-secondary-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .hero-trust-strip {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero img {
    object-position: var(--hero-focus-mobile);
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .hero {
    min-height: clamp(620px, 74svh, 760px);
    padding: clamp(86px, 16vw, 102px) 0 36px;
    display: flex;
    align-items: flex-start;
    background: #050505;
  }

  .hero picture,
  .hero .hero-media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: none;
    box-shadow: none;
  }

  .hero picture::after,
  .hero .hero-media::after {
    z-index: 1;
    background: transparent;
  }

  .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-focus-mobile);
  }

  .hero .container,
  .hero > .container.text-center {
    text-align: center !important;
  }

  .hero .col-lg-8 {
    max-width: min(100%, 34rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 9ch;
  }

  .hero .hero-title-secondary {
    max-width: 13ch;
  }

  .hero .hero-title-softener {
    display: inline;
    margin: 0 0.16em 0 0;
    font-size: 0.5em;
    letter-spacing: 0.1em;
  }

  .hero h2 {
    max-width: 28ch;
    margin-top: 16px;
    font-size: clamp(0.92rem, 4vw, 1.04rem);
    letter-spacing: 0.1em;
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    max-width: 32ch;
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.68;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
  }

  .hero .btn-get-started,
  .hero .hero-secondary-link {
    width: 100%;
    max-width: 320px;
    min-height: 50px;
  }

  .hero-trust-strip {
    margin-top: 18px;
    gap: 10px;
    justify-content: center;
  }

  .hero-trust-strip span {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

.hero-proof-grid {
  margin-top: 18px;
  gap: 10px;
  max-width: 100%;
}

.hero-eyebrow {
  justify-content: center;
}
}

.services-intro {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.services-intro p {
  color: rgba(245, 241, 232, 0.68);
  font-size: 1rem;
}

.proof-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(199, 174, 106, 0.14);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.78) 0%, rgba(12, 11, 9, 0.92) 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.proof-card .proof-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 211, 156, 0.74);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  color: rgba(245, 241, 232, 0.92);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 28px 0 20px;
}

.decision-card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(199, 174, 106, 0.14);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.92) 0%, rgba(12, 11, 9, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.decision-label,
.best-for {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(237, 211, 156, 0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.decision-label::before,
.best-for::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(199, 174, 106, 0.7);
}

.decision-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  color: #f2e5c5;
}

.decision-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.72;
}

.decision-link {
  display: inline-block;
  margin-top: 18px;
  color: #edd39c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.decision-link:hover {
  color: #fff0c6;
}

@media (max-width: 575px) and (orientation: portrait) {
  .hero {
    min-height: clamp(580px, 72svh, 700px);
    padding: 84px 0 32px;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 9.6vw, 2.5rem);
  }

  .hero h2 {
    margin-top: 14px;
  }

  .hero p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.62;
  }
}

@media (max-width: 390px) and (orientation: portrait) {
  .hero {
    min-height: clamp(540px, 70svh, 640px);
    padding: 80px 0 28px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .hero .btn-get-started,
  .hero .hero-secondary-link {
    min-height: 48px;
    font-size: 0.76rem;
    letter-spacing: 0.09em;
  }

  .hero-trust-strip span {
    width: auto;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .hero-home,
  .digital-guest-book-hero {
    min-height: 100svh;
    padding: 88px 0 34px;
    align-items: flex-end;
  }

  .hero-home picture,
  .digital-guest-book-hero picture {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
  }

  .hero-home img,
  .digital-guest-book-hero img {
    object-fit: contain;
    object-position: center center;
  }

  .hero-home::before,
  .digital-guest-book-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.68) 34%, rgba(5, 5, 5, 0.22) 62%, rgba(5, 5, 5, 0.18) 100%),
      linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.42) 100%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 600;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.about .about-content {
  padding: 28px 28px 28px 34px;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.94) 0%, rgba(12, 11, 9, 0.98) 100%);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  margin-bottom: 28px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about .about-content ul p {
  font-size: 0.98rem;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/* Gold carousel arrows – safe & simple */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(74%) sepia(18%) saturate(540%) hue-rotate(358deg)
          brightness(92%) contrast(90%);
}

/* Optional: subtle hover darken */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(74%) sepia(18%) saturate(540%) hue-rotate(358deg)
          brightness(85%) contrast(95%);
}

/* About carousel: keep media clean and controls visible */
#aboutCarousel {
  position: relative;
}

#aboutCarousel .carousel-inner {
  border-radius: 16px;
  overflow: hidden;
}

#aboutCarousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#aboutCarousel .carousel-control-prev,
#aboutCarousel .carousel-control-next {
  position: absolute;
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#aboutCarousel .carousel-control-prev {
  left: 0.75rem;
}

#aboutCarousel .carousel-control-next {
  right: 0.75rem;
}

#aboutCarousel .carousel-control-prev-icon,
#aboutCarousel .carousel-control-next-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-size: 100% 100%;
  filter: none;
}

#aboutCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23C7AE6A' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#aboutCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23C7AE6A' viewBox='0 0 16 16'%3e%3cpath d='M4.646 14.354a.5.5 0 0 1 0-.708L10.293 8 4.646 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708 0z'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* Container styling */
.services {
  background-color: var(--background-color); /* Consistent background for the section */
  padding: 0; /* Remove unnecessary padding */
  margin: 0; /* Remove unnecessary margin */
}

/* Invisible clickable button for service cards */
.services .service-toggle {
  display: none;
}

/* Accessible focus indicator (keyboard users only) */
.services .service-toggle:focus-visible {
  outline: none;
}

.services .service-item:has(.service-toggle:focus-visible) {
  box-shadow: none;
}

.services .service-item {
  background-color: black; /* Set the service box background to black */
  padding: 30px 20px; /* Adjust padding for consistent spacing */
  margin: 20px; /* Add margin between boxes */
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 2px solid #C7AE6A; /* Maintain gold border */
  border-radius: 15px; /* Add rounded corners */
  text-align: center;
  overflow: hidden; /* Prevent content overflow */
  box-sizing: border-box; /* Ensure padding doesn’t affect border */
  height: auto; /* Allow height to adjust based on content */
}

/* Icon styling */
.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto; /* Center the icon and add spacing below it */
  font-size: 28px;
  position: relative; /* Position relative to its container */
  top: 0; /* Fully visible within the service box */
  border: 6px solid black; /* Adjust border color */
  transition: ease-in-out 0.3s;
  z-index: 1; /* Ensure it appears above the background */
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: color 0.3s ease-in-out;
  color: #C7AE6A; /* Gold text for headings */
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: white; /* White text for content */
}

/* Details Section */
.services .service-item .details {
  position: relative; /* Make it relative to the parent box */
  background-color: black; /* Match the service item background */
  padding: 20px; /* Padding for spacing */
  box-sizing: border-box; /* Ensure padding doesn’t affect layout */
  opacity: 0; /* Initially transparent */
  max-height: 0; /* Start with zero height */
  overflow: hidden; /* Hide overflowing content */
  transform: scaleY(0); /* Collapse vertically */
  transition: all 0.3s ease-in-out;
  color: white; /* White text for details */
  visibility: hidden; /* Hide by default */
  border-radius: 0 0 15px 15px; /* Rounded corners only for the bottom of the details */
}

.services .service-item.expanded .details {
  opacity: 1;
  max-height: 1000px;
  transform: scaleY(1);
  visibility: visible;
}

/* Close Button (not needed for hover effect) */
.services .service-item .details .close-btn {
  display: none;
}

/* Desktop-only hover expansion */
@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .services .service-item:hover {
    transform: scale(1.05);
    z-index: 10;
    border: 2px solid #C7AE6A;
    border-radius: 15px;
    transition: transform 0.3s ease, border 0.3s ease;
    height: auto;
  }

  .services .service-item:hover .details {
    opacity: 1;
    max-height: 1000px;
    transform: scaleY(1);
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .services .service-item .details .close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #C7AE6A;
    border-radius: 50%;
    color: #C7AE6A;
    background: transparent;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1;
  }

  .services .service-item .service-toggle {
    all: unset;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 1px solid #C7AE6A;
    border-radius: 50%;
    color: #C7AE6A;
    background: rgba(0, 0, 0, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }

  .services .service-item .service-toggle::before {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
  }

  .services .service-item.expanded .service-toggle::before {
    transform: rotate(-135deg) translateY(-1px);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  background:
    radial-gradient(circle at 80% 10%, rgba(199, 174, 106, 0.14), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(199, 174, 106, 0.1), transparent 35%),
    #050505;
}

.gallery .gallery-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
}

#gallery .section-title h2,
#gallery .section-title p {
  text-wrap: balance;
}

#gallery .section-proof-row {
  justify-content: center;
}

.gallery .gallery-filter {
  border: 1px solid rgba(199, 174, 106, 0.55);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.9);
  color: #ffffff;
  padding: 9px 16px;
  font-size: 0.92rem;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.gallery .gallery-filter:hover,
.gallery .gallery-filter.is-active {
  background: #C7AE6A;
  color: #000000;
  border-color: #C7AE6A;
}

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

.gallery .gallery-card {
  margin: 0;
  background: #111111;
  border: 1px solid rgba(199, 174, 106, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  grid-column: span 4;
}

.gallery .gallery-card.is-hidden {
  display: none;
}

.gallery .gallery-card-featured {
  grid-column: span 4;
}

.gallery .gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 174, 106, 0.65);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.gallery .gallery-card a {
  display: block;
}

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

.gallery .gallery-meta {
  padding: 14px 16px 16px;
}

.gallery .gallery-meta h3 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 1.02rem;
}

.gallery .gallery-meta p {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery .gallery-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery .gallery-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(199, 174, 106, 0.55);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: #f2e6c0;
  background: rgba(199, 174, 106, 0.08);
}

.gallery .gallery-cta,
.premium-cta {
  margin-top: 30px;
  border: 1px solid rgba(199, 174, 106, 0.45);
  border-radius: 24px;
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.96) 0%, rgba(10, 10, 10, 0.99) 100%);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.24);
}

.gallery .gallery-cta .cta-kicker,
.premium-cta .cta-kicker {
  margin: 0 0 10px;
  color: rgba(237, 211, 156, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery .gallery-cta h3,
.premium-cta h3,
.premium-cta h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.gallery .gallery-cta p,
.premium-cta p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
}

.gallery .gallery-cta .cta-actions,
.premium-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
  max-width: 920px;
  margin: 0 auto;
}

.gallery .gallery-cta .cta-note,
.premium-cta .cta-note {
  margin: 16px 0 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.9rem;
}

.gallery .gallery-cta .btn-get-started,
.premium-cta .btn-get-started {
  background-color: var(--accent-color);
  color: var(--default-color);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  transition: 0.3s;
}

.gallery .gallery-cta .btn-get-started:hover,
.premium-cta .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

@media (max-width: 767px) {
  .gallery .gallery-cta .cta-actions,
  .premium-cta .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #gallery .gallery-cta .btn-get-started,
  .premium-cta .btn-get-started {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 10px auto 0;
    text-align: center;
    line-height: 1.35;
    padding: 12px 18px;
    white-space: normal;
  }

  #gallery .gallery-cta .btn-get-started:first-of-type,
  .premium-cta .btn-get-started:first-of-type {
    margin-top: 0;
  }

  .gallery .gallery-cta .hero-secondary-link,
  .premium-cta .hero-secondary-link {
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 6px;
  }
}

@media (max-width: 1199px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery .gallery-card,
  .gallery .gallery-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  position: relative;
  padding: 8px 52px 42px;
}

.testimonials .testimonial-card {
  height: auto;
  min-height: 100%;
  background: #111111;
  border: 1px solid rgba(199, 174, 106, 0.35);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  padding: 26px 24px;
}

.testimonials .testimonial-card::before {
  content: "\201C";
  display: block;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonials .testimonial-name {
  font-size: 1.15rem;
  margin: 0;
  color: var(--heading-color);
}

.testimonials .testimonial-event {
  margin: 4px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.testimonials .testimonial-quote {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(199, 174, 106, 0.6);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #C7AE6A;
  top: 44%;
  transition: all 0.2s ease-in-out;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: #C7AE6A;
  color: #000000;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonials .swiper-button-prev {
  left: 0;
}

.testimonials .swiper-button-next {
  right: 0;
}

.testimonials .swiper-pagination {
  bottom: 0;
}

.testimonials .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.38);
  opacity: 1;
}

.testimonials .swiper-pagination-bullet-active {
  background: #C7AE6A;
}

.testimonial-summary {
  margin-top: 26px;
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(199, 174, 106, 0.14);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.92) 0%, rgba(12, 11, 9, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.testimonial-summary-kicker {
  margin: 0 0 14px;
  color: rgba(237, 211, 156, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.testimonial-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-summary-grid article {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(199, 174, 106, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-summary-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #f2e5c5;
}

.testimonial-summary-grid p {
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .testimonials .testimonials-slider {
    padding: 8px 0 38px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    display: none;
  }

  .testimonials .testimonial-card {
    padding: 22px 20px;
  }

  .testimonial-summary-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .faq-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 129, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.faq .faq-item + .faq-item {
  margin-top: 1rem;
}

.faq .faq-item.active {
  background: #0f0f0f;
  border-color: rgba(255, 215, 129, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.faq .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #f3d48b;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.faq .faq-answer {
  display: none;
  margin-top: 0.75rem;
  color: #f3f3f3;
  line-height: 1.6;
}

.faq .faq-item.active .faq-answer {
  display: block;
}

.faq .faq-toggle {
  color: #f3d48b;
  transition: transform 0.2s ease;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.faq .faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Premium polish pass */
section,
.section {
  position: relative;
  padding: 104px 0;
  isolation: isolate;
}

.section-title {
  padding-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 18px;
  letter-spacing: 0.015em;
}

.section-title p {
  max-width: 62ch;
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero {
  min-height: 88vh;
  padding: 122px 0 104px;
}

.hero .container {
  max-width: 1240px;
}

.hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  margin-bottom: 16px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

section + section::before,
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 34vw);
  height: 1px;
  z-index: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(220, 193, 136, 0) 0%, rgba(220, 193, 136, 0.28) 50%, rgba(220, 193, 136, 0) 100%);
  pointer-events: none;
}

.hero h2 {
  max-width: 30ch;
  margin-bottom: 18px;
}

.hero p {
  max-width: 54ch;
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-actions {
  gap: 16px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions > a,
#hero .hero-actions > a,
.digital-guest-book-hero .hero-actions > a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 56px;
  margin: 0 !important;
  vertical-align: middle;
  box-sizing: border-box;
}

.hero .btn-get-started,
.gallery .gallery-cta .btn-get-started,
.contact .php-email-form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0;
  padding: 15px 26px;
  border: 1px solid rgba(220, 193, 136, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, #d8bb79 0%, #b9964e 100%);
  color: #140f08;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .btn-get-started:hover,
.gallery .gallery-cta .btn-get-started:hover,
.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero .hero-secondary-link,
.hero a:not(.btn-get-started).hero-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0;
  padding: 15px 24px;
  border: 1px solid rgba(220, 193, 136, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5ecdb;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.hero .hero-secondary-link::after,
.hero a:not(.btn-get-started).hero-secondary-link::after {
  display: none;
}

.hero .hero-secondary-link:hover,
.hero a:not(.btn-get-started).hero-secondary-link:hover {
  border-color: rgba(220, 193, 136, 0.38);
  background: rgba(255, 255, 255, 0.075);
  color: #fff7e8;
  transform: translateY(-2px);
}

.hero-trust-strip {
  gap: 12px;
  margin-top: 24px;
}

.hero-trust-strip span {
  padding: 10px 16px;
  border: 1px solid rgba(220, 193, 136, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.supporting-seo-section .intro-panel,
.about .about-content,
.services .service-item,
.gallery .gallery-card,
.testimonials .testimonial-card,
.contact .php-email-form,
.contact .info-item,
.faq .faq-item {
  border: 1px solid rgba(199, 174, 106, 0.14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

@media (hover: hover) and (pointer: fine) {
  .services .service-item:hover,
  .gallery .gallery-card:hover,
  .testimonials .testimonial-card:hover,
  .contact .php-email-form:hover,
  .contact .info-item:hover,
  .faq .faq-item:hover,
  .supporting-seo-section .intro-panel:hover,
  .about .about-content:hover {
    border-color: rgba(199, 174, 106, 0.32);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(199, 174, 106, 0.1);
  }
}

.supporting-seo-section .intro-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(23, 20, 16, 0.92) 0%, rgba(12, 11, 9, 0.98) 100%);
}

.supporting-seo-section .intro-panel h2,
.supporting-seo-section .intro-panel h3 {
  text-wrap: balance;
}

.supporting-seo-section .intro-panel p {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.supporting-seo-section h2 + h3 {
  margin-top: -2px;
  margin-bottom: 10px;
  color: rgba(244, 234, 211, 0.84);
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.homepage-wedding-callout {
  padding-top: 28px;
  padding-bottom: 14px;
}

.homepage-wedding-callout .intro-panel {
  max-width: 960px;
}

.homepage-wedding-callout h2 {
  margin-bottom: 16px;
}

.homepage-wedding-callout p {
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.74;
}

.homepage-wedding-callout .callout-actions {
  margin-top: 22px;
}

.homepage-wedding-callout .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0;
  padding: 15px 26px;
  border: 1px solid rgba(220, 193, 136, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, #d8bb79 0%, #b9964e 100%);
  color: #140f08;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.homepage-wedding-callout .btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.homepage-wedding-callout .callout-trust-line {
  margin-top: 16px;
  max-width: 60ch;
  color: rgba(237, 211, 156, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.6;
}

.hero-review-band {
  padding: 20px 0 10px;
}

.review-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.review-band-item,
.proof-summary-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(199, 174, 106, 0.14);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.92) 0%, rgba(12, 11, 9, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.review-band-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.review-band-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 211, 156, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-band-item strong {
  display: block;
  color: rgba(245, 241, 232, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.62;
}

.contact-process-wrap {
  margin-top: -6px;
  margin-bottom: 24px;
}

.contact-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.process-step {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(199, 174, 106, 0.14);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.88) 0%, rgba(12, 11, 9, 0.96) 100%);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
}

.process-step-number {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(237, 211, 156, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #f2e5c5;
}

.process-step p {
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
  line-height: 1.68;
}

.why-milas-summary {
  padding-top: 10px;
}

.why-milas-summary .section-title {
  padding-bottom: 24px;
}

.why-milas-summary .section-title p {
  max-width: 42ch;
  color: rgba(245, 241, 232, 0.62);
}

.proof-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.proof-summary-card h3 {
  margin: 0 0 10px;
  color: #f2e5c5;
  font-size: 1.14rem;
}

.proof-summary-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
  line-height: 1.72;
}

#services .service-item .details {
  display: grid;
  gap: 0;
}

#services .service-item .details h5 {
  margin: 18px 0 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(199, 174, 106, 0.12);
}

#services .service-item .details h5:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

#services .service-item .details p {
  margin: 0;
}

#services .service-item.expanded .details,
#services .service-item .details {
  background: rgba(255, 255, 255, 0.015);
  border-radius: 18px;
}

#services .service-item.expanded .details {
  margin-top: 20px;
  padding: 18px 16px;
  border-top: none;
}

.supporting-seo-section .intro-panel p,
.about .about-content p,
.about .about-content ul p,
.gallery .gallery-meta p,
.testimonial-quote,
.faq .faq-answer {
  max-width: 62ch;
  line-height: 1.8;
}

.about .about-content {
  padding: clamp(26px, 3vw, 42px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(23, 20, 16, 0.92) 0%, rgba(12, 11, 9, 0.98) 100%);
}

.services .service-item {
  padding: 34px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.94) 0%, rgba(12, 11, 9, 0.99) 100%);
}

.services .service-item p,
.services .service-item .details {
  max-width: 42ch;
  line-height: 1.78;
}

.gallery .gallery-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.96) 0%, rgba(12, 11, 9, 0.99) 100%);
}

.gallery .gallery-card img,
.gallery .gallery-card video {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery .gallery-card:hover img,
.gallery .gallery-card:hover video {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.gallery .gallery-meta {
  padding: 22px 24px 24px;
}

.testimonials .testimonial-card {
  padding: 34px 30px;
  border-radius: 28px;
}

.contact .info-item {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.92) 0%, rgba(12, 11, 9, 0.98) 100%);
}

.contact .php-email-form {
  padding: clamp(26px, 3vw, 40px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.94) 0%, rgba(12, 11, 9, 0.99) 100%);
}

.faq .faq-item {
  border-radius: 24px;
}

.faq .faq-question {
  padding: 24px 26px;
}

.faq .faq-answer {
  padding: 0 26px 24px;
}

@media (max-width: 991px) {
  section,
  .section {
    padding: 64px 0;
  }

  .homepage-wedding-callout,
  .hero-review-band,
  .supporting-seo-section,
  .why-milas-summary,
  #services {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-title,
  .services-intro,
  .review-band,
  .proof-summary-grid,
  #services .decision-grid,
  .supporting-seo-section .intro-panel,
  .homepage-wedding-callout .intro-panel,
  .review-band-item,
  .proof-summary-card,
  .decision-card,
  .services .service-item {
    position: relative;
    z-index: 1;
  }

  .section-title {
    padding-bottom: 28px;
  }

  .hero {
    min-height: auto;
    padding: 102px 0 74px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    max-width: 12ch;
  }

  .hero h2 {
    max-width: 24ch;
    font-size: clamp(1rem, 3.8vw, 1.14rem);
  }

  .hero p {
    max-width: 36ch;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero .btn-get-started,
  .hero .hero-secondary-link,
  .gallery .gallery-cta .btn-get-started,
  .contact .php-email-form button[type=submit] {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 14px 18px;
    font-size: 0.79rem;
    letter-spacing: 0.1em;
  }

  .services .service-item,
  .testimonials .testimonial-card,
  .contact .php-email-form,
  .supporting-seo-section .intro-panel,
  .about .about-content,
  .review-band-item,
  .proof-summary-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .review-band,
  .proof-summary-grid {
    grid-template-columns: 1fr;
  }

  .review-band {
    gap: 10px;
  }

  .review-band-item {
    padding: 14px 16px;
  }

  .hero-review-band {
    padding: 10px 0 4px;
  }

  .homepage-wedding-callout {
    padding-top: 20px;
    padding-bottom: 8px;
  }

  .homepage-wedding-callout .intro-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .homepage-wedding-callout h2 {
    margin-bottom: 12px;
  }

  .homepage-wedding-callout p {
    max-width: 34ch;
    line-height: 1.66;
  }

  .homepage-wedding-callout .callout-actions {
    margin-top: 18px;
  }

  .homepage-wedding-callout .btn-get-started {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    font-size: 0.79rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .homepage-wedding-callout .callout-trust-line {
    margin-top: 14px;
    font-size: 0.76rem;
  }

  .why-milas-summary {
    padding-top: 2px;
  }

  .why-milas-summary .section-title {
    padding-bottom: 18px;
  }

  .gallery .gallery-card {
    border-radius: 24px;
  }

  .hero-proof-grid,
  .decision-grid,
  .contact-process {
    grid-template-columns: 1fr;
  }

  #services .decision-grid {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
  }

  .hero-proof-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .proof-card,
  .decision-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  #services .decision-card {
    padding: 22px 20px;
    width: 100%;
    min-width: 0;
  }

  #services .decision-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.68rem;
    line-height: 1.6;
    letter-spacing: 0.14em;
  }

  #services .decision-card h3 {
    font-size: 1.5rem;
    line-height: 1.08;
  }

  #services .decision-card p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  #services .decision-link {
    margin-top: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    line-height: 1.5;
  }

  .section-proof-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .proof-pill,
  .form-trust-row span {
    padding: 8px 11px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .form-trust-row {
    gap: 8px 10px;
    margin: 10px 0 18px;
  }

  .contact-process-wrap {
    margin-bottom: 18px;
  }

  .process-step {
    padding: 18px 16px;
  }

  .process-step-number {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .process-step h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .gallery .gallery-meta,
  .faq .faq-answer,
  .faq .faq-question {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq .faq-item {
    border-radius: 24px;
  }

  .faq .faq-question {
    padding: 24px 26px;
  }

  .faq .faq-answer {
    padding: 0 26px 24px;
  }

  .gallery .gallery-meta {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .gallery .gallery-cta,
  .premium-cta {
    margin-top: 20px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .gallery .gallery-cta .cta-kicker,
  .premium-cta .cta-kicker {
    margin-bottom: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .gallery .gallery-cta h3,
  .premium-cta h3,
  .premium-cta h2 {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }

  .gallery .gallery-cta p,
  .premium-cta p {
    margin-bottom: 12px;
  }

  .gallery .gallery-cta .cta-actions,
  .premium-cta .cta-actions {
    gap: 10px 14px;
  }

  .gallery .gallery-cta .cta-note,
  .premium-cta .cta-note {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .testimonial-summary {
    margin-top: 20px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .testimonial-summary-kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .testimonial-summary-grid {
    gap: 12px;
  }

  .testimonial-summary-grid article {
    padding: 16px 16px 14px;
    border-radius: 18px;
  }
}

@media (max-width: 1199px) {
  #services .decision-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #services .decision-card {
    width: 100%;
    min-width: 0;
  }

  #services .decision-card h3 {
    max-width: 10ch;
  }

  .contact-process {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .process-step {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575px) {
  section,
  .section {
    padding: 52px 0;
  }

  .homepage-wedding-callout,
  .hero-review-band,
  .supporting-seo-section,
  .why-milas-summary,
  #services {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero {
    padding: 88px 0 60px;
  }

  .hero p {
    max-width: 31ch;
    font-size: 0.95rem;
  }

  .form-trust-row {
    margin: 8px 0 16px;
  }

  .hero-trust-strip span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  #services .decision-card {
    padding: 20px 16px;
  }

  #services .decision-label {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  #services .decision-card h3 {
    font-size: 1.42rem;
    line-height: 1.1;
    max-width: none;
  }

  #services .decision-card p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  #services .decision-link {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .process-step {
    padding: 18px 16px;
  }

  .process-step h3 {
    font-size: 1.42rem;
    line-height: 1.1;
  }

  .process-step p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .review-band-item,
  .proof-summary-card,
  .services .service-item,
  .testimonials .testimonial-card,
  .contact .php-email-form,
  .supporting-seo-section .intro-panel,
  .about .about-content {
    padding: 18px 16px;
  }

  .review-band-item {
    border-color: rgba(199, 174, 106, 0.08);
    background: rgba(255, 255, 255, 0.015);
    box-shadow: none;
  }

  .review-band-label {
    margin-bottom: 5px;
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .review-band-item strong {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .section-title p,
  .services .service-item p,
  .about .about-content p,
  .gallery .gallery-meta p,
  .faq .faq-answer,
  .testimonial-quote {
    font-size: 0.94rem;
    line-height: 1.68;
  }
}

/* Homepage FAQ alignment with landing pages */
#faq .faq-item {
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.98) 0%, rgba(11, 10, 9, 1) 100%);
  border: 1px solid rgba(255, 215, 129, 0.16);
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

#faq .faq-item.active {
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
  border-color: rgba(255, 215, 129, 0.26);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

#faq .faq-question {
  color: #f1dfb7;
  font-size: 1rem;
  padding: 24px 26px;
}

#faq .faq-answer {
  color: rgba(245, 241, 232, 0.76);
  padding: 0 26px 24px;
}

#faq .faq-toggle {
  color: #f1dfb7;
}

@media (max-width: 991px) {
  #faq .faq-item {
    padding: 0;
  }

  #faq .faq-question {
    padding: 16px 14px;
    gap: 10px;
  }

  #faq .faq-answer {
    padding: 0 14px 16px;
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

.hero-offer-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  max-width: 980px;
}

.hero-offer-item,
.decision-snapshot-card,
.quick-start-wrap,
.quick-start-card {
  border: 1px solid rgba(220, 193, 136, 0.16);
  background:
    radial-gradient(circle at top left, rgba(199, 174, 106, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(21, 18, 15, 0.9) 0%, rgba(10, 10, 10, 0.96) 100%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.hero-offer-item {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.hero-offer-label,
.decision-snapshot-label,
.quick-start-kicker,
.form-intro {
  display: block;
  color: rgba(237, 211, 156, 0.8);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-offer-item strong {
  display: block;
  color: #f6efdf;
  font-size: 0.96rem;
  line-height: 1.56;
  font-weight: 500;
}

.hero-cta-note,
.form-intro {
  margin: 16px 0 0;
  max-width: 56ch;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: none;
}

.quick-start-band {
  padding-top: 12px;
}

.quick-start-wrap {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
}

.quick-start-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.quick-start-intro h2 {
  margin: 8px 0 10px;
  text-wrap: balance;
}

.quick-start-intro p:last-child {
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(245, 241, 232, 0.74);
  text-wrap: balance;
}

.quick-start-grid,
.decision-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-start-card,
.decision-snapshot-card {
  padding: 24px 22px 22px;
  border-radius: 24px;
}

.quick-start-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(237, 211, 156, 0.84);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-start-card h3,
.decision-snapshot-card h2 {
  margin: 0 0 10px;
  color: #f1e4c2;
}

.quick-start-card h3 {
  font-size: 1.28rem;
}

.quick-start-card p,
.decision-snapshot-card p {
  margin: 0 0 16px;
  color: rgba(245, 241, 232, 0.74);
  line-height: 1.68;
}

.decision-snapshot {
  padding-top: 16px;
  padding-bottom: 22px;
}

.decision-snapshot-card h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.3;
}

.contact .form-intro {
  margin: 10px 0 0;
}

@media (hover: hover) and (pointer: fine) {
  .hero-offer-item:hover,
  .quick-start-wrap:hover,
  .quick-start-card:hover,
  .decision-snapshot-card:hover {
    border-color: rgba(199, 174, 106, 0.32);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(199, 174, 106, 0.1);
  }
}

@media (max-width: 991px) {
  .hero-offer-panel,
  .quick-start-grid,
  .decision-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-note,
  .contact .form-intro {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-offer-panel {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-offer-item,
  .quick-start-card,
  .decision-snapshot-card {
    padding: 18px 16px;
  }

  .hero-offer-item strong,
  .quick-start-card p,
  .decision-snapshot-card p,
  .form-intro,
  .hero-cta-note {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .quick-start-wrap {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .quick-start-intro {
    margin-bottom: 18px;
    text-align: left;
  }

  .quick-start-intro h2,
  .decision-snapshot-card h2 {
    font-size: 1.18rem;
  }

  .quick-start-band,
  .decision-snapshot {
    padding-top: 8px;
  }
}

@media (max-width: 575px) {
  .hero-offer-label,
  .decision-snapshot-label,
  .quick-start-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-cta-note,
  .form-intro {
    margin-top: 12px;
  }
}

/* Homepage refinement overrides */
.hero-home .col-lg-8 {
  max-width: 900px;
}

.hero-home h2 {
  max-width: 34ch;
}

.hero-home p {
  max-width: 48ch;
}

.hero-home .hero-offer-panel {
  margin-top: 20px;
  gap: 12px;
}

.hero-home .hero-offer-item {
  padding: 16px 16px 14px;
}

.hero-home .hero-offer-item strong {
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-home .hero-actions {
  margin-top: 24px;
}

.hero-home .hero-cta-note {
  margin-top: 12px;
  max-width: 44ch;
}

.hero-home .hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 920px;
}

.hero-home .hero-trust-strip span {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.79rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero-home .hero-trust-strip span::before {
  margin-top: 0.42rem;
  flex: 0 0 auto;
}

.hero-review-band {
  padding-top: 12px;
  padding-bottom: 8px;
}

.review-band {
  gap: 14px;
}

.review-band-item strong {
  font-size: 0.95rem;
  line-height: 1.55;
}

.quick-start-band {
  padding-top: 8px;
  padding-bottom: 18px;
}

.quick-start-intro {
  max-width: 700px;
}

.quick-start-intro p:last-child,
.supporting-seo-section .intro-panel p,
.why-milas-summary .section-title p {
  max-width: 48ch;
}

.supporting-seo-section {
  padding-top: 18px;
}

.supporting-seo-section .intro-panel {
  padding: clamp(24px, 3.4vw, 42px);
}

.supporting-seo-section .intro-panel p + p {
  margin-top: 10px;
}

.homepage-wedding-callout {
  padding-top: 20px;
}

.homepage-wedding-callout p {
  max-width: 44ch;
}

@media (max-width: 991px) {
  .hero-home {
    min-height: auto;
    padding: 96px 0 66px;
  }

  .hero-home h1 {
    max-width: 7.8ch;
  }

  .hero-home h2 {
    max-width: 22ch;
    margin-top: 16px;
  }

  .hero-home p {
    max-width: 32ch;
  }

  .hero-home .hero-trust-strip {
    grid-template-columns: 1fr;
    max-width: 34rem;
  }

  .hero-home .hero-trust-strip span {
    justify-content: center;
    text-align: center;
  }

  .hero-home .hero-trust-strip span::before {
    margin-top: 0.35rem;
  }
}

@media (max-width: 767px) {
  .hero-home {
    padding: 84px 0 52px;
  }

  .hero-home .container,
  .hero-home > .container.text-center {
    text-align: left !important;
  }

  .hero-home .hero-eyebrow {
    justify-content: flex-start !important;
    margin-bottom: 12px;
  }

  .hero-home h1,
  .hero-home .hero-title-secondary,
  .hero-home h2,
  .hero-home p,
  .hero-home .hero-cta-note {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-home h1 {
    max-width: 8.4ch;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-home .hero-title-secondary {
    max-width: 12ch;
  }

  .hero-home h2 {
    font-size: 0.96rem;
    letter-spacing: 0.06em;
  }

  .hero-home p,
  .hero-home .hero-cta-note,
  .hero-home .hero-offer-item strong {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .hero-home .hero-offer-panel {
    margin-top: 16px;
    gap: 9px;
  }

  .hero-home .hero-offer-item {
    padding: 14px 14px 13px;
    border-radius: 18px;
  }

  .hero-home .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-home .hero-actions,
  .hero-home .hero-trust-strip {
    justify-content: flex-start;
  }

  .hero-home .btn-get-started,
  .hero-home .hero-secondary-link {
    width: 100%;
  }

  .hero-home .hero-trust-strip {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-home .hero-trust-strip span {
    padding: 12px 14px;
    border-radius: 16px;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-review-band,
  .quick-start-band,
  .supporting-seo-section,
  .homepage-wedding-callout,
  .why-milas-summary,
  #services {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .review-band-item,
  .quick-start-wrap,
  .supporting-seo-section .intro-panel,
  .homepage-wedding-callout .intro-panel,
  .proof-summary-card {
    padding: 18px 16px;
    border-radius: 20px;
  }
}

@media (max-width: 575px) {
  .hero-home {
    padding: 80px 0 46px;
  }

  .hero-home p {
    max-width: 29ch;
  }

  .hero-home .hero-trust-strip span {
    font-size: 0.76rem;
  }
}

/* Homepage mobile UX refinement overrides */
@media (max-width: 991px) {
  .hero-home {
    padding: 90px 0 60px;
  }

  .hero-home .hero-offer-panel {
    gap: 10px;
  }

  .hero-home .hero-actions {
    margin-top: 18px;
  }

  .hero-home .hero-cta-note {
    margin-top: 10px;
  }

  .hero-home .hero-trust-strip {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-review-band,
  .quick-start-band,
  .supporting-seo-section,
  .homepage-wedding-callout,
  .why-milas-summary,
  #services {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .quick-start-wrap,
  .supporting-seo-section .intro-panel,
  .homepage-wedding-callout .intro-panel {
    padding: 18px 16px;
  }

  .review-band-item strong,
  .quick-start-intro p:last-child,
  .supporting-seo-section .intro-panel p,
  .why-milas-summary .section-title p {
    line-height: 1.58;
  }
}

@media (max-width: 575px) {
  .hero-home {
    padding: 72px 0 40px;
  }

  .hero-home h1 {
    max-width: 7.8ch;
  }

  .hero-home .hero-offer-panel {
    margin-top: 14px;
  }

  .hero-home .hero-trust-strip span {
    padding: 11px 12px;
  }

  .hero-review-band,
  .quick-start-band,
  .supporting-seo-section,
  .homepage-wedding-callout,
  .why-milas-summary,
  #services {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.mobile-copy-toggle {
  display: none;
  border: 1px solid rgba(199, 174, 106, 0.3);
  border-radius: 999px;
  background: rgba(199, 174, 106, 0.06);
  color: #c7ae6a;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .review-band,
  .quick-start-grid,
  .proof-summary-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px 6px;
    margin-left: -4px;
    margin-right: -4px;
  }

  .review-band > *,
  .quick-start-grid > *,
  .proof-summary-grid > * {
    flex: 0 0 84%;
    min-width: 84%;
    scroll-snap-align: start;
  }

  .review-band::-webkit-scrollbar,
  .quick-start-grid::-webkit-scrollbar,
  .proof-summary-grid::-webkit-scrollbar {
    display: none;
  }

  .supporting-seo-section .mobile-extra-copy {
    display: none;
  }

  .supporting-seo-section .mobile-copy-section.expanded .mobile-extra-copy {
    display: block;
  }

  .supporting-seo-section .mobile-copy-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 8px 14px;
  }
}

/*--------------------------------------------------------------
# Homepage UX Refresh
--------------------------------------------------------------*/
.hero-home .hero-service-line {
  margin: 18px 0 0;
  color: rgba(237, 211, 156, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-home .hero-support-copy {
  margin-top: 14px;
  max-width: 34ch;
  color: rgba(245, 241, 232, 0.9);
}

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

.trust-strip-grid .review-band-item {
  padding: 14px 16px;
  text-align: center;
}

.trust-strip-grid .review-band-item strong {
  font-size: 0.88rem;
  line-height: 1.45;
}

.decision-points,
.why-points {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(245, 241, 232, 0.82);
}

.decision-points li,
.why-points li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.decision-points li:last-child,
.why-points li:last-child {
  margin-bottom: 0;
}

.digital-guestbook-section {
  padding-top: 22px;
}

.digital-guestbook-panel {
  padding: 32px 28px;
  border-radius: 30px;
  border: 1px solid rgba(199, 174, 106, 0.14);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.94) 0%, rgba(12, 11, 9, 0.99) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.digital-guestbook-header {
  padding-bottom: 26px;
}

.guestbook-steps,
.why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.digital-guestbook-actions {
  margin-top: 20px;
  text-align: center;
}

.why-choose-list .proof-summary-card {
  height: 100%;
}

.why-choose-list .proof-summary-card h3 {
  margin-bottom: 12px;
}

.compact-testimonial-summary .testimonial-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.compact-testimonial-summary .decision-link {
  margin-top: 0;
}

.final-cta-section {
  padding-top: 28px;
}

@media (max-width: 1199px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hero-home .hero-service-line,
  .hero-home .hero-support-copy {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .digital-guestbook-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .guestbook-steps,
  .why-choose-list,
  .compact-testimonial-summary .testimonial-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-home .hero-service-line {
    font-size: 0.74rem;
    line-height: 1.6;
  }

  .hero-home .hero-support-copy {
    max-width: 19rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid .review-band-item strong {
    font-size: 0.84rem;
  }

  .decision-points li,
  .why-points li {
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .hero-home .container,
  .hero-home > .container.text-center {
    text-align: center !important;
  }

  .hero-home .hero-eyebrow,
  .hero-home .hero-actions,
  .hero-home .hero-trust-strip {
    justify-content: center !important;
  }

  .hero-home h1,
  .hero-home .hero-title-secondary,
  .hero-home h2,
  .hero-home p,
  .hero-home .hero-service-line,
  .hero-home .hero-support-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-home .hero-trust-strip span {
    justify-content: center;
    text-align: center;
  }
}

