:root {
  --paper: #f7f4ed;
  --paper-deep: #ece4d6;
  --ink: #24211e;
  --muted: #6c665d;
  --gold: #a58852;
  --line: rgba(36, 33, 30, 0.16);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 1.2rem clamp(1.25rem, 4vw, 4.6rem) 1.5rem;
  background:
    radial-gradient(circle at 96% 2%, rgba(193, 166, 108, 0.11), transparent 23rem),
    radial-gradient(circle at 5% 98%, rgba(175, 141, 77, 0.08), transparent 24rem),
    var(--paper);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.topline,
.hero,
.service-strip,
footer { position: relative; z-index: 1; }

.topline {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  max-width: 1350px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline a { text-decoration: none; transition: color 160ms var(--ease-out); }
.topline a:hover { color: var(--gold); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.84fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  max-width: 1200px;
  margin: clamp(2.4rem, 7vh, 5.6rem) auto clamp(2.5rem, 6vh, 4.8rem);
}

.hero__content { padding: 1rem 0; }

.logo-link { display: inline-block; margin-bottom: clamp(2rem, 4vh, 3.2rem); }
.logo-window {
  display: block;
  width: 210px;
  height: 92px;
  overflow: hidden;
  background: #f8f6f0;
}
.logo-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
  transform-origin: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 630px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 7.1rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.89;
}

h1 em {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 530px;
  margin: 2rem 0 0;
  color: #59544d;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.5rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.3rem;
  padding: 0.92rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.97); }
.button--ink { color: #fbf8f1; background: var(--ink); }
.button--ink:hover { background: var(--gold); }
.button--text { min-height: auto; padding: 0.55rem 0; border-bottom-color: var(--gold); }
.button--text:hover { color: var(--gold); }

.assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 2.6rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.assurances span::before { content: "✓"; padding-right: 0.34rem; color: var(--gold); }

.hero__visual { position: relative; padding: 0 1.3rem 1.4rem 0; }
.image-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(385px, 55vw, 620px);
  border-radius: 8rem 0.5rem 0.5rem 0.5rem;
  box-shadow: 1.2rem 1.25rem 0 var(--paper-deep);
  background: #d9d4cb;
}
.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(0,0,0,0.08), transparent 55%);
  pointer-events: none;
}
.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 46%;
  filter: grayscale(1) contrast(1.08);
}

.photo-note {
  position: absolute;
  right: -1.7rem;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem 1.2rem;
  color: var(--gold);
  background: rgba(250, 247, 240, 0.96);
  box-shadow: 0 10px 25px rgba(55, 44, 27, 0.08);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.service-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  max-width: 1350px;
  margin: 0 auto;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #5b554c;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-strip p { margin: 0; }
.service-strip span { color: var(--gold); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1350px;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}
footer p { margin: 0; }

@media (max-width: 760px) {
  .page-shell { padding: 1rem 1.3rem 1.35rem; }
  .topline { justify-content: center; font-size: 0.59rem; letter-spacing: 0.06em; }
  .hero { grid-template-columns: 1fr; gap: 2.7rem; margin: 2.2rem auto 2.4rem; }
  .hero__content { padding: 0; }
  .logo-link { margin-bottom: 2.2rem; }
  .logo-window { width: 176px; height: 78px; }
  h1 { font-size: clamp(3.35rem, 15vw, 5.2rem); }
  .lead { margin-top: 1.55rem; font-size: 0.99rem; }
  .actions { margin-top: 1.7rem; gap: 0.7rem 1.15rem; }
  .button { min-height: 3.15rem; padding-inline: 1rem; font-size: 0.66rem; }
  .assurances { margin-top: 2rem; gap: 0.5rem 0.9rem; font-size: 0.57rem; }
  .hero__visual { max-width: 440px; padding-right: 0.7rem; margin: 0 auto; }
  .image-frame { min-height: 455px; border-radius: 5.5rem 0.4rem 0.4rem 0.4rem; box-shadow: 0.7rem 0.8rem 0 var(--paper-deep); }
  .photo-note { right: -0.2rem; padding: 0.75rem 0.9rem; font-size: 0.9rem; }
  .service-strip { gap: 0.55rem 0.72rem; padding: 0.9rem 0; font-size: 0.56rem; }
  footer { display: grid; gap: 0.35rem; margin-top: 1rem; font-size: 0.64rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
