@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --navy: #050d4d;
  --navy-dark: #02082e;
  --ivory: #f7f5ef;
  --gold: #d7bb87;
  --gold-light: #ead9b7;
  --muted: rgba(247, 245, 239, 0.74);
  --edge: rgba(234, 217, 183, 0.28);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--navy-dark);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: var(--navy-dark);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background-image:
    linear-gradient(100deg, rgba(2, 8, 46, 0.92) 4%, rgba(4, 13, 65, 0.76) 48%, rgba(2, 8, 46, 0.69) 100%),
    linear-gradient(180deg, rgba(2, 8, 46, 0.38), rgba(2, 8, 46, 0.88)),
    url("assets/hero-background.jpg");
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-shell::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(rgba(255,255,255,.3) .5px, transparent .6px);
  background-size: 4px 4px;
  pointer-events: none;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vh, 3.5rem) clamp(1rem, 4vw, 4rem) 0;
}

.brand {
  position: relative;
  display: block;
  width: 260px;
  height: 170px;
  overflow: hidden;
  border: 1px solid rgba(234, 217, 183, 0.56);
  border-radius: 32px;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.09);
  animation: enter-down 0.8s 0.08s both cubic-bezier(.2,.7,.2,1);
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 330px;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.hero {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(2.6rem, 7vh, 6rem) clamp(1.15rem, 5vw, 6rem);
}

.hero-content {
  width: min(100%, 1040px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-size: clamp(.68rem, .8vw, .82rem);
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.title-row {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.title-row h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 8.6vw, 8.25rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: .075em;
  text-transform: uppercase;
  text-shadow: 0 12px 45px rgba(0,0,0,.28);
}

.title-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,187,135,.72));
}

.title-line:last-child { transform: rotate(180deg); }

.title-line::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  content: "";
  transform: rotate(45deg);
  background: var(--gold);
}

.intro {
  margin: clamp(1.5rem, 3vh, 2.2rem) auto .75rem;
  color: rgba(255,255,255,.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 2.1vw, 1.7rem);
  letter-spacing: .02em;
}

.tagline {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.69rem, 1.05vw, .82rem);
  font-weight: 400;
  letter-spacing: .22em;
  line-height: 1.8;
  text-transform: uppercase;
}

.tagline span { color: var(--gold-light); }

.status {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: clamp(1.5rem, 3.2vh, 2.35rem);
  padding: .58rem .95rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.055);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215,187,135,.12);
}

.contact-list {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4.4vh, 3.6rem);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 48px;
  padding: .35rem clamp(1rem, 2.4vw, 2.2rem);
  border-right: 1px solid var(--edge);
  text-align: left;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.contact-link:last-child { border-right: 0; }
.contact-link:hover { color: var(--gold-light); transform: translateY(-2px); }
.contact-link:focus-visible, .footer-social a:focus-visible, .brand:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.contact-link small {
  display: block;
  margin-bottom: .28rem;
  color: rgba(255,255,255,.48);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.contact-link span:last-child {
  font-size: clamp(.67rem, .85vw, .78rem);
  letter-spacing: .035em;
  white-space: nowrap;
}

.icon-wrap {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215,187,135,.3);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255,255,255,.035);
}

.icon-wrap svg, .footer-social svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0 clamp(1.15rem, 4vw, 4rem);
  padding: 1.2rem 0 clamp(1.2rem, 2.5vh, 2rem);
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-copy { display: flex; gap: 1.5rem; }
.footer-copy p {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: clamp(.56rem, .7vw, .66rem);
  letter-spacing: .08em;
  line-height: 1.5;
}

.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.62);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.footer-social a:hover { color: var(--gold-light); border-color: rgba(215,187,135,.45); background: rgba(255,255,255,.06); }

.reveal { animation: enter-up .75s both cubic-bezier(.2,.7,.2,1); }
.reveal-1 { animation-delay: .2s; }
.reveal-2 { animation-delay: .32s; }
.reveal-3 { animation-delay: .46s; }
.reveal-4 { animation-delay: .58s; }
.reveal-5 { animation-delay: .7s; }

@keyframes enter-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes enter-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .site-shell {
    background-image:
      linear-gradient(180deg, rgba(2,8,46,.78) 0%, rgba(3,10,50,.83) 48%, rgba(2,8,46,.95) 100%),
      url("assets/hero-background.jpg");
    background-position: center, 63% center;
  }
  .site-header { justify-content: center; }
  .brand { width: 220px; height: 144px; border-radius: 27px; }
  .brand-logo { width: 280px; }
  .hero { padding-top: 2.8rem; padding-bottom: 2.8rem; }
  .title-row { gap: .65rem; }
  .title-row h1 { font-size: clamp(2.6rem, 12vw, 4.4rem); letter-spacing: .035em; }
  .title-line::after { width: 5px; height: 5px; top: -2px; }
  .tagline span { display: block; }
  .contact-list {
    display: grid;
    width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
  }
  .contact-link {
    padding: .6rem .4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .contact-link:last-child { border-bottom: 0; }
  .contact-link span:last-child { white-space: normal; overflow-wrap: anywhere; }
  .site-footer { align-items: flex-end; }
  .footer-copy { display: block; }
  .footer-copy p + p { margin-top: .35rem; }
}

@media (max-width: 410px) {
  .eyebrow { letter-spacing: .3em; }
  .title-row { grid-template-columns: 18px auto 18px; }
  .footer-copy p:last-child { display: none; }
}

@media (max-width: 520px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .site-header { padding-top: 1.5rem; }
  .hero { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .title-row h1 { font-size: clamp(3.2rem, 9.5vh, 5.5rem); }
  .contact-list { margin-top: 1.7rem; }
  .site-footer { padding-bottom: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
