@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap");

:root {
  color-scheme: light;
  --ink: #22332b;
  --ink-soft: #536158;
  --cream: #f7f3e9;
  --cream-deep: #ece4d2;
  --green: #254e3c;
  --green-deep: #173b2d;
  --terracotta: #b55327;
  --gold: #d49a2a;
  --line: rgba(37, 78, 60, 0.18);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: radial-gradient(rgba(37, 78, 60, .16) .6px, transparent .6px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

a { color: inherit; }

.page-shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.brand img { width: 42px; height: 42px; object-fit: contain; }
.header-note { color: var(--ink-soft); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.hero {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-block: clamp(60px, 10vh, 110px);
}

.hero-copy { max-width: 650px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--terracotta);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--gold); }

h1 {
  margin: 0;
  color: var(--green-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 7.5vw, 7.2rem);
  line-height: .94;
  letter-spacing: -.055em;
}
h1 em { color: var(--terracotta); font-weight: 600; }

.lead {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.contact-block {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 42px;
  padding: 15px 20px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 252, 244, .6);
}
.contact-label { margin: 0; color: var(--ink-soft); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.email-link { color: var(--green); font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.email-link span { display: inline-block; margin-left: 4px; color: var(--terracotta); transition: transform .2s ease; }
.email-link:hover span { transform: translate(3px, -3px); }

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(560px, 55vw);
}
.hero-art::before {
  content: "";
  position: absolute;
  width: min(470px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-deep);
}
.hero-art img {
  position: relative;
  width: min(390px, 32vw);
  filter: drop-shadow(0 22px 20px rgba(34, 51, 43, .16));
  animation: float 6s ease-in-out infinite;
}
.art-ring { position: absolute; border: 1px solid rgba(181, 83, 39, .4); border-radius: 50%; transform: rotate(-15deg); }
.art-ring-one { width: min(510px, 47vw); aspect-ratio: 1; border-left-color: transparent; border-bottom-color: transparent; }
.art-ring-two { width: min(580px, 53vw); aspect-ratio: 1; border-color: rgba(37, 78, 60, .25); border-right-color: transparent; transform: rotate(35deg); }
.art-caption { position: absolute; right: 0; bottom: 8%; display: grid; gap: 4px; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: 1rem; font-style: italic; }
.art-caption span:last-child { padding-left: 28px; color: var(--terracotta); }

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-block: 22px 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .05em;
}
.site-footer p { margin: 0; }
.footer-right span { color: var(--gold); padding-left: 4px; }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(1deg); } }

@media (max-width: 780px) {
  .container { width: min(100% - 40px, 560px); }
  .site-header { padding-top: 20px; }
  .header-note { display: none; }
  .hero { grid-template-columns: 1fr; gap: 22px; padding-block: 54px 32px; }
  .hero-copy { order: 1; }
  .hero-art { order: 0; min-height: 300px; }
  .hero-art::before { width: 280px; }
  .hero-art img { width: 225px; }
  .art-ring-one { width: 320px; }
  .art-ring-two { width: 370px; }
  .art-caption { right: 5%; bottom: 5%; font-size: .86rem; }
  h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .lead { margin-top: 22px; line-height: 1.6; }
  .contact-block { margin-top: 30px; }
  .site-footer { gap: 12px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art img { animation: none; }
  .email-link span { transition: none; }
}
