:root {
  --paper: #fbfaf7;
  --warm: #f3eee5;
  --ink: #071735;
  --muted: #6f6a64;
  --teal: #0a6d78;
  --teal-deep: #064c58;
  --gold: #d99b24;
  --orange: #f05a28;
  --red: #b51f1f;
  --line: rgba(7, 23, 53, .14);
  --shadow: 0 24px 70px rgba(7, 23, 53, .12);
  --radius: 28px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --wide: 'Montserrat', system-ui, sans-serif;
  --serif-accent: 'Fraunces', Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 12% 10%, rgba(10, 109, 120, .12), transparent 32%), radial-gradient(circle at 90% 16%, rgba(217, 155, 36, .16), transparent 30%), var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
code {
  padding: .15rem .35rem;
  border-radius: .45rem;
  background: rgba(7, 23, 53, .06);
  font-size: .92em;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section-pad {
  padding: clamp(64px, 8vw, 118px) 0;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  z-index: 20;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 92px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--wide);
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 1.25rem;
  white-space: nowrap;
}

.brand-line {
  font-family: var(--wide);
  color: var(--gold);
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .96rem;
  margin-top: .3rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--wide);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  padding: .7rem .8rem;
  border-radius: 999px;
}
.nav a:hover, .nav a:focus {
  background: rgba(10, 109, 120, .1);
  outline: none;
}
.nav-cta {
  color: white;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}
.menu-toggle:hover, .menu-toggle:focus {
  outline: none;
  background: rgba(10, 109, 120, .1);
}
.hero {
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.amp {
  font-family: var(--serif-accent) !important;
  font-size: .72em;
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
  line-height: 1;
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--teal);
  font-family: var(--wide);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.035em;
}
h1 {
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  max-width: 820px;
}

#hero-title {
  font-size: clamp(2.35rem, 5.6vw, 5.25rem);
  max-width: 760px;
}
h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
}
.hero-lead {
  margin: 1.45rem 0 0;
  max-width: 660px;
  color: #393633;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  font-family: var(--wide);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover, .btn:focus {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 14px 35px rgba(7, 23, 53, .15);
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--ink));
  color: white;
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .52);
}
.hero-art {
  position: relative;
  padding: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .75), rgba(243, 238, 229, .72));
  box-shadow: var(--shadow);
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: auto -3% -5% 7%;
  height: 26%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10, 109, 120, .28), rgba(217, 155, 36, .23), rgba(240, 90, 40, .2));
  filter: blur(28px);
  z-index: -1;
}
.hero-art img {
  width: 100%;
  border-radius: 22px;
  mix-blend-mode: multiply;
}
.statement {
  padding: 0 0 clamp(54px, 7vw, 96px);
}
.statement-card {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .35));
  box-shadow: 0 12px 50px rgba(7, 23, 53, .06);
}
.statement-card p:last-child {
  margin: 0;
  color: #49443f;
  font-size: 1.08rem;
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.profile-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(7, 23, 53, .08);
}
.profile-panel p:not(.eyebrow) {
  color: #49443f;
  font-size: 1.05rem;
}
.quote-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1.15rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--warm);
  border: 1px solid var(--line);
}
.quote-panel img {
  border-radius: 20px;
}
.quote-panel p {
  margin: 0;
  padding: .25rem .5rem .5rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.1;
}
.gallery-section {
  background: linear-gradient(180deg, transparent, rgba(243, 238, 229, .8));
}
.section-heading {
  max-width: 850px;
  margin-bottom: 1.6rem;
}
.section-heading p:last-child {
  color: #4d4741;
  font-size: 1.05rem;
}
.gallery-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.4rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}
.gallery-tools label {
  font-family: var(--wide);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-tools input {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .9rem 1rem;
  color: var(--ink);
  background: white;
  font: inherit;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.art-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(7, 23, 53, .06);
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}
.art-card:hover, .art-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7, 23, 53, .13);
  outline: none;
}
.art-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 109, 120, .16), rgba(217, 155, 36, .22), rgba(240, 90, 40, .17));
  display: grid;
  place-items: center;
}
.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
}
.art-card:hover .art-frame img {
  transform: scale(1.035);
}
.art-fallback {
  padding: 1.25rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  text-align: center;
}
.art-caption {
  min-height: 94px;
  padding: 1rem;
}
.art-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.1;
}
.art-caption span {
  display: block;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .9rem;
}
.inquiries-card {
  max-width: 900px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), var(--teal-deep));
  color: white;
  box-shadow: var(--shadow);
}
.inquiries-card .eyebrow {
  color: var(--gold);
}
.inquiries-card p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, .82);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.lightbox[aria-hidden="false"] {
  display: block;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 23, .82);
  backdrop-filter: blur(10px);
}
.lightbox-dialog {
  position: absolute;
  inset: 4vh 3vw;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 1rem;
}
.lightbox-figure {
  margin: 0;
  min-width: 0;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.lightbox-figure img {
  max-height: 78vh;
  max-width: 100%;
  border-radius: 18px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.lightbox-figure figcaption {
  color: white;
  text-align: center;
}
.lightbox-figure figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
}
.lightbox-figure figcaption span {
  display: block;
  color: rgba(255, 255, 255, .72);
}
.lightbox-close, .lightbox-nav {
  border: 0;
  color: white;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  border-radius: 999px;
}
.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  width: 58px;
  height: 58px;
  font-size: 3rem;
  line-height: .7;
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #0b1326;
  color: white;
}
.footer-inner {
  min-height: 128px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.footer-brand-dark {
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: min(100%, 360px);
  height: auto;
}
.footer-logo-dark {
  width: min(100%, 340px);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}
.footer-note {
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
}
.footer-inner span {
  color: rgba(255, 255, 255, .72);
}
.footer-inner a {
  color: #ffd56a;
  font-weight: 800;
  text-decoration: none;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 44px;
  padding: .7rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #ffd56a;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.back-to-top:hover, .back-to-top:focus {
  background: rgba(255, 255, 255, .12);
  outline: none;
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    padding: .7rem 0;
    position: relative;
  }
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    width: 100%;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251, 250, 247, .96);
    box-shadow: 0 18px 45px rgba(7, 23, 53, .14);
    overflow: visible;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: .9rem 1rem;
    border-radius: 16px;
  }
  .nav-cta {
    text-align: center;
  }
  .hero-grid, .statement-card, .profile-grid {
    grid-template-columns: 1fr;
  }
  .quote-panel {
    position: relative;
    top: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .brand-mark {
    width: 76px;
    height: 44px;
  }
.brand-name {
  font-size: .98rem;
  letter-spacing: .16em;
}

.brand-line {
  font-size: .84rem;
  letter-spacing: .24em;
}
  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }
  #hero-title {
    font-size: clamp(2.25rem, 10.8vw, 3.55rem);
  }
  .hero-actions, .gallery-tools, .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-dialog {
    inset: 3vh 12px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: .35rem;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 2.2rem;
  }
  .lightbox-close {
    top: 6px;
    right: 6px;
  }
}