:root {
  color-scheme: light;
  --ink: #2f2021;
  --muted: #745f61;
  --wine: #743e45;
  --wine-dark: #4a262b;
  --rose: #d8b7b2;
  --paper: #fffaf7;
  --cream: #f4e7df;
  --line: rgba(91, 52, 57, 0.17);
  --shadow: 0 24px 70px rgba(75, 38, 43, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 183, 178, 0.38), transparent 30rem),
    linear-gradient(180deg, #fffdfb 0%, var(--paper) 48%, #f9f0eb 100%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 22px rgba(75, 38, 43, 0.14);
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--wine); }

.hero {
  min-height: 69vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
  padding: 70px 0 100px;
}

.eyebrow {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 { font-weight: 400; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(3.25rem, 7vw, 6.7rem); letter-spacing: -0.045em; max-width: 820px; }
h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.35rem; }

.hero p { max-width: 650px; color: var(--muted); font-size: 1.15rem; margin: 28px 0 34px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  transition: 160ms ease;
}

.button:hover, .button:focus-visible { background: var(--wine-dark); transform: translateY(-1px); }
.button.secondary { color: var(--wine); background: transparent; }

.monogram-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 18px 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ead3cb, #f7eee9);
  border: 1px solid rgba(116, 62, 69, 0.13);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.monogram-card::before, .monogram-card::after {
  content: "";
  position: absolute;
  width: 68%;
  height: 68%;
  border: 1px solid rgba(116, 62, 69, 0.18);
  border-radius: 50%;
}

.monogram-card::after { width: 48%; height: 48%; }
.monogram-card img { position: relative; z-index: 1; width: 44%; border-radius: 50%; box-shadow: 0 18px 45px rgba(75,38,43,.14); }

.section { padding: 100px 0; }
.section-heading { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 55px; }
.section-heading p { margin: 0; color: var(--muted); max-width: 630px; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service {
  min-height: 245px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}
.service span { display: block; color: var(--rose); font-size: 2rem; margin-bottom: 42px; }
.service p { color: var(--muted); margin: 14px 0 0; font-size: .98rem; }

.contact-band {
  margin: 50px auto 100px;
  padding: clamp(40px, 7vw, 80px);
  border-radius: 24px;
  color: white;
  background: var(--wine-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.contact-band p { color: #ead8d5; max-width: 650px; }
.contact-band .button { background: white; border-color: white; color: var(--wine-dark); }

footer { border-top: 1px solid var(--line); padding: 32px 0 44px; color: var(--muted); font-size: .88rem; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.legal-header { padding: 70px 0 52px; border-bottom: 1px solid var(--line); }
.legal-header h1 { font-size: clamp(2.7rem, 6vw, 5rem); margin: 12px 0 18px; }
.legal-header p { color: var(--muted); max-width: 760px; }
.legal { width: min(820px, calc(100% - 36px)); margin: 0 auto; padding: 68px 0 110px; }
.legal h2 { font-size: 1.7rem; margin: 48px 0 16px; letter-spacing: -0.015em; }
.legal p, .legal li { color: #594649; }
.legal li + li { margin-top: 9px; }
.legal .notice { padding: 24px; border-radius: 14px; background: var(--cream); border: 1px solid var(--line); }

@media (max-width: 780px) {
  body { font-size: 16px; }
  .nav { min-height: 78px; }
  .nav-links a:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 52px 0 74px; }
  .monogram-card { aspect-ratio: 5 / 3.4; border-radius: 110px 110px 16px 16px; }
  .monogram-card img { width: 30%; }
  .section { padding: 72px 0; }
  .section-heading, .contact-band { grid-template-columns: 1fr; gap: 24px; }
  .services { grid-template-columns: 1fr; }
  .service { min-height: 0; }
  .service span { margin-bottom: 24px; }
}
