:root {
  --ink: #1e2238;
  --teal: #3f658f;
  --teal-deep: #315477;
  --accent-rose: #bf5e84;
  --accent-amber: #b48335;
  --accent-mint: #3f8b7b;
  --accent-violet: #6f62a8;
  --mint: #cbf1e9;
  --sun: #f4c852;
  --sand: #fffaf2;
  --white: #ffffff;
  --muted: #576173;
  --radius: 14px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(251, 206, 216, 0.38) 0%, rgba(251, 206, 216, 0) 55%),
    radial-gradient(circle at 82% 10%, rgba(255, 227, 179, 0.35) 0%, rgba(255, 227, 179, 0) 52%),
    radial-gradient(circle at 86% 78%, rgba(188, 236, 219, 0.34) 0%, rgba(188, 236, 219, 0) 54%),
    radial-gradient(circle at 14% 86%, rgba(199, 221, 255, 0.34) 0%, rgba(199, 221, 255, 0) 56%),
    linear-gradient(165deg, #fff8f1 0%, #f4f8ff 54%, #f7f5ff 100%);
  line-height: 1.6;
}

a {
  color: var(--teal);
}

a:hover {
  color: var(--teal-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: clamp(44px, 9vw, 64px);
  width: auto;
  display: block;
}

.top-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: transparent;
}

.tab-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.tab-link:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--teal);
  transform: translateY(-1px);
}

.tab-link.is-active {
  background: var(--white);
  color: var(--teal);
  box-shadow:
    0 4px 12px rgba(63, 101, 143, 0.16),
    0 0 0 1px rgba(111, 98, 168, 0.22);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(191, 94, 132, 0.95) 0%,
    rgba(180, 131, 53, 0.95) 34%,
    rgba(63, 139, 123, 0.95) 67%,
    rgba(111, 98, 168, 0.95) 100%
  );
  color: var(--white);
  box-shadow: 0 6px 16px rgba(57, 51, 88, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(57, 51, 88, 0.34);
}

.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.7rem 1.25rem 3rem;
  text-align: center;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero .tagline {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.section h2 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-deep);
  margin: 0 0 0.75rem;
}

.section p {
  margin: 0 0 1rem;
}

.site-footer {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.fab-book {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--white);
  background: linear-gradient(
    135deg,
    rgba(191, 94, 132, 0.95) 0%,
    rgba(180, 131, 53, 0.95) 34%,
    rgba(63, 139, 123, 0.95) 67%,
    rgba(111, 98, 168, 0.95) 100%
  );
  box-shadow: 0 8px 28px rgba(30, 34, 56, 0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 34, 56, 0.3);
}

.fab-book:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.about-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.2rem 1.25rem 3.5rem;
}

.about-card {
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  text-align: center;
}

.owner-photo-wrap {
  width: 168px;
  height: 168px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  padding: 0;
  background: none;
  box-shadow: 0 10px 24px rgba(63, 101, 143, 0.24);
}

.owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.about-eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.24rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    rgba(191, 94, 132, 0.24) 0%,
    rgba(180, 131, 53, 0.22) 34%,
    rgba(63, 139, 123, 0.22) 67%,
    rgba(111, 98, 168, 0.24) 100%
  );
  color: var(--teal-deep);
}

.about-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  color: var(--ink);
}

.about-subtitle {
  margin: 0;
  font-weight: 700;
  color: #3d5169;
}

.about-copy {
  margin: 1.1rem auto 1.3rem;
  max-width: 56ch;
  color: var(--muted);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.highlight {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 249, 255, 0.96) 100%);
  border: 1px solid rgba(111, 98, 168, 0.24);
  padding: 0.9rem 0.75rem;
  box-shadow: 0 6px 14px rgba(63, 101, 143, 0.08);
}

.highlight .label {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d7686;
}

.highlight .value {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

@media (min-width: 640px) {
  .fab-book {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 739px) {
  .header-inner {
    justify-content: center;
  }

  .top-tabs {
    order: 3;
  }
}

@media (max-width: 580px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}
