* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --ink: #111111;
  --lavender: #d5b9f7;
  --blush: #f8e4e6;
  --button: #f29aa1;
  --button-hover: #ec858d;
  --surface: #ffffff;
  --card-border: rgba(17, 17, 17, 0.08);
  --max-width: 1120px;
  --page-pad: clamp(1rem, 2.6vw, 1.75rem);
  --header-max-width: 1710px;
  --header-page-pad: clamp(1.1rem, 2.4vw, 2rem);
  --soft-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  --footer-min-height: 68px;
  --footer-padding-y: 0.85rem;
  --footer-text-size: clamp(0.8rem, 0.95vw, 0.92rem);
  --social-gap: 0.45rem;
  --social-icon-size: 26px;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
}

.site-header .shell {
  width: min(calc(100% - (var(--header-page-pad) * 2)), var(--header-max-width));
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 120px;
  padding: 0.95rem 0 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: min(100%, 305px);
  height: auto;
  filter: brightness(0);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2.8rem);
}

.site-nav a {
  font-size: clamp(0.98rem, 1.1vw, 1.2rem);
  line-height: 1.1;
  font-weight: 400;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 0.6;
}

.inside-hero {
  background: var(--blush);
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.inside-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
font-family: Caprasimo, Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}

h2 {
font-family: Caprasimo, Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}

.inside-hero p {
  max-width: 560px;
  margin: 0.75rem 0 0;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.45;
}

.content-section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3rem, 6vw, 5rem);
}

.site-footer {
  background: var(--lavender);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--footer-min-height);
  padding: var(--footer-padding-y) 0;
}

.footer-row p,
.social-links span {
  margin: 0;
  font-size: var(--footer-text-size);
}

.social-links {
  display: flex;
  align-items: center;
  gap: var(--social-gap);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  opacity: 0.75;
}

.social-links img {
  width: var(--social-icon-size);
  height: var(--social-icon-size);
}

@media (max-width: 900px) {
  .header-row {
    min-height: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.25rem);
    left: var(--page-pad);
    right: var(--page-pad);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.35rem;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1rem;
  }

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

@media (max-width: 640px) {
  .header-row {
    gap: 1rem;
    padding: 1rem 0;
  }

  .brand img {
    width: min(100%, 215px);
  }

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