:root {
  --bg: #fbf9fc;
  --bg-soft: #f5eff7;
  --surface: #ffffff;
  --surface-2: #fcfbfd;
  --line: #e6dce9;
  --line-strong: #d8c8de;
  --text: #201725;
  --muted: #6f6575;
  --muted-2: #938899;

  --brand: #492849;
  --brand-2: #6b436f;
  --brand-3: #8b6890;
  --brand-soft: #efe7f1;
  --gold: #c7a665;
  --gold-soft: #f3ead8;

  --success: #2f8f75;
  --shadow: 0 18px 45px rgba(42, 24, 48, .10);
  --shadow-strong: 0 26px 80px rgba(42, 24, 48, .16);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(900px 600px at 110% -10%, rgba(73, 40, 73, .08), transparent 58%),
    radial-gradient(700px 520px at -10% 8%, rgba(199, 166, 101, .10), transparent 60%),
    linear-gradient(180deg, #fcfbfd 0%, #f9f6fb 48%, #ffffff 100%);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(48px);
}

body::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 220px;
  background: radial-gradient(circle, rgba(73, 40, 73, .13), transparent 70%);
}

body::after {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 40px;
  background: radial-gradient(circle, rgba(199, 166, 101, .12), transparent 68%);
}

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

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select,
textarea {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
.brand-title strong,
.btn,
.badge,
.chip,
.pill {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -.03em
}

p {
  margin: 0 0 1rem;
  color: var(--muted)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(73, 40, 73, .08);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(73, 40, 73, .35), rgba(199, 166, 101, .35), transparent);
  opacity: .8;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 36px rgba(42, 24, 48, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0
}

.brand-logo {
  max-width: 55px;
  object-fit: contain;
  padding: 6px;
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #f8f3fa);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(42, 24, 48, .08);
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.brand-title strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand)
}

.brand-title span {
  font-size: .88rem;
  color: var(--muted)
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav a {
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
  position: relative;
  transition: .22s ease;
}

.nav a:hover {
  background: rgba(73, 40, 73, .05);
  color: var(--brand)
}

.nav a.active {
  color: var(--brand);
  background: linear-gradient(180deg, rgba(73, 40, 73, .08), rgba(73, 40, 73, .05));
  border: 1px solid rgba(73, 40, 73, .08);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 14px;
  bottom: 0px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: .9;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1)
}

.nav .btn {
  margin-inline-start: 8px;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(42, 24, 48, .06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  margin: 4px auto;
  border-radius: 999px
}


.split-img {
  width: 100%;
  height: 368px;
  border-radius: 20px;
  object-fit: fill;
}

.arrow {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 5px;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(73, 40, 73, .18);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(199, 166, 101, .28), transparent 55%),
    linear-gradient(135deg, #5a355f, #492849 58%, #3d1f43);
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 14px 36px rgba(73, 40, 73, .20);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(73, 40, 73, .24);
  filter: saturate(1.03)
}

.btn:active {
  transform: translateY(0)
}

.btn-sm {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .95rem
}

.btn-ghost {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(42, 24, 48, .06);
}

.btn-ghost:hover {
  background: var(--brand-soft);
  box-shadow: 0 14px 30px rgba(42, 24, 48, .10)
}

.badge,
.pill,
.chip,
.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
}

.badge,
.eyebrow,
.pill,
.chip,
.tag {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(42, 24, 48, .05);
  font-size: 14px;
}

.eyebrow {
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .82));
  width: fit-content;
}

.chip {
  cursor: pointer;
  color: var(--muted);
  transition: .18s ease
}

.chip:hover {
  background: var(--brand-soft);
  color: var(--brand)
}

.chip.active {
  background: linear-gradient(180deg, rgba(73, 40, 73, .09), rgba(199, 166, 101, .09));
  color: var(--brand);
  border-color: rgba(73, 40, 73, .18);
}

.pill {
  font-size: .82rem;
  padding: 7px 11px;
  color: var(--muted)
}

.tag {
  font-size: .84rem;
  padding: 7px 12px;
  color: var(--brand)
}

.hero {
  position: relative;
  padding: 108px 0 58px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(204 194 194 / 38%), rgb(142 90 143 / 20%) 60%, rgb(177 123 123 / 31%)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 380px at 78% 8%, rgba(73, 40, 73, .08), transparent 60%),
    radial-gradient(560px 280px at 22% 22%, rgba(199, 166, 101, .10), transparent 58%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='520' viewBox='0 0 720 520'%3E%3Cpath d='M-40 420C60 320 160 260 280 260s220 60 320 0 180-180 180-180' fill='none' stroke='rgba(73,40,73,0.09)' stroke-width='1.5'/%3E%3Cpath d='M-40 460C60 360 160 300 280 300s220 60 320 0 180-180 180-180' fill='none' stroke='rgba(73,40,73,0.06)' stroke-width='1.5'/%3E%3C/svg%3E") right top/680px auto no-repeat;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center
}

.hero-copy {
  min-width: 0
}

.hero-visual {
  min-width: 0
}

.hero h1 {
  margin: 0;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(110deg, var(--brand) 0%, #6f476f 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  font-size: 1.08rem;
  max-width: 62ch;
  color: #4b474e;

}

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

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px
}

.kpi {
  border-radius: 22px;
  padding: 16px 16px 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.kpi b {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 2px
}

.kpi span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .96rem
}

.bento {
  display: grid;
  grid-template-columns: 1.22fr .96fr;
  grid-template-rows: repeat(3, 128px);
  gap: 14px;
}

.bento-card,
.collection,
.service,
.product,
.gitem,
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bento-card {
  min-height: 0;
}

.bento-card::before,
.collection::before,
.service::before,
.product::before,
.gitem::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .28), transparent 34%);
  opacity: .85;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .7s ease;
  filter: saturate(1.08);
}

.bento-card:hover img {
  transform: scale(1.08)
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(32, 23, 37, .44));
}

.bento-label,
.cover-tag,
.collection-label {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 12px 24px rgba(42, 24, 48, .12);
}

.bento-label {
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  font-weight: 800;
  color: var(--brand)
}

.bento-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 8px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  box-shadow: 0 0 0 4px rgba(73, 40, 73, .10);
  margin-bottom: 4px;
}

.cover-tag {
  top: 14px;
  left: 14px;
  color: var(--brand);
  font-size: .85rem;
  font-weight: 800;
  padding: 9px 12px
}

.cover-tag strong {
  font-weight: 800
}

.b-stands {
  grid-column: 1;
  grid-row: 1 / span 3
}

.b-conf {
  grid-column: 2;
  grid-row: 1
}

.b-av {
  grid-column: 2;
  grid-row: 2
}

.b-gifts {
  grid-column: 2;
  grid-row: 3
}

.section {
  padding: 76px 0;
  position: relative;
  z-index: 1
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px
}

.section h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--brand)
}

.section-head p {
  max-width: 60ch
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 26px;
  align-items: stretch
}

.card {
  padding: 0
}

.card-pad {
  padding: 22px
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--brand)
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(32, 23, 37, .66));
}

.media-card .media-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.media-card .media-text b {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 2px
}

.media-card .media-text span {
  color: rgba(255, 255, 255, .78);
  font-weight: 600
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600
}

.feature-list svg {
  flex: 0 0 18px;
  margin-top: 4px
}

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

.service,
.product,
.collection,
.gitem {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease
}

.service:hover,
.product:hover,
.collection:hover,
.gitem:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--line-strong)
}

.service {
  display: flex;
  flex-direction: column;
  isolation: isolate
}

.service::after,
.product::after,
.collection::after,
.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px 180px at var(--mx, 50%) var(--my, 0%), rgba(73, 40, 73, .10), transparent 55%);
  opacity: 0;
  transition: opacity .22s ease;
}

.service:hover::after,
.product:hover::after,
.collection:hover::after,
.gitem:hover::after {
  opacity: 1
}

.service .cover {
  height: 190px;
  position: relative;
  overflow: hidden
}

.service .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.02);
  transition: transform .8s ease
}

.service:hover .cover img {
  transform: scale(1.08)
}

.service .cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(73, 40, 73, .08), rgba(32, 23, 37, .58))
}

.service .body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1
}

.service .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: -42px 0 14px;
  background: linear-gradient(180deg, #5d3962, #452449);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 12px 28px rgba(42, 24, 48, .18);
}

.service h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--brand)
}

.service p {
  font-size: .98rem
}

.service-foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand);
  font-weight: 800
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.service-arrow {
  font-size: 1.1rem
}

.service>.icon {
  margin: 20px 20px 0
}

.service>h3 {
  padding: 20px 20px 0;
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--brand)
}

.service>.icon+h3 {
  padding-top: 14px
}

.service>p {
  padding: 8px 20px 20px;
  margin: 0;
  color: var(--muted)
}

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

.collection {
  min-height: 230px
}

.collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  filter: saturate(1.05)
}

.collection:hover img {
  transform: scale(1.08)
}

.collection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(32, 23, 37, .68));
}

.collection-label {
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--brand)
}

.collection-label b {
  font-size: 1.04rem
}

.collection-label span {
  font-size: .92rem;
  color: var(--muted)
}

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

.search {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 320px
}

.search input,
.select,
.input,
textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  outline: none;
  box-shadow: 0 8px 18px rgba(42, 24, 48, .04);
}

.select {
  width: auto;
  min-width: 185px;
  font-weight: 700;
  color: var(--brand)
}

textarea {
  min-height: 130px;
  resize: vertical
}

.help {
  font-size: .92rem;
  color: var(--muted-2)
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(73, 40, 73, .10);
  border-color: rgba(73, 40, 73, .26)
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

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

.product {
  display: flex;
  flex-direction: column;
  isolation: isolate
}

.product .thumb {
  height: 220px;
  background: #f2edf4;
  overflow: hidden
}

.product .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  transform: scale(1.02);
  object-position: top;
}

.product:hover .thumb img {
  transform: scale(1.08)
}

.product .body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1
}

.product .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px
}

.product .meta span {
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted)
}

.product h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--brand)
}

.product p {
  font-size: .96rem;
  margin-bottom: 10px
}

.product .actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px
}

.product .actions a {
  flex: 1
}

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

.gitem {
  min-height: 240px
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  filter: saturate(1.04)
}

.gitem:hover img {
  transform: scale(1.06)
}

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

.icon-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%
}

.icon-card b {
  font-size: 1.02rem;
  color: var(--brand)
}

.icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff, #f7f0f9);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(42, 24, 48, .08);
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px
}

.timeline li {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  background: linear-gradient(180deg, #5d3962, #452449);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(73, 40, 73, .18);
}

.tcopy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px
}

.tcopy b {
  color: var(--brand);
  font-size: 1rem
}

.tcopy span {
  color: var(--muted);
  font-weight: 600
}

.faq {
  display: grid;
  gap: 12px
}

.faq details {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0 18px;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
  color: var(--brand);
  position: relative;
  padding-right: 32px;
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  width: 100%;
  max-width: 25px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "−"
}

.faq-body {
  padding: 0 0 18px;
  color: var(--muted);
  font-weight: 600
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.show {
  display: flex
}

.backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 14, 25, .48);
  backdrop-filter: blur(10px)
}

.sheet {
  position: relative;
  width: min(980px, 100%);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 36px 120px rgba(22, 14, 25, .24);
}

.sheet-inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr
}

.sheet img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover
}

.sheet .content {
  padding: 22px
}

.sheet .content h3 {
  margin: 12px 0 10px;
  font-size: 1.7rem;
  color: var(--brand)
}

.sheet .content p {
  margin-bottom: 14px
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--brand);
  box-shadow: 0 10px 22px rgba(42, 24, 48, .08);
}

.form {
  display: grid;
  gap: 14px
}

.field {
  display: grid;
  gap: 8px
}

.label {
  font-weight: 800;
  color: var(--brand)
}

.cta {
  padding: 30px 0 84px
}

.cta .card {
  padding: 28px;
  background:
    radial-gradient(760px 280px at 92% 8%, rgba(199, 166, 101, .16), transparent 60%),
    radial-gradient(520px 200px at 0% 100%, rgba(73, 40, 73, .16), transparent 58%),
    linear-gradient(135deg, rgba(73, 40, 73, .98), rgba(58, 28, 63, .98));
  color: #fff;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(42, 24, 48, .24);
}

.cta .card::before {
  display: none
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
  color: #fff
}

.cta p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82)
}

.cta .btn-ghost {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-color: rgba(255, 255, 255, .16)
}

.cta .btn-ghost:hover {
  background: rgba(255, 255, 255, .16)
}

.footer {
  background: linear-gradient(180deg, #18111b, #0f0b11);
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
}

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

.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.foot-logo {
  height: 55px;
  width: auto;
  opacity: .96
}

.foot-meta {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.foot-meta b {
  color: #fff
}

.footer a {
  color: rgba(255, 255, 255, .72);
  font-weight: 600
}

.footer a:hover {
  color: #fff
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* utility tweaks for inline card services on about page */
.service .icon+h3 {
  margin-top: 0
}

._ad_about h1 {
  max-width: initial !important;
}

._ad_about_card_img {
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.service-img {
  overflow: hidden;
  padding: 8px 20px 8px;
  border-radius: 10px;
}

.service-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.service-img:hover img {
  transform: scale(1.08);
}

/* dropdown */
.dropdown-content {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--esac-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .55rem;
  display: none;
  z-index: 2000;
  top: 37px;
}


.dropdown-content a {
  display: block;
  padding: .6rem .75rem;
  border-radius: 12px;
  font-size: .92rem;
}

.dropdown-content a:hover {
  background: rgba(42, 72, 94, .06);
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown {
  position: relative;
}

.nav .dropbtn {
  background: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
  position: relative;
  transition: .22s ease;
  border: none;
  display: flex;
  width: 100%;
}

.nav .dropbtn:hover {
  background: rgba(73, 40, 73, .05);
  color: var(--brand)
}

.nav .dropbtn.active {
  color: var(--brand);
  background: linear-gradient(180deg, rgba(73, 40, 73, .08), rgba(73, 40, 73, .05));
  border: 1px solid rgba(73, 40, 73, .08);
}

.nav .dropbtn::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 14px;
  bottom: 0px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: .9;
}

.nav .dropbtn:hover::after,
.nav .dropbtn.active::after {
  transform: scaleX(1)
}

._ad_contact_section .split {
  align-items: start;
}

._ad_contact_section ._ad_second_one {
  position: sticky;
  top: 85px;
}

@media (max-width: 1000px) and (min-width: 820px) {
  .nav a {
    padding: 5px 8px;
    font-size: 13px;
  }

  .nav .dropbtn {
    padding: 5px;
    font-size: 13px;
  }

  .nav {
    gap: 2px;
  }

  .brand-title strong {
    font-size: 14px
  }

  .brand-title span {
    font-size: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    max-width: 50px;
  }

  .dropdown-content {
    top: 30px;
  }

}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 170px)
  }

  .b-stands {
    grid-column: 1 / -1;
    grid-row: 1
  }

  .b-conf {
    grid-column: 1;
    grid-row: 2
  }

  .b-av {
    grid-column: 2;
    grid-row: 2
  }

  .b-gifts {
    display: none
  }

  .collections {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr
  }

  .split-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: fill;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .hero-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .sheet-inner {
    grid-template-columns: 1fr
  }

  .sheet img {
    min-height: 260px
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .gallery>* {
    grid-column: auto !important
  }
}

@media (max-width: 820px) {
  .dropdown-content {
    position: static;
    min-width: auto;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    margin-top: .15rem;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }


  .dropdown-content a {
    padding: .7rem .9rem;
    border-radius: 12px;
  }

  .nav-toggle {
    display: block
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    box-shadow: 0 20px 48px rgba(42, 24, 48, .14);
  }

  .nav.show {
    display: flex
  }

  .nav .btn {
    margin: 8px 0 0
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column
  }
}

@media (max-width: 767px) {
  ._ad_core {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px))
  }

  .hero {
    padding: 94px 0 42px
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero-cards,
  .grid,
  .products,
  .collections,
  .icon-grid {
    grid-template-columns: 1fr
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 160px 160px
  }

  .b-stands {
    grid-column: 1;
    grid-row: 1
  }

  .b-conf {
    grid-column: 1;
    grid-row: 2
  }

  .b-av {
    grid-column: 1;
    grid-row: 3
  }

  .gallery {
    grid-template-columns: 1fr
  }

  .section {
    padding: 62px 0
  }

  .kpi {
    padding: 15px
  }

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

  .select {
    width: 100%
  }

  .product .actions {
    flex-direction: column
  }

}

@media(max-width:576px) {
  .section h2 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  ._ad_team {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  ._ad_required {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  ._ad_events_aparts {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  ._ad_guides {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  ._ad_core {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }
}