:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf7f2;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(37, 52, 58, 0.12);
  --text: #25343a;
  --muted: #5f6d71;
  --teal: #5e7a7f;
  --coral: #a95b57;
  --gold: #c59053;
  --berry: #8e3f57;
  --shadow: 0 24px 80px rgba(40, 44, 46, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 144, 83, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(94, 122, 127, 0.14), transparent 26%),
    linear-gradient(180deg, #f9f3ec 0%, #f7f2ec 45%, #f2ece4 100%);
  line-height: 1.65;
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(246, 240, 232, 0.72);
  border-bottom: 1px solid rgba(37, 52, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--berry), var(--coral));
  color: #fff9f5;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 30px rgba(142, 63, 87, 0.24);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.primary-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(169, 91, 87, 0.1);
  color: var(--coral);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(37, 52, 58, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  padding: 5.2rem 0 3.4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 240, 232, 0.12), rgba(246, 240, 232, 0.76)),
    url("./hero-art.png") center 12% / cover no-repeat;
  opacity: 0.92;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-copy,
.hero-visual,
.statement-grid,
.offer-card,
.focus-visual,
.focus-copy,
.process-card,
.about-copy,
.about-panel,
.cta-box,
.section-heading {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-lead,
.statement-copy p,
.offer-card p,
.focus-copy p,
.process-card p,
.about-copy p,
.cta-box p {
  color: var(--muted);
}

.hero-lead {
  max-width: 64ch;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 2rem 0 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), var(--berry));
  color: #fff9f5;
  box-shadow: 0 20px 40px rgba(142, 63, 87, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(37, 52, 58, 0.08);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.point-card,
.offer-card,
.process-card,
.about-panel,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.point-card {
  padding: 1.1rem;
  border-radius: 22px;
}

.point-card span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(169, 91, 87, 0.12);
  color: var(--coral);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.point-card h2 {
  font-size: 1.18rem;
  margin-bottom: 0.35rem;
}

.point-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.portrait-card {
  position: relative;
  width: min(470px, 100%);
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-glow {
  position: absolute;
  inset: auto auto -8% -12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 91, 87, 0.3), transparent 68%);
  filter: blur(2px);
}

.portrait-card img {
  position: relative;
  border-radius: 28px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, #e9edf0, #f8fbfc);
}

.quote-card {
  max-width: 340px;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(37, 52, 58, 0.9), rgba(55, 77, 82, 0.86));
  color: rgba(255, 250, 246, 0.92);
  box-shadow: 0 22px 50px rgba(37, 52, 58, 0.24);
}

.quote-card p {
  margin: 0;
  font-size: 0.98rem;
}

section {
  padding: 4.8rem 0;
}

.brand-section {
  padding-top: 3.4rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: start;
}

.statement-copy {
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.statement-copy p:first-child {
  margin-top: 0;
}

.statement-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 880px;
  margin-bottom: 2rem;
}

.offer-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.offer-card,
.process-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--teal);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.offer-card ul,
.about-panel ul,
.contact-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li,
.about-panel li,
.contact-card li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
}

.offer-card li + li,
.about-panel li + li,
.contact-card li + li {
  margin-top: 0.65rem;
}

.offer-card li::before,
.about-panel li::before,
.contact-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.focus-grid,
.about-grid,
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 2rem;
  align-items: center;
}

.focus-visual {
  position: relative;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.focus-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 28, 30, 0.06), rgba(20, 28, 30, 0.68)),
    linear-gradient(140deg, rgba(169, 91, 87, 0.12), transparent 36%);
}

.focus-overlay {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  color: #fff8f2;
  background: rgba(37, 52, 58, 0.66);
  backdrop-filter: blur(10px);
}

.focus-overlay strong,
.contact-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.topic-cloud span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(37, 52, 58, 0.08);
  font-weight: 700;
  color: var(--text);
}

.about-panel {
  padding: 1.7rem;
  border-radius: 28px;
}

.about-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-section {
  padding-bottom: 5.8rem;
}

.cta-box {
  padding: 2rem;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 243, 0.74)),
    url("./hero-art.png") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 1.6rem 0 2.6rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(37, 52, 58, 0.08);
  padding-top: 1.5rem;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .statement-grid,
  .focus-grid,
  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: start;
  }

  .hero-points,
  .offer-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 15ch;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
  }

  .nav-cta {
    text-align: center;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero-section {
    padding-top: 4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .focus-visual {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .header-inner {
    gap: 0.6rem;
  }

  .brand {
    gap: 0.7rem;
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 0.9rem;
    flex: 0 0 auto;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .portrait-card {
    padding: 0.7rem;
  }

  .quote-card,
  .point-card,
  .offer-card,
  .process-card,
  .about-panel,
  .contact-card,
  .statement-copy,
  .cta-box {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
}
