:root {
  --cream: #f3eee4;
  --ivory: #faf7f2;
  --paper: #f7f3ec;
  --charcoal: #1a1816;
  --ink: #2c2926;
  --bronze: #8a6550;
  --bronze-soft: #c4a07a;
  --muted: #7a7369;
  --line: rgba(26, 24, 22, 0.12);
  --header-h: 88px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--bronze);
  color: var(--cream);
}

.font-serif {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}

.site-header.is-over-hero:not(.is-scrolled) {
  background: transparent;
  color: var(--cream);
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.94);
  color: var(--charcoal);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 2.5rem;
  }
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  min-width: 148px;
}

.brand-leaf {
  width: 42px;
  height: 12px;
  margin-bottom: 4px;
  color: var(--bronze-soft);
}

.site-header.is-solid .brand-leaf,
.site-header.is-scrolled .brand-leaf {
  color: var(--bronze);
}

.brand-name {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

.brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 0.28rem;
  opacity: 0.78;
  font-weight: 400;
}

/* Homepage only: twice-size wordmark */
.site-header.is-home {
  height: auto;
  --header-h: 128px;
}

.site-header.is-home .header-inner {
  height: auto;
  min-height: 128px;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.site-header.is-home .brand {
  min-width: 0;
}

.site-header.is-home .brand-leaf {
  width: 70px;
  height: 20px;
  margin-bottom: 7px;
}

.site-header.is-home .brand-name {
  font-size: 1.9rem;
  letter-spacing: 0.26em;
}

.site-header.is-home .brand-sub {
  font-size: 0.78rem;
  margin-top: 0.42rem;
}

@media (min-width: 768px) {
  .site-header.is-home {
    --header-h: 148px;
  }

  .site-header.is-home .header-inner {
    min-height: 148px;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .site-header.is-home .brand {
    min-width: 280px;
  }

  .site-header.is-home .brand-leaf {
    width: 84px;
    height: 24px;
    margin-bottom: 8px;
  }

  .site-header.is-home .brand-name {
    font-size: 2.4rem;
    letter-spacing: 0.28em;
  }

  .site-header.is-home .brand-sub {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 0.35rem 0;
  opacity: 0.82;
  transition: opacity 0.25s ease;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  opacity: 1;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-login {
  background: none;
  border: 0;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  opacity: 0.82;
}

.nav-login:hover {
  opacity: 1;
}

@media (max-width: 899px) {
  .header-actions .nav-login {
    display: none;
  }
}

.mobile-nav .nav-login {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 1;
}

.btn-inquire {
  display: none;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  padding: 0.7rem 1.2rem;
  color: inherit;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 900px) {
  .btn-inquire {
    display: inline-block;
  }
}

.site-header.is-over-hero:not(.is-scrolled) .btn-inquire:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.site-header.is-solid .btn-inquire:hover,
.site-header.is-scrolled .btn-inquire:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: inherit;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* —— Mobile nav —— */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--cream);
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.mobile-nav a:hover {
  color: var(--bronze);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 16, 14, 0.72) 0%, rgba(18, 16, 14, 0.18) 42%, rgba(18, 16, 14, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem 5.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 2.5rem 6.5rem;
  }
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bronze-soft);
}

.hero h1 {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-width: 12ch;
  margin: 1.1rem 0 1.4rem;
}

.hero-copy {
  max-width: 44rem;
  font-size: clamp(1.28rem, 2.15vw, 1.72rem);
  line-height: 1.55;
  color: rgba(243, 238, 228, 0.94);
  font-weight: 300;
}

.scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 2.4rem;
  z-index: 1;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 238, 228, 0.7);
  writing-mode: vertical-rl;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.6rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-light {
  border: 1px solid rgba(243, 238, 228, 0.7);
  color: var(--cream);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.btn-dark {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-fill {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--charcoal);
}

.btn-fill:hover {
  background: transparent;
  color: var(--charcoal);
}

.btn-bronze {
  background: var(--bronze);
  color: var(--cream);
  border: 1px solid var(--bronze);
}

.btn-bronze:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

/* —— Layout helpers —— */
.section {
  padding: 6.5rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 8.5rem 2.5rem;
  }
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--bronze);
  border: 0;
  margin: 1.4rem 0;
}

.page-hero {
  padding: calc(var(--header-h) + 4.5rem) 1.5rem 4rem;
  background: var(--cream);
}

@media (min-width: 768px) {
  .page-hero {
    padding: calc(var(--header-h) + 6rem) 2.5rem 5rem;
  }
}

.page-hero h1 {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
  max-width: 16ch;
}

/* —— Cards / work —— */
.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.3rem;
  background: linear-gradient(to top, rgba(18, 16, 14, 0.7), transparent);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* —— Forms —— */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.field label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--bronze);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(18, 16, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.6rem;
}

.lightbox-close { top: 1.2rem; right: 1.4rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* —— Footer —— */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4.5rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 5.5rem 2.5rem 2.2rem;
  }
}

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

.site-footer a:hover {
  color: var(--bronze-soft);
}

.stacked-mark {
  text-align: center;
  line-height: 1;
}

.stacked-mark .top,
.stacked-mark .bot {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 2.4rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

.stacked-mark .line {
  width: 72px;
  height: 1px;
  background: var(--bronze);
  margin: 0.55rem auto;
}

.stacked-mark .sub {
  margin-top: 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .work-card img { transition: none; }
  .hero img { transform: none; }
}

.filter-btn {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0.35rem 0;
  color: var(--muted);
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--charcoal);
  border-bottom-color: var(--bronze);
}

.alert-ok {
  background: var(--cream);
  border: 1px solid var(--bronze);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* —— Concierge —— */
.concierge-veil {
  position: fixed;
  inset: 0;
  z-index: 68;
  background: rgba(8, 10, 14, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.concierge-veil.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.concierge-launch {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 72;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  color: #111;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.3s ease;
}

.concierge-launch:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.concierge-launch svg {
  width: 26px;
  height: 26px;
}

.concierge-launch.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
}

.concierge {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(33.333vw, 100vw);
  min-width: min(420px, 100vw);
  z-index: 70;
  display: flex;
  flex-direction: column;
  color: #111;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.06);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.95), 0 1px 8px rgba(255, 255, 255, 0.8);
  transform: translateX(104%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.concierge-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 2rem 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.concierge-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.concierge .brand {
  min-width: 220px;
  color: #111;
}

.concierge .brand-leaf {
  width: 72px;
  height: 20px;
  margin-bottom: 8px;
  color: #111;
}

.concierge .brand-name {
  font-size: 2rem;
  letter-spacing: 0.26em;
}

.concierge .brand-sub {
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.concierge-title {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
}

.concierge-close {
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #111;
  position: relative;
}

.concierge-close::before,
.concierge-close::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: currentColor;
  top: 50%;
}

.concierge-close::before { transform: rotate(45deg); }
.concierge-close::after { transform: rotate(-45deg); }

.concierge-stream {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.concierge-intro p,
.msg-assistant {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
  font-weight: 400;
  color: #111;
}

.concierge-intro p + p {
  margin-top: 1rem;
  font-size: 1.12rem;
  color: #111;
}

.msg {
  max-width: 92%;
  animation: conciergeIn 0.55s ease both;
}

.msg-user {
  align-self: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.85rem 1.1rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #111;
  background: rgba(255, 255, 255, 0.12);
}

.msg-assistant {
  align-self: flex-start;
}

.quick-replies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.quick-reply {
  display: block;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #111;
  padding: 1.05rem 1.15rem;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body.is-home-page .quick-reply {
  font-size: 1.22rem;
  line-height: 1.45;
  padding: 1.25rem 1.3rem;
  letter-spacing: 0.01em;
}

body.is-home-page .concierge-launch {
  display: none;
}

.ask-ai-launch {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  padding: 1.05rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  color: #111;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.3;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.ask-ai-launch:hover {
  background: rgba(255, 255, 255, 0.4);
}

.ask-ai-launch.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
}

.quick-reply:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  text-shadow: none;
}

.concierge-compose {
  padding: 1rem 2rem 1.5rem;
  display: flex;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
}

.concierge-compose input {
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-right: 0;
  padding: 0 1.1rem;
  font: inherit;
  font-size: 1rem;
  color: #111;
  outline: none;
}

.concierge-compose input::placeholder {
  color: rgba(17, 17, 17, 0.45);
}

.concierge-compose input:focus {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.18);
}

.concierge-compose button {
  flex: 0 0 auto;
  min-width: 8.5rem;
  height: 56px;
  background: #111;
  border: 1px solid #111;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  cursor: pointer;
  padding: 0 1.6rem;
  text-shadow: none;
}

.concierge-compose button:hover {
  background: #000;
}

.concierge-typing {
  display: flex;
  gap: 6px;
  padding: 0.3rem 0 0.6rem;
}

.concierge-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  opacity: 0.25;
  animation: conciergePulse 1.2s ease-in-out infinite;
}

.concierge-typing i:nth-child(2) { animation-delay: 0.15s; }
.concierge-typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes conciergePulse {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes conciergeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 899px) {
  .concierge {
    width: 100vw;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concierge { transition: none; }
  .msg { animation: none; }
  .concierge-typing i { animation: none; opacity: 0.7; }
}

/* —— Client login modal —— */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.login-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.login-modal-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.login-modal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.login-modal-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.72), rgba(12, 11, 10, 0.38));
}

.login-modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #faf7f2;
  cursor: pointer;
}

.login-modal-close::before,
.login-modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  top: 50%;
}

.login-modal-close::before { transform: rotate(45deg); }
.login-modal-close::after { transform: rotate(-45deg); }

.login-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 2.4rem 2.2rem 2.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #faf7f2;
}

.login-card .brand {
  color: #faf7f2;
  min-width: 0;
  margin-bottom: 1.6rem;
}

.login-card .brand-leaf {
  color: #c4a07a;
}

.login-card h2 {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.login-card .login-lede {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.82;
  margin-bottom: 1.8rem;
}

.login-card label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.45rem;
}

.login-card input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #faf7f2;
  padding: 0.85rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  outline: none;
}

.login-card input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.login-card input::placeholder {
  color: rgba(250, 247, 242, 0.45);
}

.login-submit {
  width: 100%;
  margin-top: 0.4rem;
  background: #faf7f2;
  color: #1a1816;
  border: 0;
  padding: 1rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}

.login-submit:hover {
  background: #fff;
}

.login-hint {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  opacity: 0.65;
  text-align: center;
}
