:root {
  --bg: #f7f1e7;
  --bg-soft: #fffaf4;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #2a332c;
  --muted: rgba(42, 51, 44, 0.7);
  --line: rgba(76, 92, 79, 0.12);
  --accent: #d7b364;
  --accent-2: #c6d8b5;
  --accent-3: #edf4dc;
  --shadow: 0 22px 70px rgba(98, 84, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(198, 216, 181, 0.55), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 224, 189, 0.5), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 52%, #f3ebdf 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.grain,
.bg-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  opacity: 0.05;
  background-image: radial-gradient(#7d836f 0.6px, transparent 0.6px);
  background-size: 10px 10px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.bg-orb {
  filter: blur(84px);
}

.orb-1 {
  background: radial-gradient(circle, rgba(215, 179, 100, 0.24), transparent 42%);
  transform: translate(-10%, -16%);
}

.orb-2 {
  background: radial-gradient(circle, rgba(198, 216, 181, 0.3), transparent 45%);
  transform: translate(52%, 10%);
}

.site-header,
.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.8), rgba(255, 250, 244, 0.42));
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand span,
.hero h1,
.section-heading h2,
.statement h2,
.maria-card h3,
.contact-panel h2,
.art-copy strong {
  font-family: "Cormorant Garamond", serif;
}

.brand span {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.brand small,
nav a,
.eyebrow,
.hero-meta span,
.placeholder span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 22px;
}

.logo-lab {
  padding: 34px 0 8px;
}

.logo-lab-heading {
  margin-bottom: 22px;
}

.logo-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.logo-option {
  border: 1px solid rgba(76, 92, 79, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,241,230,0.72));
  border-radius: 24px;
  padding: 16px 14px;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 36px rgba(98, 84, 58, 0.08);
}

.logo-option:hover,
.logo-option.active {
  transform: translateY(-3px);
  border-color: rgba(215, 179, 100, 0.62);
  box-shadow: 0 18px 40px rgba(98, 84, 58, 0.14);
}

.logo-option img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.logo-option strong,
.logo-option span {
  display: block;
}

.logo-option strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.logo-option span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  padding: 82px 0 58px;
  align-items: center;
}

.hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.92;
  font-weight: 600;
  max-width: 8ch;
}

.lead,
.statement p,
.maria-card p,
.service-card p,
.contact-panel p,
.section-heading p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.hero-meta strong {
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  transition: 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 92, 79, 0.28);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0d793);
  color: #463520;
  border: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(215, 179, 100, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.5);
}

.hero-art {
  position: relative;
  min-height: 660px;
}

.art-card,
.panel {
  border: 1px solid rgba(76, 92, 79, 0.09);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.main-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 620px;
  border-radius: 36px;
  padding: 26px;
  overflow: hidden;
}

.line-work {
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 25% 30%, transparent 0 30px, rgba(215, 179, 100, 0.45) 31px 32px, transparent 33px),
    radial-gradient(circle at 58% 48%, transparent 0 84px, rgba(130, 158, 116, 0.22) 85px 86px, transparent 87px),
    radial-gradient(circle at 67% 38%, transparent 0 146px, rgba(241, 203, 150, 0.34) 147px 148px, transparent 149px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(237, 244, 220, 0.32) 36%, transparent 72%);
}

.line-work::before,
.line-work::after {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border: 1px solid rgba(116, 136, 107, 0.18);
  border-radius: 42% 58% 64% 36% / 36% 42% 58% 64%;
  transform: rotate(10deg);
}

.line-work::after {
  inset: 18% 15%;
  border-color: rgba(215, 179, 100, 0.3);
  transform: rotate(-8deg);
}

.art-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.art-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.art-copy strong {
  display: block;
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
}

.note-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 240px;
  border-radius: 26px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(237, 244, 220, 0.92), rgba(255, 255, 255, 0.84));
}

.note-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 22px 0 38px;
}

.panel {
  border-radius: 30px;
  padding: 32px;
}

.statement,
.contact-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.88), rgba(248,241,230,0.74));
}

.maria-card {
  background: linear-gradient(160deg, rgba(237, 244, 220, 0.86), rgba(255, 255, 255, 0.8));
}

.statement h2,
.section-heading h2,
.contact-panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  font-weight: 600;
}

.maria-card h3,
.service-card h3 {
  margin: 8px 0 10px;
  font-size: 2.2rem;
  font-weight: 600;
}

.maria-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.services,
.portfolio {
  padding: 44px 0;
}

.cards-3,
.portfolio-grid {
  display: grid;
  gap: 20px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.service-card {
  min-height: 220px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(250,245,236,0.7));
}

.narrow {
  max-width: 760px;
}

.portfolio-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 220px;
  margin-top: 28px;
}

.placeholder {
  display: flex;
  align-items: end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.16)),
    radial-gradient(circle at top right, rgba(215, 179, 100, 0.22), transparent 38%),
    radial-gradient(circle at bottom left, rgba(198, 216, 181, 0.28), transparent 44%),
    #fbf7f0;
}

.placeholder.tall { grid-row: span 2; }
.placeholder.wide { grid-column: span 2; }

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

@media (max-width: 980px) {
  nav { display: none; }
  .logo-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero,
  .intro-grid,
  .contact,
  .cards-3,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 560px;
  }

  .main-card {
    position: relative;
    height: 520px;
  }

  .note-card {
    left: auto;
    right: 18px;
    bottom: 16px;
  }

  .placeholder.tall,
  .placeholder.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-panel {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header { padding-top: 14px; }
  .logo-lab { padding-top: 20px; }
  .logo-option { padding: 14px; }
  .hero { padding-top: 42px; }
  .hero-meta { grid-template-columns: 1fr; }
  .main-card { height: 420px; padding: 18px; border-radius: 26px; }
  .panel { padding: 24px; border-radius: 24px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 1.5rem; }
}
