* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #888884;
  --border: #e8e6e0;
  --accent: #2d2d2d;
}
body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }

.topbar { background: var(--bg); padding: 32px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: "Cormorant Garamond", Georgia, serif; font-size: 18px; font-weight: 500; line-height: 1.1; letter-spacing: 0.05em; }
.logo span { font-size: 12px; color: var(--muted); letter-spacing: 0.2em; }
.topbar nav { display: flex; gap: 38px; }
.topbar nav a { color: var(--text); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; transition: opacity .15s; }
.topbar nav a:hover { opacity: 0.55; }

.hero { padding: 120px 0 160px; }
.overline { display: inline-block; color: var(--muted); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 32px; }
.hero h1 { font-size: 96px; line-height: 1.05; margin-bottom: 36px; font-weight: 300; }
.hero .lead { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 48px; font-weight: 400; }
.link-underline { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; border-bottom: 1px solid var(--text); padding-bottom: 6px; transition: opacity .15s; }
.link-underline:hover { opacity: 0.6; }

section { padding: 100px 0; }
.section-head { margin-bottom: 64px; }
h2 { font-size: 64px; line-height: 1.1; }

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: 320px 320px 320px; gap: 24px; }
.gallery figure { position: relative; overflow: hidden; }
.gallery .img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 60px; opacity: 0.6; transition: transform .4s; }
.gallery figure:hover .img { transform: scale(1.04); }
.gallery figcaption { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 14px; color: var(--muted); margin-top: 12px; }
.g1 { grid-column: 1 / 4; grid-row: 1; }
.g2 { grid-column: 4 / 7; grid-row: 1; }
.g3 { grid-column: 1 / 3; grid-row: 2; }
.g4 { grid-column: 3 / 5; grid-row: 2; }
.g5 { grid-column: 5 / 7; grid-row: 2; }
.g6 { grid-column: 2 / 6; grid-row: 3; }

.about { background: var(--surface); }
.about-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.photo-frame { width: 100%; aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond", Georgia, serif; font-size: 180px; color: rgba(0,0,0,0.2); }
.about-text p { color: var(--muted); font-size: 17px; margin-bottom: 22px; max-width: 540px; }
.credentials { margin-top: 36px; }
.credentials li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.credentials li:last-child { border-bottom: none; }

.service-list { border-top: 1px solid var(--border); }
.service-row { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--border); }
.service-row h3 { font-size: 32px; margin-bottom: 8px; }
.service-row p { color: var(--muted); font-size: 16px; max-width: 600px; }
.service-price { font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; font-style: italic; color: var(--accent); white-space: nowrap; }

.contact { background: var(--accent); color: #fff; text-align: center; padding: 140px 0; }
.contact h2 { color: #fff; font-size: 80px; margin-bottom: 24px; font-style: italic; }
.contact p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 40px; }
.contact-info { font-size: 18px; display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.contact-info a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 4px; transition: border-color .15s; }
.contact-info a:hover { border-color: #fff; }
.contact-info span { color: rgba(255,255,255,0.3); }

footer { padding: 28px 0; background: var(--accent); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { display: flex; justify-content: space-between; color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; flex-wrap: wrap; gap: 12px; }

@media (max-width: 900px) {
  .topbar nav { display: none; }
  .hero { padding: 64px 0 80px; }
  .hero h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  section { padding: 64px 0; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: 1; grid-row: auto; height: 280px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .contact h2 { font-size: 44px; }
}
