@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");
:root {
  --bg: #100c0d;
  --paper: #f5ede5;
  --muted: #b5a6a7;
  --red: #be2945;
  --border: #382428;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 36px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font:
    16px/1.7 "DM Sans",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid #f29aaa;
  outline-offset: 7px;
}
.skip {
  position: absolute;
  top: -100px;
  z-index: 5;
  background: #a61c37;
  padding: 12px;
}
.skip:focus {
  top: 0;
}
header {
  height: 110px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.brand {
  font:
    italic 43px Georgia,
    serif;
  letter-spacing: -3px;
}
.brand span {
  font: 12px Arial;
  vertical-align: top;
  letter-spacing: 0;
  margin: 7px;
}
nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
}
nav a:hover {
  color: #ed7a90;
}
.nav-contact {
  border-bottom: 1px solid #8c6268;
  padding: 10px 0;
}
.nav-contact span {
  margin-left: 22px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 710px;
}
.hero-copy {
  padding: 69px 8% 28px 11.4%;
  position: relative;
}
.eyebrow,
.section-label,
.gallery-note,
.hero-bottom,
.image-index,
.image-bottom,
.vertical,
.placeholder-center > span:last-child,
.slot,
.contact-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d1a3aa;
}
.line {
  width: 31px;
  height: 1px;
  background: var(--red);
}
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(58px, 6.8vw, 108px);
  line-height: 1.08;
  letter-spacing: -4px;
  margin: 32px 0 25px;
}
em {
  font-weight: 400;
  color: #d74a64;
}
h1 i {
  font-weight: 400;
}
p {
  color: var(--muted);
}
.hero-copy p {
  margin-bottom: 31px;
}
.button {
  display: inline-flex;
  gap: 50px;
  align-items: center;
  background: #a7223c;
  padding: 16px 24px;
  font-size: 14px;
  transition: background 0.2s;
}
.button:hover {
  background: #c2324e;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #99878a;
  margin-top: 63px;
  font-size: 10px;
  letter-spacing: 1.6px;
}
.hero-visual {
  margin: 28px 28px 28px 0;
  min-height: 650px;
  background: radial-gradient(ellipse at 54% 36%, #762132 0, #42131f 43%, #220f15 85%);
  overflow: hidden;
}
.placeholder {
  position: relative;
}
.frame {
  position: absolute;
  inset: 24px;
  border: 1px solid #ba6a7a40;
}
.image-index {
  position: absolute;
  top: 45px;
  left: 45px;
  color: #d2a6ae;
}
.placeholder-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c69da7;
  gap: 12px;
}
.monogram {
  font:
    italic 260px/1 Georgia,
    serif;
  color: #bd78854a;
}
.image-bottom {
  position: absolute;
  bottom: 44px;
  left: 44px;
  right: 44px;
  display: flex;
  justify-content: space-between;
  color: #d2a6ae;
  font-size: 10px;
}
.vertical {
  position: absolute;
  right: 37px;
  top: 30%;
  writing-mode: vertical-rl;
  font-size: 9px;
  color: #c38e9a;
}
.ribbon {
  padding: 15px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #52232d;
  border-bottom: 1px solid #52232d;
  background: #260f17;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon span {
  font:
    27px Georgia,
    serif;
  letter-spacing: 5px;
}
.ribbon i {
  color: #c3415b;
  font-size: 22px;
}
.section {
  padding: 100px 6%;
}
.section-label {
  color: #d08b99;
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.2;
  letter-spacing: -1.8px;
  margin: 0 0 24px;
}
.about {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr 0.7fr;
  gap: 45px;
  align-items: start;
}
.about p {
  max-width: 570px;
}
.signature {
  font:
    italic 44px Georgia,
    serif;
  margin-top: 25px;
}
.small-note {
  align-self: center;
  color: var(--muted);
  font-size: 14px;
  border-left: 1px solid var(--border);
  padding-left: 38px;
}
.small-note > span {
  display: block;
  font: italic 80px Georgia;
  color: #963046;
  margin-bottom: 16px;
}
.gallery {
  border-top: 1px solid var(--border);
}
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.gallery-note {
  color: var(--muted);
  font-size: 10px;
  padding-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
figure {
  margin: 0;
}
.gallery-image {
  height: 420px;
  border: 1px solid #623440;
}
.red {
  background: linear-gradient(140deg, #781b30, #3b1020);
}
.black {
  background: linear-gradient(140deg, #292126, #121014);
}
.burgundy {
  background: linear-gradient(140deg, #491927, #261019);
}
.slot {
  position: absolute;
  top: 20px;
  left: 24px;
  color: #c68f9e;
}
.outline-letter {
  font: italic 160px/1 Georgia;
  color: transparent;
  -webkit-text-stroke: 1px #aa61706b;
}
.gallery-image .placeholder-center > span:last-child {
  font-size: 10px;
}
figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
}
h3 {
  font-size: 29px;
  margin: 0;
}
figcaption > span {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}
.contact {
  background: #270f18;
  border-top: 1px solid #582333;
  text-align: center;
  padding-top: 85px;
  padding-bottom: 85px;
}
.contact h2 {
  font-size: clamp(44px, 5vw, 72px);
}
.contact-label {
  display: inline-block;
  margin-top: 30px;
  color: #ca8a98;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 6%;
  gap: 20px;
}
footer > span,
footer > a:last-child {
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  body {
    max-width: 1800px;
    margin: auto;
  }
}
@media (max-width: 900px) {
  header {
    height: 90px;
  }
  nav {
    gap: 23px;
  }
  .hero-copy {
    padding-top: 45px;
  }
  h1 {
    letter-spacing: -2.5px;
  }
  .hero-visual {
    min-height: 590px;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
  }
  .about {
    grid-template-columns: 1fr 2fr;
  }
  .small-note {
    display: none;
  }
  .gallery-image {
    height: 310px;
  }
  .gallery-heading {
    display: block;
  }
  .gallery-note {
    display: none;
  }
}
@media (max-width: 600px) {
  header {
    height: 84px;
    padding: 0 6%;
  }
  .brand {
    font-size: 36px;
  }
  nav {
    gap: 18px;
    font-size: 12px;
  }
  .nav-contact span {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 40px 6% 30px;
  }
  h1 {
    font-size: 66px;
    letter-spacing: -2.8px;
    margin: 24px 0;
  }
  .eyebrow {
    font-size: 10px;
  }
  .hero-bottom {
    flex-direction: row;
    font-size: 9px;
  }
  .hero-visual {
    margin: 0 6% 28px;
    min-height: 450px;
  }
  .monogram {
    font-size: 210px;
  }
  .ribbon {
    gap: 27px;
  }
  .ribbon span {
    font-size: 20px;
    letter-spacing: 3px;
  }
  .ribbon span:nth-last-child(-n + 3),
  .ribbon i:nth-last-child(-n + 3) {
    display: none;
  }
  .section {
    padding: 60px 6%;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-image {
    height: 420px;
  }
  .section-label {
    font-size: 11px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer .brand {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.portfolio-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.has-photo .placeholder-center {
  display: none;
}
.has-photo .image-index,
.has-photo .image-bottom,
.has-photo .vertical,
.has-photo .slot {
  color: #fff;
  text-shadow: 0 1px 5px #000;
}
.has-photo .frame {
  z-index: 1;
  pointer-events: none;
}
