:root {
  --teal: #b18419;
  --teal-dark: #8A6512;
  --teal-light: #F0D98A;
  --white: #FCFDFD;
  --charcoal: #0e0b0b;
  --peach: #CFA090;
  --skin: #E1C1B5;
  --brown: #A3796B;
  --btn-gradient: linear-gradient(135deg, #F0D98A 0%, #8A6512 100%);
  --shadow: 0 20px 45px rgba(41, 33, 32, 0.12);
  --radius: 18px;
  --font-display: Manrope, sans-serif;
  --font-sans: "Space Grotesk", "Segoe UI", sans-serif;
  --header-height: 88px;
  
                 
}

* {
  box-sizing: border-box;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: radial-gradient(circle at top left, rgba(199, 154, 47, 0.08), transparent 55%),
    radial-gradient(circle at 20% 40%, rgba(225, 193, 181, 0.2), transparent 60%),
    var(--white);
  min-height: 100vh;
  padding-top: var(--header-height);
}

.required-star {
  color: #d11b1b;
  font-weight: 700;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(199, 154, 47, 0.05), transparent 40%),
    linear-gradient(300deg, rgba(163, 121, 107, 0.08), transparent 35%);
  z-index: -1;
}

.site-header-index {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  /* background: rgb(255 251 234 / 95%); */
  background: rgb(255 254 249 / 95%);
  border-bottom: 1px solid rgba(138, 101, 18, 0.22);
  backdrop-filter: blur(10px);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  /* background: rgb(255 251 234 / 95%); */
    background: rgb(255 254 249 / 95%);
  border-bottom: 1px solid rgba(138, 101, 18, 0.22);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo {
  height: 140px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.nav {
  flex: 1;
  margin-left: auto;
}

.nav-desktop {
  display: block;
}

.nav-mobile {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.nav-link,
.nav-list button {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dropdown-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(199, 154, 47, 0.35);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-toggle .chev {
  transition: transform 0.2s ease;
}

.has-dropdown.open > .nav-item-row .chev {
  transform: rotate(90deg);
}

.nav-link:hover,
.nav-list button:hover,
.nav-link:focus-visible,
.nav-list button:focus-visible {
  color: var(--teal-dark);
  background: rgba(199, 154, 47, 0.12);
  transform: translateY(-1px);
  outline: none;
}


body[data-page="home"] .nav-link[data-page="home"],
body[data-page="about"] .nav-link[data-page="about"],
body[data-page="hair"] .nav-link[data-page="hair"],
body[data-page="skin"] .nav-link[data-page="skin"],
body[data-page="slim"] .nav-link[data-page="slim"],
body[data-page="dentistry"] .nav-link[data-page="dentistry"],
body[data-page="contact"] .nav-link[data-page="contact"] {
  color: var(--teal);
  background: rgba(199, 154, 47, 0.12);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(199, 154, 47, 0.4);
  background: rgba(252, 253, 253, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(199, 154, 47, 0.12);
  border-color: rgba(199, 154, 47, 0.6);
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
  display: block;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(41, 33, 32, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-dropdown.open > .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(199, 154, 47, 0.2);
  padding: 12px;
  min-width: 260px;
  width: max-content;
}

.dropdown-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--teal-dark);
}

.dropdown-list,
.submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.dropdown-list button,
.submenu-list a,
.submenu-link {
  white-space: nowrap;
  text-align: left;
}

.has-submenu {
  position: relative;
}

.submenu-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.submenu-link {
  flex: 1;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 0.95rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-desktop .dropdown-list > li > .submenu-link {
  display: block;
  padding: 5px 8px;
  border-radius: 10px;
}

.nav-desktop .dropdown-list > li > .submenu-link:hover,
.nav-desktop .dropdown-list > li > .submenu-link:focus-visible {
  background: rgba(199, 154, 47, 0.12);
  color: var(--teal-dark);
  outline: none;
}

.submenu-toggle {
  background: transparent;
  border: none;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  color: inherit;
}

.submenu-row:hover .submenu-link,
.submenu-row:focus-within .submenu-link,
.submenu-row:hover .submenu-toggle,
.submenu-row:focus-within .submenu-toggle {
  background: rgba(199, 154, 47, 0.12);
  color: var(--teal-dark);
  outline: none;
}

.chev {
  font-size: 0.9rem;
  color: var(--teal);
  display: inline-block;
  transition: transform 0.2s ease;
}

.submenu {
  position: absolute;
  left: calc(100% + 14px);
  top: 0;
  /* padding-left: 1px; */
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-submenu.open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-submenu.open > .submenu-row .chev {
  transform: rotate(90deg);
}

.submenu-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(199, 154, 47, 0.18);
  padding: 12px;
  min-width: 240px;
  width: max-content;
}

.submenu-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--teal-dark);
}

.submenu-list a {
  text-decoration: none;
  color: var(--charcoal);
  padding: 4px 6px;
  border-radius: 10px;
  display: block;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu-list a:hover,
.submenu-list a:focus-visible {
  background: rgba(199, 154, 47, 0.12);
  color: var(--teal-dark);
  outline: none;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5px 24px 120px;
}

.category-cards-section{
   padding: 55px 0 !important; 
}
.section-space {
  padding: 70px 0;
}

.about-split {
  position: relative;
}

.about-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(199, 154, 47, 0.08), rgba(225, 193, 181, 0.16));
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 26px 60px rgba(41, 33, 32, 0.16);
}

.about-card .row {
  position: relative;
  z-index: 1;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.35), rgba(199, 154, 47, 0));
  opacity: 0.9;
  pointer-events: none;
  filter: blur(2px);
  animation: orbFloat 9s ease-in-out infinite;
  z-index: 0;
}

.about-orb.orb-1 {
  width: 140px;
  height: 140px;
  top: -30px;
  right: 10%;
  animation-delay: -1s;
}

.about-orb.orb-2 {
  width: 190px;
  height: 190px;
  bottom: -60px;
  left: 6%;
  background: radial-gradient(circle, rgba(225, 193, 181, 0.45), rgba(225, 193, 181, 0));
  animation-delay: -4s;
}

.about-orb.orb-3 {
  width: 110px;
  height: 110px;
  bottom: 18%;
  right: -30px;
  background: radial-gradient(circle, rgba(163, 121, 107, 0.4), rgba(163, 121, 107, 0));
  animation-delay: -6s;
}

.about-media,
.about-image-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  min-height: 320px;
}

.about-media::after,
.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(199, 154, 47, 0.2), rgba(41, 33, 32, 0.1));
  pointer-events: none;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-media:hover .about-image,
.about-image-wrap:hover .about-image {
  transform: scale(1.04);
}

.about-content {
  position: relative;
  background: rgba(252, 253, 253, 0.92);
  border-left: 1px solid rgba(199, 154, 47, 0.12);
  padding: 32px 36px 32px 54px;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-content::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 26px;
  width: 6px;
  height: calc(100% - 52px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(199, 154, 47, 0.6), rgba(225, 193, 181, 0.5));
  opacity: 0.6;
}

.about-content > * {
  position: relative;
  z-index: 1;
}

.section-tag {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--teal-dark) !important;
}

.section-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 217, 138, 0.95), rgba(138, 101, 18, 1), rgba(240, 217, 138, 0.95));
  background-size: 200% 100%;
  animation: goldUnderlineFlow 3.2s linear infinite;
  box-shadow: 0 0 12px rgba(199, 154, 47, 0.22);
}


.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 14px;
  color: var(--charcoal);
}

.about-content p {
  margin: 0 0 16px;
  color: rgba(41, 33, 32, 0.82);
}

.about-highlight {
  font-weight: 600;
  color: var(--teal-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 154, 47, 0.45);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
  border-color: rgba(199, 154, 47, 0.8);
  outline: none;
}

.text-arrow {
  font-size: 1.1em;
  line-height: 1;
}

@keyframes goldUnderlineFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.services-section {
  position: relative;
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 154, 47, 0.45), transparent);
}

.services-section::before {
  top: 0;
}

.services-section::after {
  bottom: 0;
}

.services-head {
  margin-bottom: 28px;
  text-align: center;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
  color: var(--charcoal);
}

.services-grid {
  margin-top: 24px;
}

.services-layout {
  position: relative;
  z-index: 1;
}

.service-stack {
  display: grid;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 44px rgba(41, 33, 32, 0.12);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  --service-accent: #8A6512;
  --service-accent-soft: rgba(199, 154, 47, 0.18);
  color: var(--teal-dark);
  background: var(--service-accent-soft);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.service-icon i {
  font-size: 1.35rem;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
  background: var(--service-accent);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(199, 154, 47, 0.35);
}

.service-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--charcoal);
}

.tone-peach {
  background: linear-gradient(140deg, rgba(225, 193, 181, 0.45), rgba(252, 253, 253, 0.9));
  color: #7b5d51;
}

.tone-brown {
  background: linear-gradient(140deg, rgba(163, 121, 107, 0.35), rgba(252, 253, 253, 0.95));
  color: #6a4f45;
}

.service-icon.tone-teal {
  --service-accent: #8A6512;
  --service-accent-soft: rgba(199, 154, 47, 0.2);
  background: var(--service-accent-soft);
}

.service-icon.tone-peach {
  --service-accent: #c07d65;
  --service-accent-soft: rgba(207, 160, 144, 0.28);
  color: #7b5d51;
  background: var(--service-accent-soft);
}

.service-icon.tone-brown {
  --service-accent: #6a4f45;
  --service-accent-soft: rgba(163, 121, 107, 0.26);
  color: #6a4f45;
  background: var(--service-accent-soft);
}

.services-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 40px rgba(41, 33, 32, 0.12);
  min-height: 420px;
  height: 100%;
}

.services-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.services-visual:hover .services-image {
  transform: scale(1.04);
}

.stats-section {
  background: var(--white);
  position: relative;
}

.stats-row {
  justify-content: center;
}

.stat-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 154, 47, 0.16);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  padding: 26px 18px;
  height: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.stats-section.is-visible .stat-card {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  box-shadow: 0 24px 44px rgba(41, 33, 32, 0.12);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  color: var(--teal-dark);
  letter-spacing: 0.5px;
}

.stat-label {
  margin: 6px 0 0;
  font-size: 0.98rem;
  color: rgba(41, 33, 32, 0.7);
  font-weight: 500;
}

.offer-section {
  position: relative;
}

.offer-section:not(.offer-section-bg) {
  background: rgba(255, 254, 248, 0.95);
  border-top: 1px solid rgba(177, 132, 25, 0.45);
}

.offer-section-bg {
  overflow: hidden;
}

.offer-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/background.png") center center / cover no-repeat;
  /* opacity: 0.12; */
  pointer-events: none;
}

.offer-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 253, 253, 0.9), rgba(252, 253, 253, 0.78));
  pointer-events: none;
}

.offer-section-bg > .container {
  position: relative;
  z-index: 1;
}

.offer-content-wide {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  /* background: linear-gradient(145deg, rgba(252, 253, 253, 0.98), rgba(225, 193, 181, 0.14));
  border: 1px solid rgba(199, 154, 47, 0.16);
  box-shadow: 0 28px 60px rgba(41, 33, 32, 0.12);
  overflow: hidden; */
}

.offer-content-wide::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.2), transparent 60%);
}

.offer-content-wide::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -50px;
  width: 220px;
  height: 220px;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(207, 160, 144, 0.22), transparent 60%);
}

.offer-content-wide > * {
  position: relative;
  z-index: 1;
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.offer-shell.offer-creative {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(252, 253, 253, 0.98), rgba(225, 193, 181, 0.14));
  border: 1px solid rgba(199, 154, 47, 0.16);
  box-shadow: 0 28px 60px rgba(41, 33, 32, 0.12);
  overflow: hidden;
}

.offer-shell.offer-creative::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.2), transparent 60%);
}

.offer-shell.offer-creative::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -50px;
  width: 220px;
  height: 220px;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(207, 160, 144, 0.22), transparent 60%);
}

.offer-shell.offer-creative .offer-content-block,
.offer-shell.offer-creative .offer-visual-block {
  position: relative;
  z-index: 1;
}

.offer-visual-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 22px 48px rgba(41, 33, 32, 0.14);
  min-height: 260px;
}

.offer-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.offer-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.offer-visual-frame:hover .offer-image {
  transform: scale(1.02);
}

.offer-float-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 16px 32px rgba(41, 33, 32, 0.2);
  backdrop-filter: blur(6px);
}

.offer-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(199, 154, 47, 0.2);
  color: var(--teal-dark);
}

.offer-float-icon i {
  font-size: 1.1rem;
}

.offer-float-title {
  margin: 0;
  font-weight: 600;
}

.offer-float-text {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(41, 33, 32, 0.7);
}

.offer-form-card {
  position: relative;
  background: linear-gradient(135deg, rgba(199, 154, 47, 0.12), rgba(252, 253, 253, 0.98));
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 22px 48px rgba(41, 33, 32, 0.14);
  overflow: hidden;
}

.offer-form-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(199, 154, 47, 0.25), rgba(199, 154, 47, 0)); */
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.offer-form-card > * {
  position: relative;
  z-index: 1;
}

.offer-section .row.align-items-stretch > .col-12.col-lg-6:first-child {
  display: flex;
}

.offer-section .row.align-items-stretch > .col-12.col-lg-6:first-child .offer-visual-frame {
  width: 90%;
  height: 100%;
  min-height: 0;
  margin-right: auto;
}

.offer-section .row.align-items-stretch > .col-12.col-lg-6:first-child .offer-image {
  min-height: 0;
}

.offer-content-wide .offer-lede {
  max-width: 46ch;
}

.offer-head {
  margin-bottom: 18px;
}

.offer-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0;
  color: var(--charcoal);
}

.offer-lede {
  margin: 10px 0 20px;
  color: rgba(41, 33, 32, 0.78);
}

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

.offer-tile {
  background: var(--white);
  border-radius: 18px;
  border: 2px solid rgba(177, 132, 25, 0.42);
  box-shadow: 0 16px 30px rgba(41, 33, 32, 0.08);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(41, 33, 32, 0.14);
  border-color: rgba(138, 101, 18, 0.65);
}

.offer-tile p {
  margin: 0;
  font-weight: 500;
  color: rgba(41, 33, 32, 0.85);
}

.offer-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  --offer-accent: #8A6512;
  --offer-accent-soft: rgba(199, 154, 47, 0.18);
  background: var(--offer-accent-soft);
  color: var(--offer-accent);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.offer-icon i {
  font-size: 1.1rem;
}

.offer-tile:hover .offer-icon {
  transform: scale(1.12);
  background: var(--offer-accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(199, 154, 47, 0.35);
}

.offer-shell.offer-creative .offer-lede {
  margin: 12px 0 18px;
  max-width: 42ch;
}

.offer-shell.offer-creative .offer-tile {
  border-radius: 20px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  /* background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(199, 154, 47, 0.06)); */
  align-items: flex-start;
  min-height: 84px;
  position: relative;
  overflow: hidden;
}

.offer-shell.offer-creative .offer-tile::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -32px;
  width: 120px;
  height: 120px;
  /* background: radial-gradient(circle, rgba(199, 154, 47, 0.18), transparent 65%); */
  opacity: 0.7;
}

.offer-shell.offer-creative .offer-tile p {
  font-weight: 600;
}

.offer-icon.tone-teal {
  --offer-accent: #8A6512;
  --offer-accent-soft: rgba(199, 154, 47, 0.2);
}

.offer-icon.tone-peach {
  --offer-accent: #c07d65;
  --offer-accent-soft: rgba(207, 160, 144, 0.28);
}

.offer-icon.tone-brown {
  --offer-accent: #6a4f45;
  --offer-accent-soft: rgba(163, 121, 107, 0.26);
}

.site-footer {
  position: relative;
  background-color: #000;
  color: #ffffff;
  padding: 32px 0 24px;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer::before {
  background: url("img/footer.png") center center / cover no-repeat;
  opacity: 0.17;
}

.site-footer::after {
  background: rgba(0, 0, 0, 0.74);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 78px;
  width: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  background: rgba(199, 154, 47, 0.45);
  transform: translateY(-2px);
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-subscribe input {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 10px 14px;
  min-width: 220px;
  outline: none;
  font-family: var(--font-sans);
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-subscribe button {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  background: var(--btn-gradient);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-subscribe button:hover {
  background: var(--btn-gradient);
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 22px 0 26px;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  opacity: 0.9;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0.9;
}

.footer-contact i {
  margin-top: 2px;
}

.footer-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.92rem;
  opacity: 0.9;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-12px) translateX(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-orb,
  .about-orbit {
    animation: none;
  }

  .about-image {
    transition: none;
  }
}

.page-hero {
  background: linear-gradient(130deg, rgba(199, 154, 47, 0.12), rgba(225, 193, 181, 0.2));
  border-radius: 28px;
  padding: 36px 42px;
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 18px 40px rgba(41, 33, 32, 0.08);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 12px;
  color: var(--teal-dark);
}

.page-hero p {
  margin: 0;
  font-size: 1.05rem;
  max-width: 640px;
}

.treatment-section {
  position: relative;
}

.treatment-grid {
  margin-top: 24px;
}

.treatment-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(41, 33, 32, 0.14);
}

.treatment-image-wrap {
  overflow: hidden;
}

.treatment-image-link {
  display: block;
  text-decoration: none;
}

.treatment-image {
  width: 100%;
  height: 144% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-image {
  transform: scale(1.06);
}

.treatment-body {
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.treatment-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.treatment-card .btn {
  border: 1px solid rgba(199, 154, 47, 0.45);
  color: var(--white);
  background: var(--btn-gradient);
  padding: 10px 18px;
}

.treatment-card:hover .btn {
  background: var(--btn-gradient);
  filter: brightness(0.95);
  color: var(--white);
  border-color: rgba(9, 92, 66, 0.6);
}

.home-main {
  max-width: none;
  padding: 0;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  height: 72vh;
  min-height: 420px;
  background: #0f1917;
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(41, 33, 32, 0.55), rgba(41, 33, 32, 0.1));
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 47, 0.4);
  background: rgba(252, 253, 253, 0.9);
  color: var(--charcoal);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(41, 33, 32, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
  outline: none;
}

.carousel-arrow.prev {
  left: 24px;
}

.carousel-arrow.next {
  right: 24px;
}

.hero-overlay {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  padding: 28px 32px;
  background: rgba(252, 253, 253, 0.9);
  border-radius: 26px;
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 24px 60px rgba(41, 33, 32, 0.2);
  backdrop-filter: blur(10px);
  z-index: 2;
  display: none;
}

.hero-overlay.is-active {
  display: block;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.4), rgba(225, 193, 181, 0.4));
  z-index: -1;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 0 0 12px;
}

.hero-overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 14px;
  color: var(--charcoal);
}

.hero-subtitle {
  margin: 0 0 22px;
  font-size: 1.05rem;
  color: rgba(41, 33, 32, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--btn-gradient);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(199, 154, 47, 0.3);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--btn-gradient);
  filter: brightness(0.95);
  transform: translateY(-1px);
  outline: none;
}

.btn.ghost {
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--btn-gradient) border-box;
  border: 1px solid transparent;
  color: var(--charcoal);
  outline: none;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--btn-gradient);
  color: var(--white);
}

@media (max-width: 960px) {
  :root {
    --header-height: 80px;
  }

  .nav-container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
  }

  .logo {
    height: 68px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-carousel {
    height: 60vh;
    min-height: 360px;
  }

  .hero-overlay {
    position: absolute;
    left: 50%;
    right: auto;
    top: 18%;
    transform: translateX(-50%);
    margin: 0;
    max-width: 640px;
    width: calc(100% - 32px);
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow.prev {
    left: 12px;
  }

  .carousel-arrow.next {
    right: 12px;
  }
}

@media (max-width: 1045px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

  .nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 88vw);
    background: var(--white);
    padding: 90px 20px 24px;
    margin-left: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -16px 0 32px rgba(0, 0, 0, 0.45);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-mobile.is-open {
    transform: translateX(0);
  }

  .nav-mobile .nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px 18px;
    width: 100%;
  }

  .nav-mobile .nav-list > li {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(41, 33, 32, 0.08);
  }

  .nav-mobile .nav-list > li > .nav-link,
  .nav-mobile .nav-item-row .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-mobile .nav-item-row {
    width: 100%;
  }

  .nav-mobile .nav-link,
  .nav-mobile .nav-list button {
    color: var(--charcoal);
  }

  .nav-mobile .chev {
    color: var(--charcoal);
  }

  .nav-mobile .nav-link:hover,
  .nav-mobile .nav-list button:hover,
  .nav-mobile .nav-link:focus-visible,
  .nav-mobile .nav-list button:focus-visible {
    color: var(--charcoal);
    background: rgba(199, 154, 47, 0.12);
  }


  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-mobile .dropdown {
    position: static;
    transform: none;
    padding-top: 6px;
    display: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-mobile .dropdown-card {
    min-width: 100%;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-mobile .submenu {
    position: static;
    padding-left: 0;
    transform: none;
    margin-top: 8px;
    display: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-mobile .submenu-card {
    width: 100%;
    min-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-mobile .dropdown-title,
  .nav-mobile .submenu-title {
    display: none;
  }

  .nav-mobile .dropdown-list {
    padding-left: 6px;
  }

  .nav-mobile .submenu-list {
    padding-left: 12px;
  }

  .nav-mobile .dropdown-list button,
  .nav-mobile .submenu-list a,
  .nav-mobile .submenu-link {
    white-space: normal;
  }

  .nav-mobile .dropdown-toggle {
    display: inline-flex;
    border-color: rgba(199, 154, 47, 0.35);
    color: var(--charcoal);
  }

  .nav-mobile .dropdown-toggle::after {
    display: none;
  }

  .nav-mobile .has-dropdown.open > .dropdown {
    display: block;
  }

  .nav-mobile .has-submenu.open > .submenu {
    display: block;
  }
}

@media (max-width: 992px) {
  .about-card {
    border-radius: 24px;
  }

  .about-content {
    border-left: none;
    border-top: 1px solid rgba(199, 154, 47, 0.12);
    padding: 48px 28px 32px;
  }

  .about-content::before {
    width: 72px;
    height: 6px;
    left: 24px;
    top: 22px;
  }
}

@media (max-width: 768px) {
  .section-space {
    padding: 60px 0;
  }

  .offer-shell.offer-creative {
    padding: 22px;
  }

  .offer-content-wide {
    padding: 22px;
  }

  .about-media,
  .about-image-wrap {
    min-height: 260px;
  }

  .about-content {
    padding: 44px 22px 28px;
  }

  .about-content::before {
    width: 64px;
    left: 20px;
    top: 18px;
  }

  .services-head {
    text-align: center;
  }

  .service-card {
    padding: 18px 18px;
    gap: 12px;
  }

  .service-card h3 {
    font-size: 0.98rem;
  }

  .services-visual,
  .services-image {
    min-height: 260px;
  }

  .stat-card {
    padding: 22px 16px;
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .offer-head {
    text-align: center;
  }

  .offer-shell {
    grid-template-columns: 1fr;
  }

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

  .offer-visual-frame,
  .offer-image {
    min-height: 190px;
  }

  .offer-section .row.align-items-stretch > .col-12.col-lg-6:first-child {
    display: block;
  }

  .offer-section .row.align-items-stretch > .col-12.col-lg-6:first-child .offer-visual-frame {
    width: 100%;
    margin-right: 0;
  }

  .offer-float-card {
    right: 12px;
    bottom: 12px;
  }

  .site-footer {
    padding: 56px 0 22px;
  }

  .footer-top {
    align-items: flex-start;
  }

  .footer-subscribe {
    width: 100%;
    justify-content: space-between;
  }

  .footer-subscribe input {
    min-width: 0;
    flex: 1;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .footer-map iframe {
    height: 190px;
  }

  .nav-list {
    gap: 10px 14px;
  }

  .nav-link,
  .nav-list button {
    font-size: 0.92rem;
  }

  .page-hero {
    padding: 26px 22px;
  }

  .treatment-image {
    height: 210px;
  }

  .treatment-body {
    padding: 16px 18px 20px;
  }

  .hero-overlay {
    left: 50%;
    right: auto;
    top: 16%;
    transform: translateX(-50%);
    margin: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .nav-container {
    padding: 4px 16px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .logo {
    height: 66px;
  }

  .page-hero {
    padding: 28px 24px;
  }

  .about-media,
  .about-image-wrap {
    min-height: 230px;
  }

  .about-content {
    padding: 40px 20px 26px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .service-icon i {
    font-size: 1.15rem;
  }

  .services-visual,
  .services-image {
    min-height: 210px;
  }

  .offer-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .offer-icon i {
    font-size: 1rem;
  }

  .offer-visual-frame,
  .offer-image {
    min-height: 220px;
  }

  .treatment-image {
    height: 190px;
  }

  .site-footer {
    padding: 48px 0 20px;
  }

  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }

  .footer-subscribe button {
    width: 100%;
  }

  .footer-links,
  .footer-contact {
    gap: 6px;
  }

  .hero-overlay {
    padding: 22px;
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-overlay {
    position: absolute;
    left: 50%;
    top: 16%;
    transform: translateX(-50%);
    margin: 0;
    max-width: 520px;
    width: calc(100% - 32px);
    padding: 18px 18px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-list {
    gap: 8px 10px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-carousel {
    height: 52vh;
    min-height: 300px;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .hero-eyebrow {
    letter-spacing: 1px;
  }
}

@media (min-width: 1200px) {
  .nav-container {
    max-width: 1280px;
    padding: 4px 32px;
    gap: 56px;
  }

  main {
    max-width: 1200px;
  }

  .hero-overlay {
    right: 10%;
  }

  .carousel-arrow {
    width: 52px;
    height: 52px;
  }
}
.submenu-link {
  flex: 1;
  font-size: 0.95rem;
  text-decoration: none;
  color: inherit;
}
html,
body {
  overflow-x: hidden;
}

.about-main {
  max-width: none;
  margin: 0;
  padding: 0 0 60px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 0 84px;
  background:
    linear-gradient(120deg, rgba(252, 253, 253, 0.72), rgba(225, 193, 181, 0.34)),
    url("img/about-us.webp") center/cover no-repeat;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(1px);
  animation: orbFloat 10s ease-in-out infinite;
}

.about-hero::before {
  width: 280px;
  height: 280px;
  left: -140px;
  top: -120px;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.5), rgba(199, 154, 47, 0));
}

.about-hero::after {
  width: 240px;
  height: 240px;
  right: -120px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(225, 193, 181, 0.65), rgba(225, 193, 181, 0));
  animation-delay: -3s;
}

.about-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(252, 253, 253, 0.8);
  border: 1px solid rgba(199, 154, 47, 0.3);
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 14px;
  color: var(--teal-dark);
}

.about-hero-subtitle {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(31, 25, 24, 0.78);
}

.about-content.about-content-left {
  border-left: none;
  border-right: 1px solid rgba(199, 154, 47, 0.12);
  padding: 32px 54px 32px 36px;
}

.about-content.about-content-left::before {
  left: auto;
  right: 30px;
}

.about-showcase {
  padding: 65px 0;
  background: #ffffff;
  /* position: relative;
  overflow: hidden; */
  /* background: linear-gradient(120deg, rgba(252, 253, 253, 0.92), rgba(252, 253, 253, 0.86)),
    url("img/bg-2.webp") center/cover no-repeat; */
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 15% 20%, rgba(199, 154, 47, 0.14), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(225, 193, 181, 0.2), transparent 60%); */
  pointer-events: none;
}

.about-orbit {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.35), rgba(199, 154, 47, 0));
  opacity: 0.85;
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}

.about-orbit.orbit-1 {
  width: 160px;
  height: 160px;
  top: 18%;
  left: -60px;
  animation-delay: -1s;
}

.about-orbit.orbit-2 {
  width: 220px;
  height: 220px;
  bottom: -90px;
  right: 12%;
  background: radial-gradient(circle, rgba(225, 193, 181, 0.5), rgba(225, 193, 181, 0));
  animation-delay: -4s;
}

.about-orbit.orbit-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: -40px;
  background: radial-gradient(circle, rgba(163, 121, 107, 0.45), rgba(163, 121, 107, 0));
  animation-delay: -6s;
}

.about-showcase .container {
  position: relative;
  z-index: 1;
}

.about-showcase-card {
  /* background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(41, 33, 32, 0.16); */
  /* padding: 28px; */
}

.about-showcase-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}

.about-showcase-content p {
  margin: 0 0 14px;
  color: rgba(41, 33, 32, 0.78);
}

.about-media-grid {
  display: grid;
  gap: 16px;
}

.media-card {
  background: var(--white);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.12);
}

.media-card.large {
  height: 300px;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.media-card.small {
  height: 160px;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.section-head {
  margin-bottom: 26px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
  color: var(--charcoal);
}

.feature-section {
  position: relative;
}

.feature-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  padding: 24px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.14), rgba(252, 253, 253, 0.96));
  box-shadow: 0 26px 46px rgba(41, 33, 32, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.22), rgba(225, 193, 181, 0.2));
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.feature-icon i {
  font-size: 1.35rem;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: rgba(41, 33, 32, 0.7);
  font-size: 0.95rem;
}

.promise-layout {
  position: relative;
}

.promise-intro {
  background: rgba(252, 253, 253, 0.9);
  border-radius: 26px;
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 24px 50px rgba(41, 33, 32, 0.12);
  padding: 30px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promise-intro::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.25), rgba(199, 154, 47, 0));
  opacity: 0.9;
}

.promise-lede {
  margin: 0 0 18px;
  color: rgba(41, 33, 32, 0.78);
}

.promise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 154, 47, 0.12);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.88rem;
}

.promise-badge i {
  font-size: 1rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}

.promise-card {
  --accent: #8A6512;
  --accent-soft: rgba(199, 154, 47, 0.2);
  position: relative;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  padding: 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
  --offset: 0px;
  transform: translateY(var(--offset));
}

.promise-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -50px;
  right: -40px;
  background: radial-gradient(circle, var(--accent-soft), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.promise-card.offset {
  --offset: 14px;
}

.promise-card:hover {
  transform: translateY(calc(var(--offset) - 6px)) scale(1.02);
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.12), rgba(252, 253, 253, 0.96));
  box-shadow: 0 26px 44px rgba(41, 33, 32, 0.14);
}

.promise-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}

.promise-icon i {
  font-size: 1.25rem;
}

.promise-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.promise-card p {
  margin: 0;
  color: rgba(41, 33, 32, 0.72);
  font-size: 0.95rem;
}

.promise-card.tone-1 {
  --accent: #1d8c74;
  --accent-soft: rgba(199, 154, 47, 0.22);
}

.promise-card.tone-2 {
  --accent: #8a5f52;
  --accent-soft: rgba(207, 160, 144, 0.3);
}

.promise-card.tone-3 {
  --accent: #2b6b60;
  --accent-soft: rgba(199, 154, 47, 0.16);
}

.promise-card.tone-4 {
  --accent: #6a4f45;
  --accent-soft: rgba(163, 121, 107, 0.3);
}

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

  .promise-card.offset {
    --offset: 0px;
  }
}

@media (max-width: 768px) {
  .promise-intro {
    padding: 24px;
  }

  .promise-grid {
    gap: 14px;
  }
}

.mission-vision {
  position: relative;
  background:
    linear-gradient(180deg, rgba(12, 20, 31, 0.42), rgba(12, 20, 31, 0.42)),
    url("img/vision.webp") center/cover no-repeat;
}

.mission-vision::before {
  content: none;
}

.mission-vision .container {
  position: relative;
  z-index: 1;
}

.mission-vision {
  overflow: hidden;
}

.mission-vision::after {
  content: none;
}

.mv-hero {
  text-align: center;
  margin-bottom: 28px;
}

.mv-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 10px;
  color: rgba(252, 253, 253, 0.96);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.mv-hero p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(252, 253, 253, 0.84);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.mv-row .mv-panel {
  height: 100%;
}

.mv-logo-card {
  --accent: #8A6512;
  --accent-soft: rgba(199, 154, 47, 0.2);
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px;
  text-align: center;
  transition: transform 0.25s ease;
  transform-origin: center;
  will-change: transform;
}

.mv-logo-card:hover {
  transform: scale(1.06);
}

.mv-logo-card.mission {
  --accent: #8A6512;
  --accent-soft: rgba(199, 154, 47, 0.22);
}

.mv-logo-card.vision {
  --accent: #7a5a50;
  --accent-soft: rgba(207, 160, 144, 0.28);
}

.mv-logo-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 18px 32px rgba(41, 33, 32, 0.16);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-logo-card:hover .mv-logo-icon {
  transform: scale(1.08);
  box-shadow: 0 24px 40px rgba(41, 33, 32, 0.2);
}

.mv-logo-icon i {
  font-size: 3rem;
}

.mv-logo-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(199, 154, 47, 0.35);
}

.mv-logo-card.vision .mv-logo-icon::after {
  border-color: rgba(207, 160, 144, 0.45);
}

.mv-logo-card p {
  margin: 0;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.4px;
}

.mv-panel {
  --accent: #8A6512;
  --accent-soft: rgba(199, 154, 47, 0.2);
  position: relative;
  background: rgba(252, 253, 253, 0.96);
  border-radius: 28px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 22px 46px rgba(41, 33, 32, 0.12);
  padding: 30px 28px 26px;
  overflow: hidden;
}

.mv-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(199, 154, 47, 0.16), transparent 60%);
  opacity: 0.85;
}

.mv-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.mv-panel.mission {
  --accent: #8A6512;
  --accent-soft: rgba(199, 154, 47, 0.24);
}

.mv-panel.vision {
  --accent: #7a5a50;
  --accent-soft: rgba(207, 160, 144, 0.32);
}

.mv-panel > * {
  position: relative;
  z-index: 1;
}

.mv-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.mv-label {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--charcoal);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

.mv-icon i {
  font-size: 1.35rem;
}

.mv-panel p {
  margin: 0;
  color: rgba(41, 33, 32, 0.78);
  font-size: 0.98rem;
}

.mv-footer {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mv-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(41, 33, 32, 0.08);
}

.faq-section {
  position: relative;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(199, 154, 47, 0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  background: var(--white);
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 14px;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 18px 22px;
  color: var(--charcoal);
  background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--teal-dark);
  background: rgba(199, 154, 47, 0.1);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  background: rgba(252, 253, 253, 0.98);
  color: rgba(41, 33, 32, 0.78);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0px;
  background: var(--white);
  color: var(--charcoal);
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

.cta-section::before {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -90px;
}

.cta-section::after {
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  animation-delay: -4s;
}

.cta-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(199, 154, 47, 0.12), rgba(225, 193, 181, 0.22));
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 20px 50px rgba(41, 33, 32, 0.16);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0 0 18px;
}

.btn.light {
  background: var(--btn-gradient);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(199, 154, 47, 0.3);
}

.btn.light:hover,
.btn.light:focus-visible {
  background: var(--btn-gradient);
  filter: brightness(0.95);
  color: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

.delay-4 {
  animation-delay: 0.32s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .about-content.about-content-left {
    border-right: none;
  }

  .about-content.about-content-left::before {
    right: auto;
    left: 24px;
  }

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

  .mv-logo-card {
    min-height: 0;
    padding: 6px;
  }

  .mv-logo-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
  }

  .mv-logo-icon i {
    font-size: 2.2rem;
  }

  .about-showcase-card {
    padding: 24px;
  }

  .offer-shell {
    grid-template-columns: 1fr;
  }

  .offer-content-block {
    order: 1;
  }

  .offer-visual-block {
    order: 2;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 70px;
  }

  .feature-card {
    padding: 20px;
  }

  .mv-panel {
    padding: 24px;
  }

  .media-card.large {
    height: 240px;
  }

  .media-card.small {
    height: 140px;
  }

  .cta-card {
    padding: 32px 22px;
  }

  .about-content.about-content-left::before {
    left: 20px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 70px 0 60px;
  }

  .about-hero-subtitle {
    font-size: 0.98rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .mv-hero p {
    font-size: 0.98rem;
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 70px 0 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero::before,
  .about-hero::after,
  .cta-section::before,
  .cta-section::after,
  .reveal-up {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

/* About page: keep image height closer to content height */
.about-main .about-media,
.about-main .about-image-wrap {
  min-height: 0;
}

.about-main .about-image {
  height: 100%;
}

.contact-main {
  max-width: none;
  margin: 0;
  padding: 0 0 120px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 0 84px;
  background:
    linear-gradient(120deg, rgba(12, 20, 31, 0.34), rgba(12, 20, 31, 0.34)),
    url("img/contact-us.jpg") center/cover no-repeat;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.85;
  animation: orbFloat 11s ease-in-out infinite;
}

.contact-hero::before {
  width: 260px;
  height: 260px;
  left: -120px;
  top: -90px;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.5), rgba(199, 154, 47, 0));
}

.contact-hero::after {
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(225, 193, 181, 0.6), rgba(225, 193, 181, 0));
  animation-delay: -4s;
}

.contact-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(252, 253, 253, 0.8);
  border: 1px solid rgba(199, 154, 47, 0.3);
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 14px;
  color: rgba(252, 253, 253, 0.98);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.contact-hero-subtitle {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(252, 253, 253, 0.86);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.info-card {
  background: var(--white);
  border-radius: 22px;
  border: 2px solid rgba(177, 132, 25, 0.7);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  padding: 24px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.12), rgba(252, 253, 253, 0.96));
  border-color: rgba(240, 217, 138, 0.95);
  box-shadow: 0 26px 44px rgba(41, 33, 32, 0.14);
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.22), rgba(225, 193, 181, 0.2));
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.info-icon i {
  font-size: 1.35rem;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: rgba(41, 33, 32, 0.7);
}

.info-subtext {
  margin-top: 6px;
  font-weight: 500;
}

.contact-form-section {
  position: relative;
}

.contact-form-intro {
  background: rgba(252, 253, 253, 0.85);
  border: 2px solid rgba(177, 132, 25, 0.72);
  border-radius: 26px;
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 20px 42px rgba(41, 33, 32, 0.1);
}

.contact-form-intro p {
  color: rgba(41, 33, 32, 0.78);
}

.contact-mini {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.contact-mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(199, 154, 47, 0.08);
}

.contact-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(199, 154, 47, 0.18);
  color: var(--teal-dark);
  flex-shrink: 0;
}

.contact-mini-item h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-mini-item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(41, 33, 32, 0.7);
}

.contact-form-card {
  background: var(--white);
  border-radius: 26px;
  border: 2px solid rgba(177, 132, 25, 0.72);
  box-shadow: 0 22px 46px rgba(41, 33, 32, 0.12);
  padding: 28px;
  height: 100%;
}

.contact-form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(199, 154, 47, 0.25);
  padding: 12px 14px;
  font-family: var(--font-sans);
  background: rgba(252, 253, 253, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(199, 154, 47, 0.12);
}

.form-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-note {
  margin: 0;
  color: rgba(41, 33, 32, 0.7);
  font-size: 0.95rem;
}

.contact-map .map-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 22px 44px rgba(41, 33, 32, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 70px;
  }

  .contact-form-intro,
  .contact-form-card {
    padding: 22px;
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 70px 0 60px;
  }

  .contact-hero-subtitle {
    font-size: 0.98rem;
  }

  .contact-map iframe {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero::before,
  .contact-hero::after {
    animation: none;
  }
}

/* Titanium FUE page */
.titanium-main {
  max-width: none;
  margin: 0;
  padding: 0 0 120px;
}

.titanium-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 0 90px;
  background: linear-gradient(120deg, rgba(199, 154, 47, 0.22), rgba(225, 193, 181, 0.3));
}

.titanium-hero::before,
.titanium-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.85;
  animation: orbFloat 12s ease-in-out infinite;
}

.titanium-hero::before {
  width: 240px;
  height: 240px;
  left: -110px;
  top: -90px;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.5), rgba(199, 154, 47, 0));
}

.titanium-hero::after {
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(225, 193, 181, 0.6), rgba(225, 193, 181, 0));
  animation-delay: -4s;
}

.titanium-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.titanium-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin: 0 0 14px;
  color: var(--teal-dark);
}

.titanium-hero-subtitle {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(41, 33, 32, 0.78);
}

.titanium-hero-media {
  position: relative;
  margin: 28px auto 0;
  max-width: 900px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 26px 54px rgba(41, 33, 32, 0.18);
}

.titanium-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(199, 154, 47, 0.2), rgba(41, 33, 32, 0.1));
  pointer-events: none;
}

.titanium-hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.titanium-hero-media:hover .titanium-hero-image {
  transform: scale(1.04);
}

.titanium-intro-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 22px 48px rgba(41, 33, 32, 0.15);
  min-height: 0;
  /* height: clamp(220px, 28vw, 280px); */
  height : clamp(220px, 32vw, 373px);
}

.titanium-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.18), rgba(41, 33, 32, 0.1));
  pointer-events: none;
}

.titanium-intro-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.titanium-intro-media:hover .titanium-intro-image {
  transform: scale(1.04);
}

.titanium-intro-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 154, 47, 0.2);
  color: var(--teal-dark);
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(41, 33, 32, 0.18);
}

.titanium-intro-content p {
  margin: 14px 0 0;
  color: rgba(41, 33, 32, 0.78);
}

.titanium-benefit-card {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 36px rgba(41, 33, 32, 0.08);
  padding: 22px 20px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.titanium-benefit-card.benefit-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.titanium-benefit-card.benefit-inline .benefit-icon {
  margin-bottom: 0;
}

.titanium-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(41, 33, 32, 0.14);
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.12), rgba(252, 253, 253, 0.96));
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(199, 154, 47, 0.2);
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.benefit-icon i {
  font-size: 1.25rem;
}

.titanium-benefit-card p {
  margin: 0;
  color: rgba(41, 33, 32, 0.75);
}

.benefits-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 47, 0.2);
  box-shadow: 0 26px 54px rgba(41, 33, 32, 0.16);
  min-height: 320px;
  background: linear-gradient(130deg, rgba(199, 154, 47, 0.18), rgba(225, 193, 181, 0.26));
}

.benefits-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(199, 154, 47, 0.2), rgba(41, 33, 32, 0.12));
  pointer-events: none;
}

.benefits-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.benefits-visual:hover .benefits-image {
  transform: scale(1.04);
}

.benefits-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 154, 47, 0.2);
  color: var(--teal-dark);
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(41, 33, 32, 0.18);
}

.benefits-badge.secondary {
  left: auto;
  right: 16px;
  bottom: 56px;
  background: rgba(255, 255, 255, 0.9);
  color: #6a4f45;
}

.benefits-content .section-title {
  margin-bottom: 18px;
}

.benefits-list {
  display: grid;
  gap: 14px;
}

.benefit-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(199, 154, 47, 0.18);
  box-shadow: 0 18px 34px rgba(41, 33, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.benefit-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(41, 33, 32, 0.14);
  background: linear-gradient(140deg, rgba(199, 154, 47, 0.12), rgba(252, 253, 253, 0.96));
}

.benefit-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(199, 154, 47, 0.2);
  color: var(--teal-dark);
}

.benefit-panel-icon i {
  font-size: 1.25rem;
}

.benefit-panel h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
}

.benefit-panel p {
  margin: 0;
  color: rgba(41, 33, 32, 0.75);
}

.titanium-form-card h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  color: var(--charcoal);
}

.titanium-form-card p {
  color: rgba(41, 33, 32, 0.78);
  margin: 0 0 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  z-index: 1200;
  text-decoration: none;
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 1.6rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
  color: #fff;
  outline: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.26);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

.slim-form-card {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .titanium-hero {
    padding: 80px 0 70px;
  }

  .titanium-hero-image {
    height: 260px;
  }

  .titanium-intro-media,
  .titanium-intro-image {
    min-height: 0;
  }

  .titanium-intro-media {
    height: 398px;
  }

  .benefits-visual,
  .benefits-image {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .titanium-hero {
    padding: 70px 0 60px;
  }

  .titanium-hero-subtitle {
    font-size: 0.98rem;
  }

  .titanium-intro-media {
    height: 263px;
    border-radius: 22px;
  }

  .titanium-intro-chip {
    left: 12px;
    bottom: 12px;
    padding: 7px 12px;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .titanium-hero::before,
  .titanium-hero::after {
    animation: none;
  }
}
