/* ==========================================================================
   Haus of AB - Classic Luxury Atelier Theme
   1. Design tokens
   2. Base & typography
   3. Reusable components (panels, buttons, labels, dividers, cards)
   4. Layout sections
   5. Animations
   6. Responsive overrides
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  /* Dark editorial navy / near-black */
  --bg-primary:    #070B14;
  --bg-dark:       #05080F;
  --panel:         #0B111C;
  --panel-alt:     #0D1421;
  --panel-raise:   #111A29;

  /* Golds */
  --gold:          #C9A227;
  --gold-bright:   #E8C874;
  --gold-soft:     #C9A961;
  --gold-dark:     #8B6F2B;
  --gold-gradient: linear-gradient(135deg, #E8C874, #C9A961, #8B6F2B);
  --gold-line:     linear-gradient(90deg, rgba(201,169,97,0) 0%, #C9A961 50%, rgba(201,169,97,0) 100%);
  --gold-hair:     rgba(201, 169, 97, .22);
  --gold-hair-2:   rgba(201, 169, 97, .12);

  /* Neutrals */
  --ivory:         #F3EEE4;
  --white-soft:    #DCD8D0;
  --text-muted:    #9098A6;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --section-y:     clamp(3rem, 5.5vw, 5rem);
  --panel-p:       clamp(1.75rem, 3.6vw, 3.5rem);
  --container-max: 1280px;
  --radius:        4px;

  /* Effects */
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, .55);
  --shadow-gold: 0 10px 28px rgba(201, 162, 39, .20);
  --ease:        cubic-bezier(.25, .8, .25, 1);
}

/* 2. Base & typography --------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  background-color: var(--bg-primary);
  color: var(--white-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

p { color: var(--text-muted); margin-bottom: 1rem; font-size: .84rem; }

a { color: var(--gold-soft); text-decoration: none; transition: color .35s var(--ease); }
a:hover { color: var(--gold-bright); }

::selection { background: var(--gold-soft); color: var(--bg-dark); }

.container-lux {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: calc(var(--section-y) / 2); position: relative; }
.section--alt  { background: transparent; }
.section--deep { background: transparent; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }

/* 3. Reusable components ------------------------------------------------- */

/* --- Bordered section panel with gold corner brackets --- */
.panel {
  position: relative;
  padding: var(--panel-p);
  background-color: var(--panel);
  border: 1px solid var(--gold-hair-2);
  border-radius: var(--radius);
}
/* Panels double as the section container, inset from the viewport edge */
.container-lux.panel { width: calc(100% - 2.5rem); }
.panel--raise { background-color: var(--panel-alt); }
.panel--flat  { background-color: transparent; }

/* Four L-shaped gold corner marks, drawn as background layers */
.panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  --c: 20px;
  background-image:
    linear-gradient(var(--gold-soft), var(--gold-soft)), linear-gradient(var(--gold-soft), var(--gold-soft)),
    linear-gradient(var(--gold-soft), var(--gold-soft)), linear-gradient(var(--gold-soft), var(--gold-soft)),
    linear-gradient(var(--gold-soft), var(--gold-soft)), linear-gradient(var(--gold-soft), var(--gold-soft)),
    linear-gradient(var(--gold-soft), var(--gold-soft)), linear-gradient(var(--gold-soft), var(--gold-soft));
  background-size:
    var(--c) 1px, 1px var(--c),
    var(--c) 1px, 1px var(--c),
    var(--c) 1px, 1px var(--c),
    var(--c) 1px, 1px var(--c);
  background-position:
    left top, left top,
    right top, right top,
    left bottom, left bottom,
    right bottom, right bottom;
  background-repeat: no-repeat;
  opacity: .75;
}

/* Small uppercase label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.eyebrow::before,
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-soft);
  opacity: .6;
}
.eyebrow--center { justify-content: center; }

/* Gold text */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section heading block */
.section-head {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.section-head p { margin-top: .75rem; }

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin: 1.2rem auto 0;
  max-width: 260px;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-line);
}
.ornament svg { width: 11px; height: 11px; fill: var(--gold-soft); flex: none; transform: rotate(45deg); }

.divider-rule { height: 1px; background: var(--gold-line); opacity: .4; }

/* Buttons */
.btn-lux,
.btn-lux-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.9rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.btn-lux {
  background: var(--gold-gradient);
  color: #0B0F18;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(139, 111, 43, .3);
}
.btn-lux:hover,
.btn-lux:focus-visible {
  color: #0B0F18;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 200, 116, .3), 0 0 0 1px rgba(232, 200, 116, .45);
}

.btn-lux-outline {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--gold-soft);
}
.btn-lux-outline:hover,
.btn-lux-outline:focus-visible {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #0B0F18;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-lux-sm { padding: .68rem 1.4rem; font-size: .58rem; }

/* Framed image */
.frame-gold { position: relative; display: block; padding: 10px; border: 1px solid var(--gold-hair); border-radius: var(--radius); }
.frame-gold img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.frame-gold::after { content: none; }

/* Service card */
.card-lux {
  height: 100%;
  padding: 2.4rem 1.6rem;
  text-align: center;
  background: var(--panel-raise);
  border: 1px solid var(--gold-hair-2);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.card-lux::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform .5s var(--ease);
}
.card-lux:hover {
  transform: translateY(-6px);
  border-color: var(--gold-hair);
  background: #131D2E;
  box-shadow: var(--shadow-soft);
}
.card-lux:hover::before { transform: scaleX(1); }
.card-lux h3 { margin-bottom: .55rem; font-size: 1.25rem; }
.card-lux p  { font-size: .78rem; margin-bottom: 0; line-height: 1.85; }

.card-lux__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  transition: background .5s var(--ease), border-color .5s var(--ease);
}
.card-lux__icon svg { width: 22px; height: 22px; stroke: var(--gold-soft); fill: none; stroke-width: 1.1; }
.card-lux:hover .card-lux__icon { border-color: var(--gold-soft); background: rgba(201, 169, 97, .07); }

.card-lux__index { display: none; }

/* Botanical / decorative flourishes */
.deco {
  position: absolute;
  pointer-events: none;
  opacity: .16;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1;
  z-index: 0;
}
.deco--float { animation: floaty 10s ease-in-out infinite; }

/* 4. Layout sections ----------------------------------------------------- */

/* --- Navbar --- */
.navbar-lux {
  padding-block: .9rem;
  background: rgba(5, 8, 15, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.navbar-lux.is-scrolled {
  background: rgba(5, 8, 15, .96);
  padding-block: .6rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .5);
  border-bottom-color: var(--gold-hair-2);
}

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--gold-bright);
  flex: none;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: .03em;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: .5rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .28rem;
}

.nav-lux .nav-link {
  position: relative;
  color: var(--white-soft);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem .8rem;
  transition: color .35s var(--ease);
}
.nav-lux .nav-link::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .1rem;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-lux .nav-link:hover,
.nav-lux .nav-link.active { color: var(--gold-bright); }
.nav-lux .nav-link:hover::after,
.nav-lux .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.navbar-toggler-lux {
  width: 44px;
  height: 40px;
  border: 1px solid var(--gold-hair);
  border-radius: 2px;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 0 11px;
}
.navbar-toggler-lux:focus { box-shadow: 0 0 0 .2rem rgba(201, 169, 97, .25); }
.navbar-toggler-lux span { display: block; width: 100%; height: 1px; background: var(--gold-soft); }

.offcanvas-lux {
  background: var(--bg-dark);
  border-left: 1px solid var(--gold-hair);
  width: min(330px, 86vw);
}
.offcanvas-lux .offcanvas-header { border-bottom: 1px solid var(--gold-hair-2); }
.offcanvas-lux .btn-close { filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg); opacity: .85; }
.offcanvas-lux .nav-link { padding-block: .8rem; border-bottom: 1px solid var(--gold-hair-2); }

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 12vw, 9rem) clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(90% 70% at 75% 20%, rgba(17, 26, 41, .85) 0%, rgba(7, 11, 20, 0) 60%),
    radial-gradient(80% 60% at 5% 95%, rgba(139, 111, 43, .10) 0%, rgba(7, 11, 20, 0) 60%),
    var(--bg-primary);
  overflow: hidden;
}
.hero__content { position: relative; z-index: 3; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em { font-style: italic; }
.hero__lede { font-size: .84rem; max-width: 30rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Arched, gold-framed hero image with a crest above */
.hero__media {
  position: relative;
  z-index: 2;
  padding: 12px;
  max-width: 440px;
  margin-left: auto;
}
.hero__media img {
  width: 100%;
  /* Matches the source photo's 2:3 ratio, so the full-length figure fills the arch uncropped */
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 999px 999px 3px 3px;
  display: block;
  position: relative;
  z-index: 2;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 999px 999px 3px 3px;
  opacity: .55;
  z-index: 1;
}
.hero__crest {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  z-index: 4;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.1;
  opacity: .9;
}

.hero__badge {
  position: absolute;
  left: -1rem;
  bottom: 1.75rem;
  z-index: 4;
  background: var(--bg-dark);
  border: 1px solid var(--gold-hair);
  border-radius: 2px;
  padding: .8rem 1.1rem;
  text-align: center;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  line-height: 1;
}
.hero__badge span {
  font-size: .5rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 4;
  font-size: .53rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: pulse-line 2.4s ease-in-out infinite;
}

/* --- Stats strip --- */
.stat { text-align: center; padding: .75rem .5rem; position: relative; }
.stat__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto .7rem;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
}
.stat__icon svg { width: 15px; height: 15px; stroke: var(--gold-soft); fill: none; stroke-width: 1.1; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--gold-bright);
  line-height: 1.1;
}
.stat span {
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--gold-hair-2);
}

/* --- About --- */
.about__list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about__list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-block: .45rem;
  color: var(--white-soft);
  font-size: .8rem;
}
.about__list li > span { flex: 1; }
.about__list svg {
  width: 15px;
  height: 15px;
  flex: none;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.2;
}
.about__list li::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: none;
  order: -1;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
}

.signature {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* --- Why choose us --- */
.feature-grid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  border: 1px solid var(--gold-hair-2);
  border-radius: var(--radius);
  background: var(--panel-alt);
  overflow: hidden;
}
.feature {
  display: flex;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  border: 0;
  border-radius: 0;
  height: 100%;
  background: transparent;
  transition: background .45s var(--ease);
}
.feature-grid > [class*="col-"] { border-bottom: 1px solid var(--gold-hair-2); }
.feature-grid > [class*="col-"]:nth-child(odd) { border-right: 1px solid var(--gold-hair-2); }
.feature-grid > [class*="col-"]:nth-last-child(-n+2) { border-bottom: 0; }
.feature:hover { background: rgba(201, 169, 97, .04); transform: none; }
.feature__icon {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
}
.feature__icon svg { width: 17px; height: 17px; stroke: var(--gold-soft); fill: none; stroke-width: 1.1; }
.feature h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.feature p  { font-size: .74rem; margin-bottom: 0; line-height: 1.75; }

/* --- Gallery --- */
.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(4, 1fr); }
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--gold-hair-2);
  min-height: 200px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(5, 8, 15, .15) 0%, rgba(5, 8, 15, .9) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gallery__overlay h3 { font-size: 1.2rem; }
.gallery__overlay span {
  font-size: .55rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__item:hover { border-color: var(--gold-hair); }

/* --- Philosophy / craftsmanship banner --- */
.craft {
  position: relative;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.craft .panel {
  background-color: var(--panel);
  background-image:
    linear-gradient(rgba(7, 11, 20, .88), rgba(7, 11, 20, .92)),
    url("https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: center;
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}
.craft::before,
.craft::after { content: none; }
.craft h2 { max-width: 20ch; margin-inline: auto; }
.craft p  { max-width: 52ch; margin-inline: auto; }

/* --- Testimonials --- */
.testimonial {
  background: var(--panel-raise);
  border: 1px solid var(--gold-hair-2);
  border-radius: var(--radius);
  padding: 2.6rem 2.25rem 2.25rem;
  position: relative;
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}
.testimonial__quote {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: .8;
  color: var(--gold-soft);
  opacity: .65;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-style: italic;
  color: var(--ivory);
  margin: 1rem auto 1.5rem;
  max-width: 38rem;
  line-height: 1.7;
}
.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-hair);
  padding: 2px;
  margin-bottom: .55rem;
}
.testimonial__name { font-family: var(--font-display); font-size: 1rem; color: var(--gold-bright); }
.testimonial__role { font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-muted); }
.testimonial__stars { color: var(--gold-bright); letter-spacing: .28em; font-size: .62rem; margin-bottom: .3rem; }

.carousel-lux .carousel-control-prev,
.carousel-lux .carousel-control-next {
  width: 38px;
  height: 38px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
  opacity: .8;
  transition: background .4s var(--ease), opacity .4s var(--ease), border-color .4s var(--ease);
}
.carousel-lux .carousel-control-prev { left: 0; }
.carousel-lux .carousel-control-next { right: 0; }
.carousel-lux .carousel-control-prev:hover,
.carousel-lux .carousel-control-next:hover { background: rgba(201, 169, 97, .12); border-color: var(--gold-soft); opacity: 1; }
.carousel-lux .carousel-control-prev-icon,
.carousel-lux .carousel-control-next-icon { width: 13px; height: 13px; }
.carousel-lux .carousel-indicators { bottom: -2.5rem; }
.carousel-lux .carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 0;
  opacity: .3;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.carousel-lux .carousel-indicators .active { opacity: 1; transform: scale(1.4); }

/* --- Contact --- */
.info-row {
  display: flex;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--gold-hair-2);
  align-items: flex-start;
}
.info-row:last-child { border-bottom: 0; }
.info-row__icon {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
}
.info-row__icon svg { width: 15px; height: 15px; stroke: var(--gold-soft); fill: none; stroke-width: 1.2; }
.info-row h4 {
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .2rem;
}
.info-row p { margin: 0; font-size: .78rem; color: var(--white-soft); }

.socials { display: flex; gap: .55rem; }
.social-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
  transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.social-link svg { width: 14px; height: 14px; fill: var(--gold-soft); transition: fill .4s var(--ease); }
.social-link:hover { background: var(--gold-gradient); border-color: transparent; transform: translateY(-3px); }
.social-link:hover svg { fill: #0B0F18; }

.form-lux {
  background: var(--panel-alt);
  border: 1px solid var(--gold-hair-2);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-lux label {
  font-size: .55rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .4rem;
}
.form-lux .form-control,
.form-lux .form-select {
  background: #0A101B;
  border: 1px solid var(--gold-hair-2);
  border-radius: 2px;
  color: var(--ivory);
  font-size: .8rem;
  padding: .75rem .9rem;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.form-lux .form-control::placeholder { color: rgba(144, 152, 166, .55); }
.form-lux .form-control:focus,
.form-lux .form-select:focus {
  background: #0A101B;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 .15rem rgba(201, 169, 97, .12);
  color: var(--ivory);
}
.form-lux .form-select option { background: var(--bg-dark); color: var(--ivory); }
.form-lux .invalid-feedback { font-size: .68rem; letter-spacing: .04em; color: #D08A8A; }
.form-lux .form-control.is-invalid,
.form-lux .form-select.is-invalid { border-color: #A05C5C; box-shadow: none; }

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: .8rem 1rem;
  border: 1px solid var(--gold-hair);
  border-radius: 2px;
  background: rgba(201, 169, 97, .07);
  color: var(--gold-bright);
  font-size: .75rem;
  letter-spacing: .05em;
}
.form-status.is-visible { display: block; animation: fade-up .6s var(--ease) both; }

.btn-lux[data-loading="true"] { pointer-events: none; opacity: .75; }
.btn-lux .spinner {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(11, 15, 24, .3);
  border-top-color: #0B0F18;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn-lux[data-loading="true"] .spinner { display: inline-block; }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-hair-2);
  padding-block: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  margin-top: var(--section-y);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a {
  color: var(--text-muted);
  font-size: .78rem;
  transition: color .35s var(--ease), padding-left .35s var(--ease);
}
.footer ul a:hover { color: var(--gold-bright); padding-left: .45rem; }
.footer__bottom {
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold-hair-2);
  padding-block: 1.25rem;
  font-size: .7rem;
  color: var(--text-muted);
}

/* Back to top */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold-gradient);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  z-index: 1030;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 16px; height: 16px; stroke: #0B0F18; fill: none; stroke-width: 2; }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-bright);
  animation: pulse-mark 1.8s ease-in-out infinite;
}

/* 5. Animations ---------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-animate="fade"]  { transform: none; }
[data-animate="left"]  { transform: translateX(-32px); }
[data-animate="right"] { transform: translateX(32px); }
[data-animate].is-inview { opacity: 1; transform: none; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes pulse-line {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1;  transform: scaleY(1); }
}
@keyframes pulse-mark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, .3); }
  50%      { box-shadow: 0 0 0 14px rgba(201, 169, 97, 0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

/* 6. Responsive ---------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .hero__badge { left: -.5rem; }
}

@media (max-width: 991.98px) {
  .hero { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero__lede { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { margin-top: 3.5rem; max-width: 400px; margin-inline: auto; }
  .hero__scroll { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--gold-hair-2); }
  .feature-grid > [class*="col-"]:nth-last-child(2) { border-bottom: 1px solid var(--gold-hair-2); }
}

@media (max-width: 767.98px) {
  :root { --section-y: 2.5rem; --panel-p: 1.4rem; }
  .panel::before { inset: 7px; --c: 14px; }
  .card-lux { padding: 1.8rem 1.3rem; }
  .testimonial { padding: 2rem 1.3rem 1.8rem; }
  .carousel-lux .carousel-control-prev,
  .carousel-lux .carousel-control-next { display: none; }
  .hero__badge { position: static; display: inline-block; margin-top: 1.5rem; }
  .feature-grid > [class*="col-"] { border-right: 0 !important; }
}

@media (max-width: 575.98px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--tall,
  .gallery__item--wide { grid-row: auto; grid-column: auto; }
  .hero__actions .btn-lux,
  .hero__actions .btn-lux-outline { width: 100%; }
  .brand__name { font-size: 1.15rem; }
  .stat + .stat::before { display: none; }
}
