:root {
  --bg: #f7f1ec;
  --bg-soft: #fbf7f4;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #342f31;
  --text-soft: #6f6367;
  --accent: #7b4b5d;
  --accent-soft: #b78a98;
  --border: rgba(123, 75, 93, 0.16);
  --shadow: 0 20px 60px rgba(73, 42, 53, 0.08);
  --shadow-soft: 0 12px 30px rgba(73, 42, 53, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(183, 138, 152, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(162, 133, 121, 0.10), transparent 22%),
    linear-gradient(180deg, #fbf7f4 0%, #f5efea 100%);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-shell {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 28px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 72px;
  min-height: 84vh;
  padding: 40px 0 80px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 8ch;
}

.hero-title {
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  max-width: 38ch;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 52ch;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(123, 75, 93, 0.18);
}

.btn-primary:hover {
  background: #6b4151;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(183, 138, 152, 0.24)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 12px);
  aspect-ratio: 4 / 5;
}

.section {
  padding: 76px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-content.prose {
  max-width: 72ch;
}

.prose p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1rem;
}

.cards-section .center {
  text-align: center;
  margin-bottom: 34px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  min-height: 260px;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(123, 75, 93, 0.24);
}

.card-number {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.card h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.06;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.expertise-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.expertise-item {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 500;
  min-height: 92px;
  display: flex;
  align-items: center;
}

.quote-section {
  padding-top: 96px;
}

.quote-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 52px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.58)
  );
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(12px);
}

.quote-box blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.quote-support {
  margin: 22px auto 0;
  max-width: 58ch;
  color: var(--text-soft);
}

.contact-section {
  padding-bottom: 36px;
}

.contact-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(123, 75, 93, 0.95),
    rgba(98, 60, 74, 0.95)
  );
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 60px rgba(87, 48, 62, 0.22);
}

.contact-card .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card p {
  max-width: 50ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-link {
  display: inline-block;
  margin-top: 28px;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 3px;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.contact-link:hover {
  opacity: 0.88;
  border-color: rgba(255, 255, 255, 0.8);
}

.footer {
  padding-top: 22px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .expertise-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, var(--max-width));
    padding-top: 10px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .hero {
    padding: 18px 0 48px;
    gap: 28px;
  }

  .hero-title,
  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .cards-grid,
  .expertise-list {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .quote-box,
  .contact-card {
    padding: 38px 24px;
  }

  .quote-box blockquote {
    font-size: 2rem;
  }
}
.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 10px 0 20px;
  }

  .site-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .site-logo img {
    width: min(220px, 82vw);
    height: auto;
    display: block;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}