:root {
  --background: #f5f0e8;
  --foreground: #1e2a1f;
  --border: #dde6d5;
  --primary: #3a7d44;
  --primary-hover: #2f6638;
  --primary-foreground: #ffffff;
  --secondary: #d4e8d0;
  --secondary-foreground: #2d5e35;
  --muted: #ede8dd;
  --muted-foreground: #7a8c70;
  --cream: #eef3e8;
  --cream-foreground: #4a5740;
  --paper: #fffcf7;
  --card-stroke: #b7c8ab;
  --chrome: color-mix(in srgb, #1f2c21 82%, transparent);
  --chrome-text: #f4efe3;
  --chrome-muted: #c3d2b8;
  --chrome-border: rgba(212, 232, 208, 0.22);
  --white: #fff;
  --black: #000;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-headings: "PT Serif", Georgia, serif;
  --radius-lg: 12px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --container: 1440px;
  --pad: 48px;
  --section-y: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: #f5f0e8;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  isolation: isolate;
  background: transparent;
}

/* Kinfolk / Ease Health tarzı: krem kâğıt + çok yumuşak marka rengi mesh */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% -10%, rgba(181, 196, 160, 0.45), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(245, 232, 210, 0.7), transparent 52%),
    radial-gradient(ellipse 50% 40% at 85% 110%, rgba(111, 163, 122, 0.16), transparent 55%);
  animation: washDrift 70s ease-in-out infinite alternate;
}

@keyframes washDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-2.5%, 1.5%, 0);
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: transparent;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.04);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 8px 20px;
  font-size: 14px;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-lg {
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
}

.btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  gap: 8px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-compact:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-white {
  background: var(--primary-foreground);
  color: var(--primary);
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--cream);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-lg);
}

.link-arrow {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow:hover {
  text-decoration: underline;
}

.link-arrow.lg {
  font-size: 16px;
}

/* Header + footer chrome */
.site-header,
.site-footer {
  background: var(--chrome);
  color: var(--chrome-text);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--chrome-border);
}

.site-header .brand-name,
.footer-brand .brand-name {
  color: var(--chrome-text);
}

.site-header .brand-role {
  color: var(--chrome-muted);
}

.site-header .nav-cta {
  background: var(--paper);
  color: var(--foreground);
}

.site-header .nav-cta:hover {
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-role {
  font-size: 12px;
  color: var(--muted-foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--chrome-text);
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4e8d0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--chrome-border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--chrome-text);
  border-radius: 2px;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px var(--pad) 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  width: fit-content;
  font-size: 13px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

h1,
h2,
h3 {
  font-family: var(--font-headings);
  font-weight: 700;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.08;
}

.hero h1 .accent,
.accent {
  color: var(--primary);
}

.lead {
  font-size: 16px;
  color: var(--cream-foreground);
  line-height: 1.5;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

.hero-media {
  position: relative;
  flex-shrink: 0;
}

.hero-photo {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-photo img,
.portrait img,
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-photo:hover img,
.portrait-frame:hover img {
  transform: scale(1.1);
}

.float-card {
  position: absolute;
  border-radius: var(--radius-xl);
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
}

.float-card.left {
  bottom: -20px;
  left: -32px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.float-card.right {
  top: -20px;
  right: -24px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.float-card.about {
  bottom: -16px;
  right: -24px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 20px;
}

.float-kicker {
  font-size: 12px;
  color: var(--muted-foreground);
}

.float-card.right .float-kicker,
.float-card.about .float-kicker {
  color: var(--primary-foreground);
  font-weight: 500;
}

.float-title {
  font-size: 14px;
  font-weight: 600;
}

.float-card.right .float-title,
.float-card.about .float-title {
  font-weight: 700;
}

/* Sections */
.section {
  padding: var(--section-y) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}

.section-cream {
  background: #eef3e8;
  border-block: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.section-cream .section,
.section-bg .section {
  max-width: var(--container);
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-kicker {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.section-head h2,
.section-title-row h2 {
  font-size: 28px;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title-row p {
  color: var(--muted-foreground);
  margin-top: 4px;
  font-size: 14px;
}

/* Services */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.services-carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 10px 2px 16px;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent);
}

.services-carousel.is-dragging {
  cursor: grabbing;
}

.services-carousel.is-dragging a {
  pointer-events: none;
}

.services-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: servicesMarquee 32s linear infinite;
}

.services-carousel.is-js .services-track {
  animation: none;
}

@keyframes servicesMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

.services-carousel .service-card {
  width: 280px;
  flex: 0 0 280px;
  min-height: 196px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-carousel .service-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 22px 40px rgb(30 42 31 / 0.14);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.blog-card,
.quote-card,
.social-card {
  background: color-mix(in srgb, var(--paper) 92%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgb(30 42 31 / 0.06);
}

.service-card {
  padding: 18px;
  gap: 12px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--secondary);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.service-card p,
.muted {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.service-card .link-arrow {
  margin-top: auto;
}

/* About strip */
.about-strip {
  display: flex;
  align-items: center;
  gap: 48px;
}

.portrait {
  position: relative;
  flex-shrink: 0;
}

.portrait-frame {
  width: 260px;
  height: 312px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-copy h2 {
  font-size: 34px;
  line-height: 1.15;
}

.about-copy > p {
  font-size: 15px;
  color: var(--cream-foreground);
  line-height: 1.5;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.check-bullet {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-bullet span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

/* Blog */
.blog-card {
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 24px 44px rgb(30 42 31 / 0.14);
  position: relative;
  z-index: 2;
}

.card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.blog-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .card-img img {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag {
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

.meta {
  font-size: 12px;
  color: var(--muted-foreground);
}

.blog-card h3 {
  font-size: 16px;
  line-height: 1.375;
}

.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* Quotes */
.quote-card {
  background: color-mix(in srgb, var(--paper) 88%, var(--secondary));
  padding: 18px;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.quote-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 36px rgb(30 42 31 / 0.12);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 16px;
}

.quote-card p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.quote-author img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

/* Social phones */
.phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: end;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 12px 0 4px;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 220px;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone-wrap:hover {
  transform: translateY(-10px) scale(1.1);
  z-index: 4;
}

.phone {
  width: 200px;
  height: 410px;
  padding: 8px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, #3a3a3c, #111);
  box-shadow:
    0 28px 50px rgb(30 42 31 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.22);
  transition: transform 0.35s ease;
}

.phone-wrap:nth-child(1) .phone {
  transform: rotate(-6deg);
}

.phone-wrap:nth-child(2) .phone {
  transform: rotate(4deg);
}

.phone-wrap:hover .phone {
  transform: rotate(0deg) translateY(-4px) scale(1.08);
}

.phone-screen {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 4px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.phone-island {
  width: 72px;
  height: 16px;
  background: #111;
  border-radius: 20px;
}

.ig-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px 8px;
  font-size: 13px;
  font-weight: 700;
}

.ig-profile {
  display: flex;
  gap: 12px;
  padding: 4px 12px 8px;
  align-items: center;
}

.ig-avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  flex-shrink: 0;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid #fff;
  object-fit: cover;
}

.ig-stats {
  display: flex;
  justify-content: space-around;
  flex: 1;
  text-align: center;
  font-size: 10px;
}

.ig-stats b {
  display: block;
  font-size: 12px;
}

.ig-bio {
  padding: 0 12px 8px;
  font-size: 10.5px;
  line-height: 1.35;
}

.ig-bio strong {
  display: block;
  font-size: 11px;
}

.ig-follow {
  margin: 0 12px 8px;
  background: #0095f6;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 6px;
}

.ig-highlights {
  display: flex;
  gap: 10px;
  padding: 4px 12px 10px;
}

.ig-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: #444;
}

.ig-highlight img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #ddd;
  padding: 2px;
}

.ig-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
  font-size: 11px;
}

.ig-tabs span {
  text-align: center;
  padding: 8px 0 6px;
  color: #999;
}

.ig-tabs span.active {
  color: #111;
  border-bottom: 1px solid #111;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: #fff;
  flex: 1;
  min-height: 0;
}

.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-screen {
  background: #050505;
  color: #fff;
}

.tt-status {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.tt-video {
  position: absolute;
  inset: 0;
}

.tt-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.2), transparent 28%, transparent 55%, rgb(0 0 0 / 0.72));
}

.tt-meta {
  position: absolute;
  left: 12px;
  right: 56px;
  bottom: 18px;
  z-index: 2;
}

.tt-meta .handle {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.tt-meta p {
  font-size: 11px;
  margin-top: 6px;
  line-height: 1.35;
}

.tt-music {
  margin-top: 8px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.tt-actions {
  position: absolute;
  right: 10px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  text-align: center;
}

.tt-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  object-fit: cover;
}

.tt-plus {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fe2c55;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: -12px;
  font-weight: 700;
}

.wa-screen {
  background: #ece5dd;
}

.wa-head {
  background: #075e54;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 10px;
  font-size: 12px;
  font-weight: 600;
}

.wa-head img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

.wa-chat {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(circle at 20% 10%, rgb(255 255 255 / 0.35), transparent 40%),
    #e5ddd5;
}

.wa-bubble {
  max-width: 82%;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 10.5px;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgb(0 0 0 / 0.08);
}

.wa-bubble.in {
  background: #fff;
  align-self: flex-start;
}

.wa-bubble.out {
  background: #dcf8c6;
  align-self: flex-end;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 8px;
  opacity: 0.55;
  margin-top: 4px;
}

.phone-caption {
  text-align: center;
}

.phone-caption h3 {
  font-size: 16px;
}

.phone-caption p {
  font-size: 12px;
  color: var(--muted-foreground);
}

.phone-caption .btn {
  margin-top: 10px;
}

.social-banner {
  background: color-mix(in srgb, var(--paper) 90%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: 0 12px 32px rgb(30 42 31 / 0.05);
}

.social-banner h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.social-banner p {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* CTA */
.cta {
  background: var(--chrome);
  color: var(--chrome-text);
  border-block: 1px solid var(--chrome-border);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}

.cta h2 {
  font-size: 20px;
}

.cta p {
  margin-top: 4px;
  opacity: 0.8;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cta-phone {
  color: var(--chrome-text);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.cta-phone:hover {
  opacity: 1;
}

.cta .btn-white {
  padding: 10px 22px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 20px var(--pad) 14px;
  border-top: 1px solid var(--chrome-border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 16px;
}

.footer-brand .brand-name {
  color: var(--chrome-text);
}

.footer-brand p {
  font-size: 14px;
  color: var(--chrome-muted);
  line-height: 1.5;
  margin-top: 10px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-row a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.15s ease, color 0.15s ease;
}

.social-row a:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.18);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--chrome-text);
  margin-bottom: 10px;
}

.footer-col a,
.footer-contact span {
  display: block;
  font-size: 14px;
  color: var(--chrome-muted);
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--chrome-text);
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--chrome-muted);
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--chrome-border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--chrome-muted);
}

.footer-bottom a:hover {
  color: var(--chrome-text);
}

/* Inner pages */
.page-hero {
  padding: 36px var(--pad) 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 36px;
  line-height: 1.15;
  margin-top: 4px;
}

.page-hero p {
  margin-top: 10px;
  max-width: 40rem;
  color: var(--cream-foreground);
  font-size: 16px;
  line-height: 1.5;
}

.prose {
  max-width: 44rem;
}

.prose p {
  margin-bottom: 12px;
  color: var(--cream-foreground);
  line-height: 1.55;
}

.prose h2 {
  font-size: 24px;
  margin: 22px 0 8px;
}

.prose h3 {
  font-size: 18px;
  margin: 16px 0 6px;
}

.prose ul {
  margin: 0 0 16px 20px;
  list-style: disc;
  color: var(--cream-foreground);
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.detail-card {
  background: color-mix(in srgb, var(--paper) 92%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 32px rgb(30 42 31 / 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgb(30 42 31 / 0.1);
}

.detail-card h3 {
  font-size: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-lg);
  padding: 10px 12px;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  display: none;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  font-size: 14px;
}

.form-success.show {
  display: block;
}

.info-box {
  background: color-mix(in srgb, var(--paper) 80%, var(--secondary));
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  padding: 20px;
}

.info-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.info-box p,
.info-box a {
  font-size: 15px;
  color: var(--cream-foreground);
  margin-bottom: 10px;
}

.info-box a:hover {
  color: var(--primary);
}

.hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hours div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.article-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: 4px 0 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-hero-img:hover {
  transform: scale(1.04);
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

/* Mobile overlay nav */
.nav-overlay {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --pad: 32px;
    --section-y: 32px;
  }

  .hero {
    gap: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-photo {
    width: 260px;
    height: 260px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-strip {
    gap: 28px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --pad: 18px;
    --section-y: 28px;
  }

  .cta h2 {
    font-size: 20px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: color-mix(in srgb, #1f2c21 94%, transparent);
    border-bottom: 1px solid var(--chrome-border);
    padding: 16px 20px 24px;
    gap: 16px;
  }

  .hero,
  .about-strip,
  .cta-inner,
  .two-col,
  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .hero-photo,
  .portrait-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .portrait-frame {
    aspect-ratio: 4 / 5;
  }

  .float-card.left {
    left: 12px;
  }

  .float-card.right,
  .float-card.about {
    right: 12px;
  }

  .grid-4,
  .grid-3,
  .phones,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .phone-wrap:nth-child(3) {
    grid-column: auto;
  }

  .phone-wrap:nth-child(1) .phone,
  .phone-wrap:nth-child(2) .phone,
  .phone-wrap:nth-child(3) .phone {
    transform: none;
  }

  .stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .article-hero-img {
    height: 180px;
  }

  .hero-media,
  .portrait {
    width: 100%;
    max-width: 100%;
  }

  .cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .form input,
  .form select,
  .form textarea {
    font-size: 16px;
  }

  .phone {
    width: 180px;
    height: 370px;
  }

  .services-carousel .service-card {
    width: 240px;
    flex-basis: 240px;
  }

  .social-dock {
    right: 10px;
    bottom: 12px;
    gap: 8px;
  }

  .dock-btn,
  .cookie-fab {
    width: 42px;
    height: 42px;
  }

  .cookie-bar:not(.is-min) {
    left: 12px;
    right: 62px;
    bottom: 12px;
    width: auto;
  }
}

/* Floating social dock + cookie bar */
.social-dock {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dock-btn,
.cookie-fab {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1.5px solid var(--card-stroke);
  box-shadow: 0 8px 22px rgb(30 42 31 / 0.14);
  color: var(--foreground);
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.dock-btn:hover,
.cookie-fab:hover {
  transform: translateY(-3px) scale(1.16);
}

.dock-btn svg,
.cookie-fab svg {
  display: block;
}

.dock-btn.ig { color: #c13584; }
.dock-btn.tt {
  background: #111;
  color: #fff;
  border-color: #111;
}
.dock-btn.yt { color: #e11d48; }
.dock-btn.wa { color: #16a34a; }
.dock-btn.top {
  color: var(--primary);
  opacity: 0;
  pointer-events: none;
}
.dock-btn.top.is-on {
  opacity: 1;
  pointer-events: auto;
}

.cookie-bar {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 70;
  width: 320px;
  background: var(--paper);
  border: 1.5px solid var(--card-stroke);
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 12px 32px rgb(30 42 31 / 0.12);
}

.cookie-bar.is-min {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cookie-bar.is-min .cookie-panel {
  display: none;
}

.cookie-bar:not(.is-min) .cookie-fab {
  display: none;
}

.cookie-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}

.cookie-bar h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.cookie-bar p {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--card-stroke);
}

.cookie-actions .accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cookie-prefs {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
}

.cookie-prefs.is-open {
  display: flex;
}

.cookie-prefs label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--foreground);
}

.cookie-prefs input {
  accent-color: var(--primary);
}

.reveal-hero,
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-hero {
  animation: riseIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

.reveal.is-in {
  animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-wrap:nth-child(1) .phone,
  .phone-wrap:nth-child(2) .phone,
  .phone-wrap:nth-child(3) .phone,
  .phone-wrap:hover .phone,
  .phone-wrap:hover,
  .blog-card:hover,
  .quote-card:hover,
  .detail-card:hover,
  .services-carousel .service-card:hover {
    transform: none;
  }

  .reveal-hero,
  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  body::before {
    animation: none;
  }
}

.blog-card-placeholder {
  height: 100%;
  min-height: 140px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 13px;
  font-weight: 600;
}

.studio-body {
  min-height: 100vh;
}

.studio-login,
.studio-denied {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.studio-login[hidden],
.studio-denied[hidden],
.studio-app[hidden] {
  display: none !important;
}

.studio-login-card {
  width: min(440px, 100%);
  background: color-mix(in srgb, var(--paper) 92%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgb(30 42 31 / 0.08);
}

.studio-login-card h1,
.studio-top h1 {
  font-size: 32px;
  margin: 6px 0 8px;
}

.studio-login-card p,
.studio-top p {
  color: var(--cream-foreground);
  margin-bottom: 18px;
}

.studio-app {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px var(--pad) 64px;
}

.studio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.studio-actions,
.studio-save-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.studio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--paper) 92%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  color: inherit;
  text-decoration: none;
}

.studio-row strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.studio-row span,
.studio-hint,
.studio-empty {
  color: var(--muted-foreground);
  font-size: 13px;
}

.studio-row em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--muted);
}

.studio-row em[data-status="published"] {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.studio-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.studio-preview-wrap {
  position: sticky;
  top: 20px;
  background: color-mix(in srgb, var(--paper) 92%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  padding: 20px;
}

.studio-preview h1 {
  font-size: 28px;
  margin: 6px 0 16px;
}

.studio-status {
  min-height: 1.2em;
  font-size: 14px;
}

.studio-status[data-kind="error"] {
  color: #8a2f2f;
}

.studio-status[data-kind="ok"] {
  color: var(--primary);
}

.studio-danger {
  border-color: #b45353;
  color: #8a2f2f;
}

.studio-hint code {
  font-size: 12px;
}

.studio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.studio-toolbar button {
  background: var(--white);
  border: 1.5px solid var(--card-stroke);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.studio-toolbar button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.studio-wysiwyg {
  min-height: 280px;
  background: var(--white);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-lg);
  padding: 16px;
  outline: none;
}

.studio-wysiwyg:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.studio-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.studio-card-preview {
  margin: 12px 0 20px;
}

.studio-card-preview .blog-card {
  pointer-events: none;
}

.studio-preview.page-hero {
  padding: 0;
  max-width: none;
}

.studio-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(30 42 31 / 0.42);
}

.studio-popup[hidden] {
  display: none !important;
}

.studio-popup-card {
  width: min(420px, 100%);
  background: color-mix(in srgb, var(--paper) 94%, #fff);
  border: 1.5px solid var(--card-stroke);
  border-radius: var(--radius-xl);
  padding: 28px 24px 22px;
  box-shadow: 0 24px 48px rgb(30 42 31 / 0.18);
}

.studio-popup-card h2 {
  font-size: 28px;
  margin: 6px 0 10px;
}

.studio-popup-card p {
  color: var(--cream-foreground);
  margin-bottom: 20px;
}

.studio-popup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.studio-popup[data-kind="error"] .section-kicker {
  color: #8a2f2f;
}

@media (max-width: 900px) {
  .studio-top,
  .studio-editor {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .studio-preview-wrap {
    position: static;
  }
}
