@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --cream: #e7ddd3;
  --cream-deep: #cfbdaa;
  --paper: #f7f1ea;
  --white: #fffaf4;
  --slate: #5f6b6f;
  --slate-dark: #3f4b4f;
  --warm-grey: #8c867d;
  --ink: #2f3535;
  --line: rgba(95, 107, 111, 0.26);
  --line-strong: rgba(95, 107, 111, 0.42);
  --max-width: 1160px;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(231, 221, 211, 0.96);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 18px 0;
  gap: 36px;
}

.brand,
.footer-brand {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
}

.brand-name {
  font: inherit;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid var(--line-strong);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-links,
.dropdown-menu,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: var(--slate);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 245px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
}

.dropdown-menu a:hover {
  background: var(--cream-deep);
}

.language-switcher {
  display: inline-flex;
  gap: 7px;
  color: var(--warm-grey);
}

.language-switcher a {
  padding: 2px 0;
}

.language-switcher a[aria-current='true'] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button,
.nav-cta,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--slate);
  background: var(--slate);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.nav-cta:hover,
button.button:hover {
  border-color: var(--slate-dark);
  background: var(--slate-dark);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--slate);
}

.button.secondary:hover {
  background: var(--slate);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--slate);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-left: 12px;
  background: var(--slate);
}

.text-link:hover {
  color: var(--slate-dark);
}

.hero,
.page-hero,
.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.home-hero,
.home-founder,
.home-cta-strip {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 54px;
  align-items: center;
  padding: 54px 0 36px;
}

.home-hero-copy {
  max-width: 560px;
}

.home-hero .lead {
  margin-right: 0;
  margin-left: 0;
}

.home-visual,
.founder-portrait {
  margin: 0;
}

.home-visual img,
.founder-portrait img {
  width: 100%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.home-visual img {
  aspect-ratio: 1 / 1;
  background: var(--paper);
}

.home-founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 46px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.founder-portrait img {
  aspect-ratio: 1 / 1;
  object-position: center;
}

.founder-copy {
  display: grid;
  gap: 18px;
}

.founder-copy h2 {
  max-width: 720px;
}

.credential-note {
  color: var(--slate-dark);
  font-weight: 700;
}

.home-mood {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--line);
}

.home-mood span {
  display: grid;
  min-height: 92px;
  place-items: center;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.home-cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 44px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.home-cta-strip h2 {
  font-size: 32px;
}

.home-cta-strip p:not(.eyebrow) {
  color: var(--slate-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 76px 0 56px;
}

.page-hero {
  max-width: 900px;
  padding: 76px 0 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--warm-grey);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: 72px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 25px;
}

p {
  margin: 0;
}

.lead {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--slate-dark);
  font-size: 20px;
  line-height: 1.65;
}

.hero .lead {
  margin-left: 0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-image,
.visual-panel,
.visual-panel.placeholder {
  min-height: 560px;
  border: 1px solid var(--line);
  background:
    linear-gradient(to bottom, rgba(231, 221, 211, 0.12), rgba(231, 221, 211, 0.2)),
    url('/images/monica.jpg') center / cover;
}

.visual-panel.placeholder {
  display: grid;
  place-items: end start;
  min-height: 390px;
  padding: 24px;
  background:
    linear-gradient(to bottom, rgba(247, 241, 234, 0.55), rgba(247, 241, 234, 0.86)),
    url('/images/arhsoul/interior-placeholder.svg') center / cover;
}

.visual-caption {
  max-width: 340px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.credibility-line {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto 36px;
  padding: 19px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--slate-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 74px 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  padding: 78px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--cream-deep);
}

.section.paper {
  padding: 58px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header p {
  color: var(--slate-dark);
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.card,
.booking-panel,
.quote-card {
  border: 1px solid var(--line);
  background: rgba(247, 241, 234, 0.72);
}

.service-card,
.card {
  padding: 28px;
}

.service-card p,
.card p {
  color: var(--slate-dark);
}

.service-meta,
.tag-row {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-meta strong,
.tag {
  color: var(--warm-grey);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mood-words {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.mood-words span {
  min-height: 160px;
  padding: 38px 24px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.founder-panel .hero-image {
  min-height: 500px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-stack ul,
.faq-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-stack li,
.faq-list li {
  padding: 14px 0 14px 18px;
  border-left: 1px solid var(--slate);
  color: var(--slate-dark);
}

.quote-card {
  padding: 34px;
  color: var(--slate-dark);
  font-size: 20px;
  line-height: 1.55;
  text-align: center;
}

.placeholder-note {
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  background: rgba(247, 241, 234, 0.56);
  color: var(--warm-grey);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-gallery {
  display: grid;
  gap: 28px;
}

.portfolio-gallery figure {
  margin: 0;
}

.portfolio-gallery img {
  width: 100%;
  min-height: 540px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.portfolio-gallery figcaption {
  margin-top: 10px;
  color: var(--warm-grey);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 46px;
  align-items: start;
}

.booking-panel {
  padding: 34px;
}

.booking-panel h2 {
  font-size: 30px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.booking-step.spaced {
  margin-top: 30px;
}

.booking-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--slate);
  color: var(--slate);
  font-family: var(--font-heading);
  font-weight: 700;
}

.date-grid,
.time-grid {
  display: grid;
  gap: 10px;
}

.date-grid {
  grid-template-columns: repeat(4, 1fr);
}

.time-grid {
  grid-template-columns: repeat(5, 1fr);
}

.choice-button {
  min-height: 62px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.choice-button:hover,
.choice-button.is-selected {
  border-color: var(--slate);
  background: var(--slate);
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  color: var(--slate-dark);
  font-size: 14px;
}

.consent input {
  width: auto;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  color: var(--slate);
  font-weight: 800;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line-strong);
  background: var(--cream-deep);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 24px 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-label {
  margin-bottom: 12px;
  color: var(--warm-grey);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

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

.footer-bottom {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 10px 0 14px;
  border-top: 1px solid var(--line-strong);
  color: var(--warm-grey);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    flex-direction: column;
  }

  .nav-links.is-open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: none;
    margin-top: 8px;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu.is-open,
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  .hero,
  .home-hero,
  .home-founder,
  .home-cta-strip,
  .founder-panel,
  .booking-layout,
  .section-header,
  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .home-hero {
    padding-top: 54px;
  }

  .home-cta-strip {
    margin-top: 42px;
  }

  .hero-image,
  .visual-panel {
    min-height: 420px;
  }

  .mood-words {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-nav,
  .hero,
  .home-hero,
  .home-founder,
  .home-cta-strip,
  .page-hero,
  .section,
  .credibility-line,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding-top: 54px;
  }

  .home-hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

  .section.paper {
    padding: 28px;
  }

  .home-founder {
    padding: 24px;
  }

  .home-mood {
    grid-template-columns: 1fr;
  }

  .home-mood span {
    min-height: 70px;
  }

  .portfolio-gallery img {
    min-height: 360px;
  }

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

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta,
  .text-link {
    width: 100%;
  }
}
