:root {
  --cream: #faf7f6;
  --blush: #ead8d3;
  --rose: #d9b8b0;
  --brown: #4d3b3b;
  --taupe: #8a7a7a;
  --gold: #c6a77b;
  --white: #fffdfc;
  --border: #efe3e1;
  --shadow: 0 18px 50px rgba(77, 59, 59, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.logo-mark {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: var(--taupe);
}

.container {
  width: min(var(--container), 90%);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  max-width: 10ch;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 246, 0.85);
  border-bottom: 1px solid rgba(239, 227, 225, 0.85);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-icon {
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(198, 167, 123, 0.35);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left, rgba(217, 184, 176, 0.45), transparent 42%),
    linear-gradient(180deg, #fffdfc, #f7efed);
  box-shadow: var(--shadow);
}

.logo-mark {
  font-size: 1.2rem;
  color: var(--brown);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--taupe);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--brown);
}

.header-cta {
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: rgba(234, 216, 211, 0.85);
  top: -60px;
  left: -50px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(217, 184, 176, 0.35);
  right: 5%;
  top: 80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

.lead {
  max-width: 52ch;
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brown);
  color: var(--cream);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  color: var(--brown);
  box-shadow: var(--shadow);
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 249, 0.96));
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background: linear-gradient(160deg, #fefbfa, #f4e8e5 70%, #eeded9);
  border: 1px solid rgba(239, 227, 225, 0.9);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.95);
}

.hero-card-copy {
  padding: 1.6rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1.6rem 1.6rem;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 253, 252, 0.8);
}

.stat-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.2rem;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-image {
  height: 190px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 227, 225, 0.9);
  overflow: hidden;
  position: relative;
}

/* 1. Landing page design — website/interface energy */
.service-image-web {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0)),
    linear-gradient(145deg, #efd8d2, #fff9f8 58%, #ead8d3);
}

.service-image-web::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.service-image-web::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.78) 0 28%,
      rgba(234,216,211,0.7) 28% 30%,
      rgba(255,255,255,0.6) 30% 58%,
      rgba(234,216,211,0.55) 58% 60%,
      rgba(255,255,255,0.72) 60% 100%
    );
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}

/* 2. Brand styling — typewriter/editorial energy */
.service-image-brand {
  background:
    linear-gradient(145deg, #f3e5e1, #fcf6f4 58%, #efe0dc);
}

.service-image-brand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 70px;
  border-radius: 14px 14px 10px 10px;
  background: #6a5755;
  box-shadow:
    0 10px 18px rgba(77, 59, 59, 0.12),
    inset 0 -10px 0 rgba(255,255,255,0.06);
}

.service-image-brand::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: 90px;
  height: 42px;
  border-radius: 8px;
  background: #fffdfc;
  box-shadow: 0 0 0 1px rgba(239, 227, 225, 0.9);
}

/* 3. Creative direction — moodboard / curation energy */
.service-image-direction {
  background:
    linear-gradient(145deg, #f1ddd8, #fff9f7 55%, #ebd8d2);
}

.service-image-direction::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 110px;
  top: 22px;
  left: 26px;
  border-radius: 12px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 0 1px rgba(239,227,225,0.9);
}

.service-image-direction::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217,184,176,0.55), rgba(198,167,123,0.22));
  box-shadow: 0 0 0 1px rgba(198,167,123,0.18);
}

.split-section {
  background: linear-gradient(180deg, #fffdfc, #faf7f6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.showcase-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.showcase-window {
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background: #fcf7f5;
  border: 1px solid rgba(239, 227, 225, 0.95);
}

.showcase-top {
  padding: 1rem;
  display: flex;
  gap: 0.4rem;
}

.showcase-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e6d2cd;
}

.showcase-main {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.showcase-large,
.showcase-small {
  border-radius: 18px;
  background: linear-gradient(145deg, #efd8d2, #fff9f8 58%, #ead8d3);
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.showcase-large::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 1.2rem;
  height: 90px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.showcase-large::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 16px;
  left: 1.2rem;
  bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(198, 167, 123, 0.32);
}

.showcase-side {
  display: grid;
  gap: 1rem;
}

.showcase-small {
  min-height: 84px;
}

.showcase-small::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(198, 167, 123, 0.34);
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  background: radial-gradient(circle at top right, rgba(234, 216, 211, 0.6), transparent 35%),
    linear-gradient(180deg, #fffdfc, #f8f2f0);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-panel p {
  max-width: 52ch;
  margin: 0 auto;
}

.contact-buttons {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  background: var(--cream);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--taupe);
}

@media (max-width: 950px) {
  .hero-grid,
  .split-grid,
  .services-grid,
  .showcase-main {
    grid-template-columns: 1fr;
  }

  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .button-row {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}