/* ROYAL ANTWERP JEWEL — brand site */
:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --page: #252525;
  --page-soft: #1f1f1f;
  --ink: #f0ebe3;
  --ink-muted: #b5b0a6;
  --gold: #c6a75e;
  --gold-light: #e8d5a3;
  --gold-dim: #8a7340;
  --cream: #f3eee3;
  --muted: #b5b0a6;
  --line: rgba(138, 106, 46, 0.35);
  --line-dark: rgba(198, 167, 94, 0.28);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #252525 !important; }
body {
  margin: 0;
  background: #252525 !important;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
body.rtl { direction: rtl; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
figure { margin: 0; }

.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: 5.5rem 0; background: #252525 !important; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.lead { color: var(--muted); max-width: 38rem; margin: 0; }
.gold-rule {
  width: 4.5rem; height: 1px; background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 2rem; border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream);
}
.header-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: flex-end; }
.lang-switch {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.lang-switch select {
  background: #111; color: var(--cream); border: 1px solid var(--line-dark);
  padding: 0.35rem 0.5rem; font-size: 0.72rem; letter-spacing: 0.04em;
  max-width: 9.5rem;
}
.site-header .nav a { color: #a39e93; }
.site-header .nav a:hover, .site-header .nav a:focus-visible { color: #e8d5a3; }
.site-header .mobile-nav a { color: #a39e93; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 0;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 44px; width: auto; max-width: min(420px, 58vw); object-fit: contain; }
.nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.nav a {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.nav a:hover, .nav a:focus-visible { color: var(--gold-light); outline: none; }

/* Hero: text on black, photo beside */
.hero { border-bottom: 1px solid var(--line); padding-top: 3.5rem; padding-bottom: 3.5rem; }
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy { background: transparent; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--gold-light);
}
.hero-copy p {
  max-width: 34rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}
.hero-photo {
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.85rem; padding: 0 1.6rem;
  border: 1px solid var(--gold);
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
  background: transparent; color: var(--gold-light); cursor: pointer;
}
.btn:hover, .btn:focus-visible { background: var(--gold); color: var(--black); outline: none; }
.btn-ghost { border-color: rgba(243,238,227,.28); color: var(--cream); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--gold); background: transparent; color: var(--gold-light); }

/* Maison */
.maison-grid {
  display: grid; gap: 2.75rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}
.maison-copy { background: transparent; }
.prose p { color: var(--muted); margin: 0 0 1.15rem; font-size: 1.02rem; }
.prose strong { color: var(--cream); font-weight: 500; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}
.stat-card {
  border: 1px solid var(--line);
  background: #0a0a0a;
  padding: 1.25rem 1rem;
}
.stat-value {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--gold);
  letter-spacing: 0.08em; margin: 0 0 0.35rem;
}
.stat-label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0; }
.maison-photo {
  border: 1px solid var(--line);
  background: #000;
}
.maison-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.maison-photo figcaption,
.gallery figcaption,
.stones-photo figcaption {
  position: static;
  padding: 0.85rem 1rem;
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Gallery — captions under images, not over them */
.gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #000;
  display: flex;
  flex-direction: column;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Stones */
.stones {
  background: var(--black-soft);
  border-block: 1px solid var(--line);
}
.stones-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.stones-photo {
  border: 1px solid var(--line);
  background: #000;
}
.stones-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.stones-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
.stones-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.philos-prose, .know-prose {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}
.philos-grid, .knowledge .stones-grid, .philosophy .stones-grid {
  margin-top: 0.5rem;
}
.stone-card {
  border: 1px solid var(--line); padding: 1.75rem 1.4rem;
  background: #0a0a0a;
}
.stone-card h3 {
  font-family: var(--font-display); font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light); margin: 0 0 0.75rem; font-size: 1.35rem;
}
.stone-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.contact-wrap {
  display: grid; gap: 2.5rem;
  grid-template-columns: 0.9fr 1.1fr;
}
.form {
  display: grid; gap: 1rem;
  border: 1px solid var(--line); padding: 1.75rem;
  background: #0a0a0a;
}
.form label {
  display: grid; gap: 0.45rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.form input, .form textarea {
  width: 100%; background: #090909; border: 1px solid rgba(243,238,227,.14);
  padding: 0.85rem 0.9rem; outline: none; transition: border-color .2s;
}
.form input:focus, .form textarea:focus { border-color: var(--gold); }
.form textarea { min-height: 8rem; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.85rem; margin: 0; }
.form-success {
  display: none; border: 1px solid var(--line); padding: 1.25rem;
  color: var(--gold-light); background: rgba(198,167,94,.06);
}
.form-success.is-visible { display: block; }
.form.is-sent .form-fields { display: none; }

.site-footer {
  border-top: 1px solid var(--line); padding: 2.5rem 0 3rem;
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--black);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.footer-brand { color: var(--gold-dim); }


@media (max-width: 1100px) {
  .stones-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-split, .maison-grid, .contact-wrap, .stones-grid, .stones-grid-4, .stones-intro, .gallery, .stat-row {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .mobile-nav { display: flex; }
}
@media (min-width: 901px) {
  .mobile-nav { display: none; }
}
.mobile-nav {
  gap: 0.9rem; flex-wrap: wrap; padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}


.photo-frame {
  background: #000 !important;
  border: 1px solid #222;
}
.photo-frame img { background: #000; }
.photo-frame figcaption {
  background: #0a0a0a !important;
  color: #e8d5a3 !important;
  border-top: 1px solid rgba(198,167,94,0.28) !important;
}

.maison-copy { background: transparent; }
.prose p { color: var(--ink-muted); }
.prose strong { color: var(--ink); }
.stat-card {
  background: #1f1f1f;
  border: 1px solid var(--line);
}
.stat-label { color: var(--ink-muted); }
.lead { color: var(--ink-muted); }
.stone-card {
  background: #1f1f1f;
  border: 1px solid var(--line);
}
.stone-card h3 { color: var(--gold-light); }
.stone-card p { color: var(--ink-muted); }
.stones { background: #1f1f1f !important; border-block: 1px solid var(--line); }
.form {
  background: #1f1f1f;
  border: 1px solid var(--line);
}
.form input, .form textarea {
  background: #1a1a1a;
  color: var(--ink);
  border: 1px solid #444;
}
.form-note { color: var(--ink-muted); }
.btn { color: var(--gold-light); border-color: var(--gold); }
.btn:hover, .btn:focus-visible { background: var(--gold); color: #111; }
.btn-ghost { border-color: #777; color: var(--ink); }
.site-footer {
  background: #252525 !important;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}
.footer-brand { color: var(--gold-dim); }
.form-success { color: var(--gold-light); background: rgba(168,132,61,.08); }

@media (max-width: 900px) {
  /* removed: header-right width 100% caused overlap */
}


/* Hard theme lock: dark gray page (not white, not pure black) */
html, body, main {
  background-color: #252525 !important;
  color: #f0ebe3 !important;
}
.section, .site-footer, .stones {
  background-color: #252525 !important;
}
.stones { background-color: #1f1f1f !important; }
.section-title, .hero h1, .stone-card h3 {
  color: #e8d5a3 !important;
}
.section-kicker, .lang-switch {
  color: #c6a75e !important;
}
.prose p, .lead, .hero-copy p, .stat-label, .stone-card p, .form-note {
  color: #c4bfb6 !important;
}
.prose strong { color: #f3eee3 !important; }
.stat-card, .stone-card, .form {
  background: #262626 !important;
  border-color: rgba(198,167,94,0.28) !important;
}
.form input, .form textarea {
  background: #1e1e1e !important;
  color: #f0ebe3 !important;
  border-color: #555 !important;
}
.site-header {
  background: #050505 !important;
}
.photo-frame, .hero-photo, .maison-photo, .stones-photo, .gallery figure {
  background: #000 !important;
}


.realizations-gallery {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
  cursor: zoom-in;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.gallery-item img {
  transition: transform .6s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.82);
  padding: 1.5rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-stage {
  margin: 0;
  max-width: min(920px, 94vw);
  background: #000;
  border: 1px solid rgba(198,167,94,.35);
  overflow: hidden;
  animation: jewel-enter .55s cubic-bezier(.2,.8,.2,1) both;
}
.lightbox-stage img {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  background: #000;
  animation: jewel-life 3.2s ease-in-out infinite alternate;
  transform-origin: center center;
}
.lightbox-stage figcaption {
  padding: 0.9rem 1rem;
  background: #0a0a0a;
  color: #e8d5a3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  border-top: 1px solid rgba(198,167,94,.28);
}
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(198,167,94,.45);
  background: #111;
  color: #e8d5a3;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 210;
}
body.rtl .lightbox-close { right: auto; left: 1rem; }

@keyframes jewel-enter {
  from { opacity: 0; transform: scale(.86) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes jewel-life {
  0% { transform: scale(1) translate3d(0,0,0) rotate(0deg); }
  50% { transform: scale(1.045) translate3d(0,-6px,0) rotate(.25deg); }
  100% { transform: scale(1.07) translate3d(0,-2px,0) rotate(-.2deg); }
}

@media (max-width: 900px) {
  .realizations-gallery { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .realizations-gallery { grid-template-columns: repeat(2, 1fr); }
}


/* Header rebuild: large logo + language + burger menu */
.site-header .header-inner {
  padding: 0.74rem 0;
  gap: 1rem;
}
.site-header .logo-link {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header .logo-link img {
  height: auto !important;
  width: auto !important;
  max-width: min(720px, 72vw) !important;
  max-height: 76px !important;
  object-fit: contain;
}
.site-header .header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.site-header .nav,
.site-header .mobile-nav {
  display: none !important;
}

.nav-menu { position: relative; }
.menu-toggle {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(198,167,94,.45);
  background: #111;
  display: grid;
  place-content: center;
  gap: 0.28rem;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: #e8d5a3;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.menu-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 14rem;
  background: #0b0b0b;
  border: 1px solid rgba(198,167,94,.35);
  padding: 0.55rem 0;
  z-index: 80;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}
.menu-panel[hidden] { display: none !important; }
.menu-panel a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfc8bb;
}
.menu-panel a:hover,
.menu-panel a:focus-visible {
  color: #e8d5a3;
  background: rgba(198,167,94,.08);
  outline: none;
}
body.rtl .menu-panel { right: auto; left: 0; }

@media (max-width: 700px) {
  .site-header .logo-link img {
    max-width: min(520px, 62vw) !important;
    max-height: 56px !important;
  }
  .lang-switch-label { display: none; }
}


/* Keep language + menu hard-right; prevent overlap with logo */
.site-header .header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
}
.site-header .logo-link {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 12.5rem) !important;
  margin-right: auto !important;
}
.site-header .logo-link img {
  max-width: 100% !important;
}
.site-header .header-right {
  margin-left: auto !important;
  flex: 0 0 auto !important;
  justify-content: flex-end !important;
  gap: 0.55rem !important;
  position: relative;
  z-index: 90;
}
.site-header .lang-switch {
  flex: 0 0 auto;
  white-space: nowrap;
}
.site-header .lang-switch select {
  max-width: 7.8rem;
}
.site-header .nav-menu {
  flex: 0 0 auto;
  position: relative;
  z-index: 95;
}
@media (max-width: 700px) {
  .site-header .logo-link {
    max-width: calc(100% - 7.2rem) !important;
  }
  .site-header .lang-switch select {
    max-width: 5.8rem;
  }
}


/* === FINAL header layout: logo left, controls pinned right, no overlap === */
.site-header .container.header-inner,
.site-header .header-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: 0.75rem !important;
  width: min(1120px, calc(100% - 2.5rem)) !important;
}
.site-header .logo-link {
  grid-column: 1 !important;
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  flex: unset !important;
}
.site-header .logo-link img {
  display: block !important;
  height: 68px !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: 68px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.site-header .header-right {
  grid-column: 2 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.45rem !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  flex: unset !important;
  position: relative !important;
  z-index: 100 !important;
}
.site-header .lang-switch {
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  margin: 0 !important;
}
.site-header .lang-switch-label {
  display: none !important; /* free horizontal space */
}
.site-header .lang-switch select {
  width: 7.25rem !important;
  max-width: 7.25rem !important;
  min-width: 7.25rem !important;
  box-sizing: border-box !important;
}
.site-header .nav-menu {
  position: relative !important;
  flex: 0 0 auto !important;
}
.site-header .menu-panel {
  right: 0 !important;
  left: auto !important;
}
body.rtl .site-header .header-inner {
  grid-template-columns: auto minmax(0, 1fr) !important;
}
body.rtl .site-header .logo-link {
  grid-column: 2 !important;
}
body.rtl .site-header .header-right {
  grid-column: 1 !important;
  justify-content: flex-start !important;
}
body.rtl .site-header .logo-link img {
  object-position: right center !important;
  margin-left: auto;
}
body.rtl .site-header .menu-panel {
  left: 0 !important;
  right: auto !important;
}

@media (max-width: 700px) {
  .site-header .logo-link img {
    height: 51px !important;
    max-height: 51px !important;
  }
  .site-header .lang-switch select {
    width: 6.4rem !important;
    max-width: 6.4rem !important;
    min-width: 6.4rem !important;
  }
}


/* Language inside burger menu — header stays logo + ☰ only */
.site-header .header-right {
  width: auto !important;
}
.site-header .menu-lang {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}
.site-header .menu-lang-label {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a227;
}
.site-header .menu-lang select,
.site-header .menu-panel #lang-select {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  box-sizing: border-box !important;
  background: #111 !important;
  color: #e8d5a3 !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 2px;
  padding: 0.45rem 0.55rem !important;
  font-size: 0.85rem !important;
}


/* +6% header & side-wordmark logo */
.site-header .container.header-inner,
.site-header .header-inner {
  padding-top: 0.74rem !important;
  padding-bottom: 0.74rem !important;
}
.site-header .logo-link img {
  height: 68px !important;
  max-height: 68px !important;
}
.site-header .menu-toggle {
  width: 2.7rem !important;
  height: 2.7rem !important;
}
@media (max-width: 700px) {
  .site-header .logo-link img {
    height: 51px !important;
    max-height: 51px !important;
  }
  .site-header .header-inner {
    padding-top: 0.64rem !important;
    padding-bottom: 0.64rem !important;
  }
}


/* Ellipse +6% / wordmark +12% asset — allow taller header logo */
.site-header .logo-link img {
  height: auto !important;
  max-height: 78px !important;
}
@media (max-width: 700px) {
  .site-header .logo-link img {
    height: auto !important;
    max-height: 58px !important;
  }
}


/* Header logo: ellipse +6% again, wordmark +12% + wider gap, vertically centered */
.site-header .logo-link img {
  height: auto !important;
  max-height: 86px !important;
}
@media (max-width: 700px) {
  .site-header .logo-link img {
    height: auto !important;
    max-height: 62px !important;
  }
}


/* Wordmark +24% again — allow taller header logo */
.site-header .logo-link img {
  height: auto !important;
  max-height: 96px !important;
}
@media (max-width: 700px) {
  .site-header .logo-link img {
    height: auto !important;
    max-height: 68px !important;
  }
}

/* Fixed CTA — same size/colors as hero .btn.btn-ghost; only position differs */

/* Fixed CTA — same size/colors as hero .btn.btn-ghost; only position differs */
.floating-cta {
  position: fixed !important;
  left: 50%;
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px) + 0.75rem);
  transform: translateX(-50%);
  z-index: 90;
  /* match hero ghost exactly; light dark plate so it stays readable over photos */
  background: #252525 !important;
  box-shadow: none;
}
.floating-cta:hover,
.floating-cta:focus-visible {
  background: #252525 !important;
}
body {
  padding-bottom: 5.5rem;
}
@media (max-width: 480px) {
  .floating-cta {
    max-width: calc(100vw - 1.5rem);
  }
}

.floating-cta[hidden] { display: none !important; }


/* Floating CTA: slightly larger/wider, single-line, more visible type */
.floating-cta.btn {
  min-height: 3.25rem !important;
  padding: 0 2.1rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  max-width: none !important;
}
@media (max-width: 480px) {
  .floating-cta.btn {
    min-height: 3.05rem !important;
    padding: 0 1.35rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
  }
}

.form select {
  width: 100%;
  background: #111;
  color: var(--cream, #f3eee3);
  border: 1px solid var(--line, #444);
  padding: 0.85rem 0.9rem;
  font: inherit;
  outline: none;
}
.form select:focus { border-color: var(--gold, #c9a227); }
.form .optional { opacity: 0.65; font-weight: 400; text-transform: none; letter-spacing: 0.04em; font-size: 0.85em; }
.form-error { color: #e8a0a0 !important; }
.form-error[hidden] { display: none !important; }
.form.is-sending button[type="submit"] { opacity: 0.65; pointer-events: none; }
