:root {
  --bone: #f1ebe0;
  --bone-deep: #e7dfd0;
  --ink: #14181c;
  --ink-soft: #3a4248;
  --graphite: #5a626a;
  --line: rgba(20, 24, 28, 0.14);
  --aqua-deep: #3f6770;
  --sand: #ddd2bc;
  --display: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Instrument Sans', -apple-system, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.label::before { content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.5; }
nav.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: #fff;
  background: linear-gradient(to bottom, rgba(10, 18, 24, 0.62), rgba(10, 18, 24, 0.18));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(241, 235, 224, 0.14);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  line-height: 1;
}
.brand img { height: 50px; width: auto; display: block; }
.nav-center {
  display: flex;
  gap: 1.65rem;
  justify-self: center;
}
.nav-center a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  position: relative;
  padding: 0.25rem 0;
}
.nav-center a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-center a:hover::after, .nav-center a.active::after { width: 100%; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 1.4rem; }
.nav-phone { font-family: var(--display); font-style: italic; font-size: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  transition: all 0.3s ease;
  background: transparent;
  color: inherit;
  font-family: var(--sans);
}
.btn:hover { background: currentColor; }
.btn:hover span:not(.arrow) { color: var(--bone); }
.btn.dark { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn.dark:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); }
.hero {
  min-height: 62vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1218 center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,24,0.52), rgba(10,18,24,0.15) 45%, rgba(10,18,24,0.72));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 6rem));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}
.hero .label { color: var(--sand); margin-bottom: 1.5rem; }
h1 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.035em;
  max-width: 10ch;
}
h1 em, h2 em { font-style: italic; color: var(--sand); }
.section {
  padding: 7rem 3rem;
}
.section.alt { background: var(--bone-deep); }
.container { width: min(1400px, 100%); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 4rem;
  align-items: end;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--ink-soft); max-width: 58ch; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.panel {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 2rem;
}
.panel.dark {
  background: var(--ink);
  color: var(--bone);
  border-color: rgba(241,235,224,0.15);
}
.panel h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 1rem;
}
.panel p, .panel li { color: var(--ink-soft); }
.panel.dark p, .panel.dark li { color: rgba(241,235,224,0.74); }
.panel ul { list-style: none; display: grid; gap: 0.75rem; }
.image-card {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.image-card.tall { aspect-ratio: 4/5; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-grid a { aspect-ratio: 1/1; overflow: hidden; background: var(--ink); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.contact-list { list-style: none; display: grid; gap: 1rem; }
.contact-list a { color: var(--aqua-deep); }
.cta {
  background: var(--aqua-deep);
  color: var(--bone);
  text-align: center;
  padding: 7rem 3rem;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  font-weight: 400;
  max-width: 16ch;
  margin: 0 auto 2.5rem;
}
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 5rem 3rem 2rem;
}
.footer-inner { width: min(1400px, 100%); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(241,235,224,0.15);
}
.footer-brand {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.footer-brand em { color: var(--sand); }
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer-col a, .footer-col li, .footer-tag { color: rgba(241,235,224,0.72); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  color: rgba(241,235,224,0.5);
  font-size: 0.75rem;
}
@media (max-width: 1000px) {
  nav.top { grid-template-columns: 1fr auto; padding: 1rem 1.5rem; }
  .nav-center, .nav-phone, .nav-right .btn { display: none; }
  .hero-inner { width: calc(100% - 3rem); padding-top: 7rem; }
  .section { padding: 5rem 1.5rem; }
  .section-head, .grid-2, .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
