:root {
  --bg: #121010;
  --bg-elevated: #1a1714;
  --surface: #211d19;
  --border: rgba(255, 255, 255, 0.08);
  --border-cool: rgba(92, 109, 122, 0.28);
  --text: #f2ece4;
  --text-muted: #a39688;
  --accent: #d4845f;
  --accent-light: #e8a88a;
  --accent-soft: rgba(212, 132, 95, 0.14);
  --cool: #5c6d7a;
  --cta-fill: #f0e6d8;
  --cta-text: #121010;
  --white: #ffffff;
  --max: 1180px;
  --nav-height: 76px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  position: relative;
  display: inline-block;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0;
  padding-bottom: 0;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 0.28rem);
  bottom: auto;
  width: max(5rem, calc(100% + 1.75rem));
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-light) 0%,
    var(--accent) 42%,
    rgba(212, 132, 95, 0.35) 78%,
    transparent 100%
  );
  border-radius: 1px;
}

.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.eyebrow + .display {
  margin-top: 2.85rem;
}

h1.display {
  font-size: clamp(3rem, 8vw, 5.6rem);
  margin: 0 0 1.25rem;
}

h2.display {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cta-fill);
  color: var(--cta-text);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--cta-fill);
}

.btn-luxe {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 44px;
  padding: 0.75rem 1.2rem 0.75rem 1.35rem;
  gap: 0.55rem;
  background: linear-gradient(
    120deg,
    rgba(212, 132, 95, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(212, 132, 95, 0.1) 70%,
    rgba(212, 132, 95, 0.2) 100%
  );
  background-size: 240% 100%;
  color: var(--text);
  border-color: rgba(212, 132, 95, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(212, 132, 95, 0.12);
  animation:
    luxe-border-glow 3s ease-in-out infinite,
    luxe-bg-drift 5s ease-in-out infinite;
}

.btn-luxe__label,
.btn-luxe__icon {
  position: relative;
  z-index: 1;
}

.btn-luxe__icon {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -1px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: luxe-arrow-nudge 1.6s ease-in-out infinite;
}

.btn-luxe::before {
  content: "";
  position: absolute;
  inset: -20% -60%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 58%
  );
  transform: translateX(-120%) rotate(8deg);
  animation: luxe-shine-pass 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.btn-luxe::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(212, 132, 95, 0.2),
    rgba(255, 255, 255, 0.75),
    rgba(212, 132, 95, 0.2)
  );
  background-size: 260% 100%;
  animation: luxe-border-shift 2.4s linear infinite;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.btn-luxe:hover {
  transform: translateY(-2px) scale(1.02);
  color: var(--white);
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 40px rgba(212, 132, 95, 0.32);
  animation-duration: 1.6s, 3s;
}

.btn-luxe:hover::before {
  animation-duration: 1.4s;
}

.btn-luxe:hover::after {
  opacity: 1;
  animation-duration: 1.6s;
}

@keyframes luxe-border-glow {
  0%,
  100% {
    border-color: rgba(212, 132, 95, 0.38);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 16px rgba(212, 132, 95, 0.1);
  }

  50% {
    border-color: rgba(212, 132, 95, 0.82);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 34px rgba(212, 132, 95, 0.28);
  }
}

@keyframes luxe-bg-drift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes luxe-shine-pass {
  0%,
  68%,
  100% {
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  42% {
    transform: translateX(120%) rotate(8deg);
    opacity: 1;
  }
}

@keyframes luxe-arrow-nudge {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.55;
  }

  50% {
    transform: rotate(45deg) translate(3px, -3px);
    opacity: 1;
  }
}

@keyframes luxe-border-shift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 260% 50%;
  }
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding-inline: 0.75rem;
  min-height: auto;
}

.btn-ghost.is-active,
.btn-ghost:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(18, 16, 16, 0.88);
  border-color: var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  transition: opacity var(--transition);
  align-self: center;
}

.brand:hover {
  opacity: 0.88;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2em;
  line-height: 1;
  width: max-content;
}

.brand-primary,
.brand-secondary {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.08em;
  padding-right: 0.08em;
  white-space: nowrap;
  -webkit-text-stroke: 0.45px #ffffff;
  paint-order: stroke fill;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
}

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

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.lang-toggle button.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0;
  background: rgba(18, 16, 16, 0.96);
  backdrop-filter: blur(16px);
  padding: 2rem 1.25rem 2.5rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.mobile-nav nav {
  display: grid;
  gap: 1.25rem;
}

.mobile-nav a {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Hero */
.hero {
  --hero-bg-pos-x: 50%;
  --hero-bg-pos-y: 21.5%;
  --hero-bg-inset-y: 12%;
  --hero-bg-inset-x: 6%;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--hero-bg-inset-y)) calc(-1 * var(--hero-bg-inset-x));
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212, 132, 95, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(18, 16, 16, 0.2), var(--bg) 75%),
    url("https://format.creatorcdn.com/515d0dd5-5276-4911-84d5-a978d6655ee8/0/0/0/0,0,2429,3642,900,3642/0-0-0/7f31d829-d00a-475b-b9a7-2c8c9da6b82a/1/1/Valerie+TheSet20515.JPG?fjkss=exp=2097327713~hmac=f6cef5804d183c169c422e6be615164c654e0433e8e38db1fe578d7e24a8fa56&900");
  background-position: center, center, var(--hero-bg-pos-x) var(--hero-bg-pos-y);
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 16, 16, 0.92) 0%, rgba(18, 16, 16, 0.55) 55%, rgba(18, 16, 16, 0.35) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-meta {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(26, 23, 20, 0.55);
  backdrop-filter: blur(8px);
}

.hero-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hero-meta dd {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-head p {
  max-width: 38ch;
  color: var(--text-muted);
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.section-cta {
  margin-top: 2rem;
}

.service-card {
  padding: 1.75rem;
  min-height: 220px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(212, 132, 95, 0.45);
  transform: translateY(-4px);
}

.service-card span {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Photos */
.photos-section .section-head {
  margin-bottom: 2.5rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.work-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.1) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.work-card:hover::before,
.work-card:focus-visible::before {
  transform: translateX(130%);
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(212, 132, 95, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.work-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.work-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 3.5s ease;
}

.work-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.work-card:hover .work-carousel img.is-active,
.work-card:focus-visible .work-carousel img.is-active {
  transform: scale(1.07);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.process-step strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Experience */
.experience-section {
  padding-top: 0;
}

.experience-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  padding: 3rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 132, 95, 0.08), transparent 45%),
    var(--surface);
  align-items: end;
}

.experience-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  line-height: 1.7;
}

/* Story path */
.story-animate {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-path {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  counter-reset: step;
}

@media (min-width: 900px) {
  .story-path {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .story-path {
    grid-template-columns: repeat(8, 1fr);
  }
}

.story-path li {
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: grid;
  gap: 0.5rem;
  min-height: 120px;
  position: relative;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.story-path li.is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 132, 95, 0.42);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.story-path li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.story-path li strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
}

.story-path li > span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.story-path li.is-foundation.is-visible {
  opacity: 0.72;
}

.story-path li.is-foundation.is-visible:hover {
  opacity: 0.9;
}

.story-role-tag {
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(212, 132, 95, 0.35);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.story-path li.is-highlight {
  border-color: rgba(212, 132, 95, 0.5);
  background: linear-gradient(180deg, rgba(212, 132, 95, 0.1), var(--bg-elevated));
}

.story-path li.is-primary {
  border-color: rgba(212, 132, 95, 0.72);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 132, 95, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(212, 132, 95, 0.12), var(--bg-elevated));
}

.story-path li.is-primary .story-role-tag {
  background: rgba(212, 132, 95, 0.12);
}

.story-path li.is-current {
  border-color: rgba(212, 132, 95, 0.55);
  background: linear-gradient(180deg, rgba(212, 132, 95, 0.08), var(--bg-elevated));
}

.story-closing {
  margin: 2rem 0 0;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-head--center {
  text-align: center;
  justify-content: center;
}

.section-head--center .lead {
  margin-inline: auto;
}

.contact-single {
  max-width: 640px;
  margin-inline: auto;
}

.contact-inline {
  margin-top: 2rem;
  display: grid;
  gap: 1.75rem;
  text-align: center;
}

.contact-details p,
.contact-inline > p {
  margin: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-inline a {
  color: var(--text);
  border-bottom: 1px solid rgba(212, 132, 95, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.contact-inline a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.social-links {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-links-row a,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition), border-color var(--transition);
}

.social-link__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  opacity: 0.82;
  transition: opacity var(--transition), color var(--transition), transform var(--transition);
}

.social-link {
  border-bottom: none;
}

.social-link:hover .social-link__icon {
  opacity: 1;
  transform: translateY(-1px);
}

/* Why */
.why-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 132, 95, 0.08), transparent 40%),
    var(--surface);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.why-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Contact */
.contact-section {
  padding-bottom: 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card,
.form-card {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.contact-card {
  padding: 2rem;
}

.contact-card a {
  color: var(--accent);
  border-bottom: 1px solid rgba(212, 132, 95, 0.35);
}

.contact-detail {
  margin-top: 1.5rem;
}

.contact-detail p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
}

.form-card {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 132, 95, 0.65);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c45c5c;
}

.field-error {
  min-height: 1rem;
  font-size: 0.78rem;
  color: #e08a8a;
}

.form-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-actions .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(196, 92, 92, 0.12);
  border: 1px solid rgba(196, 92, 92, 0.35);
  color: #f0b4b4;
}

.form-status.is-success {
  background: rgba(120, 176, 130, 0.12);
  border: 1px solid rgba(120, 176, 130, 0.35);
  color: #b8e0c0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Thank you page */
.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.thankyou-card {
  max-width: 560px;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.thankyou-card p {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .services-grid--three,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-path {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .why-panel,
  .experience-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-actions .btn-luxe {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: block;
  }

  .services-grid--three,
  .story-path {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }

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

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

  .marquee-track {
    animation: none;
  }

  .work-reveal {
    opacity: 1;
    transform: none;
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
  }

  .work-card:hover,
  .work-card:focus-visible {
    transform: none;
  }

  .work-card:hover .work-carousel img.is-active,
  .work-card:focus-visible .work-carousel img.is-active {
    transform: none;
  }

  .btn:hover,
  .btn-luxe,
  .btn-luxe::before,
  .btn-luxe::after,
  .btn-luxe__icon {
    animation: none;
  }

  .btn-luxe::before {
    display: none;
  }

  .service-card:hover,
  .story-path li.is-visible:hover {
    transform: none;
  }

  .story-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero background editor (dev only) */
.hero-edit-launcher,
.hero-edit-toolbar {
  display: none;
}

body.hero-dev-host .hero-edit-launcher {
  display: inline-flex;
}

body.hero-dev-host.hero-edit-active .hero-edit-toolbar {
  display: flex;
}

body.hero-dev-host.hero-edit-active .hero-edit-launcher {
  display: none;
}

.hero-edit-launcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(212, 132, 95, 0.45);
  border-radius: 999px;
  background: rgba(18, 16, 16, 0.92);
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-edit-launcher:hover {
  border-color: var(--accent);
  color: #fff;
}

.hero-edit-toolbar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 9999;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 0.65rem;
  width: min(620px, calc(100vw - 2rem));
  padding: 0.85rem 1rem 0.95rem;
  border: 1px solid rgba(212, 132, 95, 0.35);
  border-radius: 14px;
  background: rgba(18, 16, 16, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  font-family: "Outfit", sans-serif;
  color: #e8e8e8;
}

.hero-edit-toolbar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-edit-toolbar__title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-edit-toolbar__done {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-edit-toolbar__done:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-edit-toolbar__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 3.25rem;
  align-items: center;
  gap: 0.55rem;
}

.hero-edit-toolbar__row label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-edit-toolbar__row input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.hero-edit-toolbar__value {
  font-size: 0.72rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.hero-edit-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.hero-edit-toolbar__actions button {
  flex: 1 1 auto;
  min-width: 7rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-edit-toolbar__actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-edit-toolbar__save {
  flex: 1 1 100%;
  border-color: rgba(212, 132, 95, 0.55) !important;
  background: rgba(212, 132, 95, 0.14) !important;
  color: var(--accent) !important;
}

.hero-edit-toolbar__hint strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.hero-edit-toolbar__hint {
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.hero-edit-toolbar__toast {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 10000;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(212, 132, 95, 0.95);
  color: var(--cta-text);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-edit-toolbar__toast.is-visible {
  opacity: 1;
}
