:root {
  --ink: #191817;
  --paper: #2f6fe4;
  --cream: #eef6f9;
  --pink: #ff5d8f;
  --orange: #ff8056;
  --yellow: #f7dc54;
  --blue: #67b7d1;
  --green: #89bd78;
  --purple: #9a78c8;
  --border: rgba(25, 24, 23, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 240, 231, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  letter-spacing: .1em;
  font-size: 14px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}
.nav { display: flex; gap: 30px; font-size: 13px; }
.nav a:hover, .text-link:hover, .email-link:hover { opacity: .55; }
.header-contact {
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.header-contact:hover { background: var(--ink); color: var(--paper); }

.hero {
  min-height: calc(100vh - 76px);
  max-width: var(--max);
  margin: auto;
  padding: 8vh 4vw 10vh;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 5vw;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2 { margin: 0; line-height: .9; letter-spacing: -.055em; }
h1 { font-size: clamp(75px, 11vw, 155px); }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.08em; }
.hero-text {
  max-width: 440px;
  margin: 30px 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
}
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button {
  display: inline-block;
  padding: 15px 23px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: var(--paper); color: var(--ink); }
.button-outline { border: 1px solid var(--ink); margin-top: 18px; }
.text-link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hero-art { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.art-card { position: relative; width: min(100%, 440px); }
.art-card-back { display: none; }
.art-card-main {
  right: auto;
  top: auto;
  background: #ffffff;
  transform: none;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(25, 24, 23, .12);
}
.image-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 25% 20%, #ffffff 0 13%, transparent 13.5%),
    radial-gradient(circle at 70% 75%, var(--yellow) 0 20%, transparent 20.5%),
    linear-gradient(135deg, #78b7cb, #d6edf4);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}
.hero-photo { width: 100%; height: auto; object-fit: contain; display: block; border-radius: 0; }

.art-label {
  position: absolute;
  bottom: 30px;
  left: 35px;
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 800;
}
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.shape-one, .shape-two { display: none; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 15px 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.ticker div { animation: ticker 24s linear infinite; display: inline-block; }
@keyframes ticker { to { transform: translateX(-30%); } }

.section { max-width: var(--max); margin: auto; padding: 120px 4vw; }
.section-number { font-size: 11px; letter-spacing: .15em; font-weight: 800; margin-bottom: 50px; }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10vw; }
.intro h2 { font-size: clamp(50px, 7vw, 90px); }
.intro h2 span { color: var(--pink); }
.intro-copy { font-size: 18px; max-width: 500px; }
.intro-copy p + p { margin-top: 25px; }

.gallery { background: var(--cream); max-width: none; padding-left: 7vw; padding-right: 7vw; }
.section-heading { max-width: var(--max); margin: 0 auto 60px; display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.section-heading h2 { font-size: clamp(55px, 7vw, 92px); }
.heading-note { max-width: 250px; font-size: 13px; }
.gallery-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  background: transparent;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.gallery-wide { grid-column: 1 / -1; }
.gallery-item:hover img { transform: scale(1.015); }

.services { background: var(--ink); color: var(--paper); max-width: none; padding-left: 7vw; padding-right: 7vw; }
.services .section-number { color: var(--yellow); }
.service-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { padding: 55px; min-height: 570px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card .eyebrow { opacity: .7; }
.service-card h2 { font-size: clamp(60px, 7vw, 100px); }
.service-card p { max-width: 430px; font-size: 16px; }
.service-card .text-link { margin-top: 25px; align-self: flex-start; }
.service-face { background: var(--pink); color: var(--ink); }
.service-body { background: var(--blue); color: var(--ink); }

.about { display: block; }
.about-copy { max-width: 850px; }
.about-copy h2 { font-size: clamp(55px, 7vw, 95px); margin-bottom: 40px; }
.about-copy p:not(.eyebrow) { max-width: 550px; font-size: 17px; }
.about-copy p + p { margin-top: 20px; }

.booking {
  max-width: none;
  background: var(--orange);
  padding-left: 7vw; padding-right: 7vw;
}
.booking-inner { max-width: var(--max); margin: auto; }
.booking h2 { font-size: clamp(65px, 9vw, 120px); max-width: 950px; }
.booking p:not(.eyebrow) { max-width: 550px; font-size: 18px; margin: 35px 0; }
.rate {
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid rgba(25,24,23,.3);
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.rate span, .rate small { font-size: 12px; }
.rate strong { font-size: 28px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.contact h2 { font-size: clamp(65px, 8vw, 110px); }
.contact-details { padding-top: 30px; }
.email-link { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(28px, 4vw, 50px); margin: 35px 0; overflow-wrap: anywhere; }
.contact-note { max-width: 400px; font-size: 13px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 25px 4vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .site-header { min-height: 64px; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-art { min-height: 400px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .intro-grid, .about, .contact, .service-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 45px; }
  .gallery { padding-left: 4vw; padding-right: 4vw; }
  .section-heading { display: block; }
  .heading-note { margin-top: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .service-card { min-height: 470px; padding: 35px; }
  .contact { gap: 45px; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 480px) {
  .header-contact { display: none; }
  .hero { min-height: auto; padding-bottom: 70px; }
  h1 { font-size: 72px; }
  .hero-art { min-height: 330px; }
  .art-card { width: min(100%, 360px); }
 .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: 1; }
  .service-card h2 { font-size: 62px; }
  .rate { display: block; }
  .rate strong { display: block; margin: 8px 0; }
}

