:root {
  --ink: #f3efe6;
  --ink-soft: rgba(243, 239, 230, 0.75);
  --ink-faint: rgba(243, 239, 230, 0.55);
  --night: #12141b;
  --night-2: #1a1f2b;
  --night-3: #202634;
  --gold: #c2a36b;
  --gold-soft: #e6d1a3;
  --line: rgba(194, 163, 107, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: auto;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 70% 10%, rgba(33, 39, 54, 0.6), transparent 70%),
    linear-gradient(180deg, #0f1219 0%, #141a25 45%, #0d1016 100%);
  min-height: 100vh;
  overflow-y: visible;
}

a {
  color: inherit;
}

.page {
  --page-pad: clamp(18px, 4vw, 70px);
  position: relative;
  min-height: 100vh;
  padding: 32px var(--page-pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  overflow: visible;
  max-width: 100vw;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}

.cta {
  text-decoration: none;
  font-weight: 600;
  color: var(--night);
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #f4e2bc, #c8a45e);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page::before {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 163, 107, 0.18), transparent 65%);
  top: -200px;
  right: -120px;
}

.page::after {
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 30, 42, 0.7), transparent 70%);
  bottom: -240px;
  left: -260px;
}



.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(20, 24, 34, 0.9), rgba(26, 32, 44, 0.92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: rise 0.7s ease both;
  min-width: 0;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--gold);
  margin: 0;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
}

.lead {
  margin: 0;
  font-size: 18px;
  color: var(--ink-soft);
}

.sublead {
  margin: 0;
  color: var(--ink-faint);
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
}

.hero__note {
  font-size: 14px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  color: var(--night);
  background: linear-gradient(120deg, #f4e2bc, #c8a45e);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero__portrait {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: rise 0.8s ease both;
  animation-delay: 0.1s;
  min-width: 0;
}

.portrait-frame {
  position: relative;
  width: min(360px, 90vw);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: #2b2f3b;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.portrait-frame--full {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-frame--full img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__text {
    max-width: 100%;
  }
}

.badge {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: rgba(18, 20, 27, 0.8);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}

.section-title h2 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.02em;
}

.services,
.about,
.contact {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px;
  scroll-margin-top: 120px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: linear-gradient(140deg, rgba(22, 26, 36, 0.95), rgba(30, 36, 48, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 12px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(194, 163, 107, 0.18);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--gold-soft);
}

.service-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--ink-faint);
  line-height: 1.5;
}

.services__note {
  max-width: 780px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.services__note p {
  margin: 0;
}

.about__content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(20, 24, 34, 0.95), rgba(32, 38, 52, 0.98));
}

.about__portrait {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.about__portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.about__text {
  display: grid;
  gap: 14px;
}

.about__text h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
}

.about__lead {
  margin: 0;
  color: var(--ink-soft);
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-faint);
}

.about__list li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.about__quote {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  font-style: italic;
}

.contact__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(20, 24, 34, 0.95), rgba(32, 38, 52, 0.98));
}

.contact__info {
  display: grid;
  gap: 18px;
}

.info-item span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 12px;
}

.info-item a,
.info-item p {
  margin: 6px 0 0;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}


.footer {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }

  .about__content,
  .contact__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 24px 18px 32px;
    text-align: center;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 20px;
  }

  .hero__actions {
    justify-content: center;
  }

  .section-title {
    align-items: center;
    text-align: center;
  }

  .service-card,
  .about__text,
  .contact__content,
  .services__note {
    text-align: center;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
