:root {
  --cream: #eadfce;
  --beige: #d9c9ae;
  --sand: #bda88a;
  --stone: #776b5f;
  --charcoal: #211d18;
  --black: #100e0b;
  --paper: #f5efe5;
  --line: rgba(33, 29, 24, 0.2);
  --serif: "Cormorant", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  input,
  select,
  textarea,
  video {
    cursor: none;
  }
}

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

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-logo {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition: opacity 240ms ease, transform 240ms ease;
  mix-blend-mode: multiply;
}

.cursor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.78;
}

.cursor-logo.is-visible {
  opacity: 1;
}

.cursor-logo.is-hovering {
  transform: translate3d(-50%, -50%, 0) scale(1.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-logo {
    display: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--charcoal);
  transition: background 700ms var(--ease), border-color 700ms var(--ease), padding 700ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(234, 223, 206, 0.92);
  border-bottom: 1px solid rgba(33, 29, 24, 0.12);
  backdrop-filter: blur(22px);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.72;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.nav a,
.language {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  opacity: 0.72;
  transition: opacity 350ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 500ms var(--ease);
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  width: 100%;
}

.language {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  opacity: 0.42;
  cursor: pointer;
}

.lang-button.is-active {
  opacity: 1;
}

.hero {
  min-height: 96svh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 128px 20px 92px;
  text-align: center;
}

.hero-center {
  width: min(920px, 100%);
}

.kicker,
.section-kicker,
.sub-kicker,
.place {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sub-kicker {
  margin-top: 24px;
  color: #51483e;
}

.place {
  margin-top: 10px;
  color: var(--stone);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  max-width: 840px;
  margin: 78px auto 28px;
  font-size: clamp(66px, 10vw, 142px);
}

.hero-copy {
  max-width: 660px;
  margin: 0 auto;
  color: #4f463b;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.scroll-note {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

.scroll-note::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 18px auto 0;
  background: rgba(33, 29, 24, 0.28);
}

.section,
.video-section {
  padding: clamp(84px, 11vw, 156px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto clamp(44px, 6vw, 78px);
  text-align: center;
}

.section-kicker {
  margin-bottom: 24px;
  color: var(--stone);
}

.section-head h2,
.about h2 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 76px);
}

.video-section {
  background: var(--black);
  color: var(--paper);
}

.video-section .section-kicker,
.video-section h2 {
  color: var(--paper);
}

.video-section .section-kicker {
  opacity: 0.58;
}

.video-frame {
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(250, 247, 240, 0.14);
  background: #050504;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.intro {
  display: grid;
  place-items: center;
  min-height: 34svh;
  text-align: center;
  background: var(--paper);
}

.intro p {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.1vw, 54px);
  line-height: 1.14;
}

.services {
  background: var(--cream);
}

.service-list {
  width: min(1040px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3.4vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.service span,
.process-list span {
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.service h3,
.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
}

.service p,
.process-list p {
  margin: 0;
  color: #554a3e;
  font-size: 16px;
  line-height: 1.55;
}

.process {
  background: var(--beige);
}

.process-list {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(33, 29, 24, 0.2);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 0.78fr minmax(260px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 50px);
  padding: 26px 0;
  border-bottom: 1px solid rgba(33, 29, 24, 0.2);
}

.about {
  min-height: 46svh;
  display: grid;
  place-items: center;
  background: var(--paper);
  text-align: center;
}

.about-inner {
  width: min(820px, 100%);
}

.about h2 {
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.08;
}

.contact {
  background: var(--cream);
}

.inline-social {
  display: inline-block;
  margin-top: 24px;
  color: var(--stone);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 350ms ease;
}

.inline-social:hover {
  color: var(--charcoal);
}

.inquiry {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.inquiry input[type="hidden"] {
  display: none;
}

.inquiry label {
  display: grid;
  gap: 10px;
}

.inquiry label.full {
  grid-column: 1 / -1;
}

.inquiry span {
  color: var(--stone);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inquiry input,
.inquiry select,
.inquiry textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(33, 29, 24, 0.34);
  border-radius: 0;
  padding: 14px 0;
  color: var(--charcoal);
  background: transparent;
  outline: none;
  resize: vertical;
  transition: border-color 300ms ease;
}

.inquiry input:focus,
.inquiry select:focus,
.inquiry textarea:focus {
  border-color: var(--black);
}

.submit-button,
.chat-toggle {
  border: 1px solid rgba(33, 29, 24, 0.36);
  padding: 16px 28px;
  color: var(--charcoal);
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 500ms var(--ease), color 500ms var(--ease), border-color 500ms var(--ease);
}

.submit-button {
  justify-self: start;
}

.submit-button:hover,
.chat-toggle:hover,
.chat-toggle.is-open {
  color: var(--paper);
  background: var(--black);
  border-color: var(--black);
}

.form-note {
  align-self: center;
  margin: 0;
  color: var(--stone);
  font-size: 14px;
}

.form-success {
  padding: 34px;
  border: 1px solid rgba(33, 29, 24, 0.22);
  text-align: center;
  background: rgba(245, 239, 229, 0.42);
}

.form-success h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.form-success p {
  max-width: 520px;
  margin: 0 auto;
  color: #554a3e;
  font-size: 16px;
  line-height: 1.6;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(390px, calc(100vw - 32px));
  border: 1px solid rgba(33, 29, 24, 0.18);
  background: rgba(245, 239, 229, 0.98);
  box-shadow: 0 28px 90px rgba(16, 14, 11, 0.22);
  backdrop-filter: blur(22px);
}

.messages {
  max-height: 280px;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 86%;
  padding: 13px 15px;
  font-size: 15px;
  line-height: 1.55;
}

.message.assistant {
  align-self: flex-start;
  color: var(--charcoal);
  background: rgba(37, 35, 31, 0.06);
}

.message.user {
  align-self: flex-end;
  color: var(--paper);
  background: var(--charcoal);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid rgba(37, 35, 31, 0.12);
}

.chat-form input {
  min-width: 0;
  border: 0;
  padding: 18px;
  color: var(--charcoal);
  background: transparent;
  outline: none;
}

.chat-form input::placeholder {
  color: var(--stone);
}

.chat-form button {
  border: 0;
  border-left: 1px solid rgba(37, 35, 31, 0.12);
  padding: 0 24px;
  color: var(--charcoal);
  background: transparent;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px) 118px;
  color: var(--charcoal);
  background: var(--beige);
  border-top: 1px solid rgba(33, 29, 24, 0.16);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer p + p {
  margin-top: 8px;
  color: #5d5246;
}

.social {
  justify-self: end;
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
}

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

.thank-you-page {
  min-height: 100svh;
  background: var(--cream);
}

.thank-you {
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 48px 20px;
  text-align: center;
}

.thank-you-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.72;
  margin-bottom: 10px;
}

.thank-you h1 {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 400;
  line-height: 0.95;
}

.thank-you p:not(.kicker) {
  width: min(560px, 100%);
  margin: 0;
  color: #4f463b;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.thank-you-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 28px;
  color: var(--stone);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.thank-you-links a {
  transition: color 350ms ease;
}

.thank-you-links a:hover {
  color: var(--charcoal);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand span,
  .nav {
    display: none;
  }

  .service,
  .process-list li,
  .inquiry,
  .footer {
    grid-template-columns: 1fr;
  }

  .service,
  .process-list li {
    gap: 12px;
    text-align: center;
  }

  .footer,
  .social {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .chat-toggle {
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 20px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 20px 76px;
  }

  .hero h1 {
    margin: 44px auto 24px;
    font-size: clamp(52px, 15vw, 66px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.55;
  }

  .scroll-note {
    display: none;
  }

  .intro p {
    font-size: 34px;
  }

  .about {
    min-height: auto;
  }

  .about h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .video-frame video {
    aspect-ratio: 4 / 5;
  }

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

  .chat-form button {
    min-height: 48px;
    border-left: 0;
    border-top: 1px solid rgba(37, 35, 31, 0.12);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    max-width: 300px;
    font-size: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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