:root{
  --navy:#06162d;
  --navy2:#0b2446;
  --gold:#caa24b;
  --gold2:#e6c46c;
  --white:#ffffff;
  --soft:#d9e2ef;
  --muted:#9fb0c7;
  --dark:#030914;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--dark);
  color:var(--white);
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1160px,92%);
  margin:auto;
}

.narrow{
  max-width:850px;
  text-align:center;
}

/* NAVIGATION */

.nav{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 4%;
  background:linear-gradient(180deg,rgba(0,0,0,.68),transparent);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.brand img{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:50%;
}

.nav-links{
  display:flex;
  gap:22px;
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:1.5px;
}

.nav-links a:hover{
  color:var(--gold2);
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  background:url("assets/hero-ship-port.png") center center / cover no-repeat;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.48) 0%,
    rgba(0,0,0,.22) 42%,
    rgba(0,0,0,.05) 100%
  );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  margin-left:70px;
  margin-top:300px;
  text-align:left;
}

.hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:700;
  font-size:clamp(2.3rem,4vw,4rem);
  line-height:1.05;
  margin:0 0 18px;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:2px;
  text-shadow:0 4px 18px rgba(0,0,0,.75);

}

.hero-subtitle{
  color:var(--gold2);
  font-size:1.15rem;
  letter-spacing:2px;
  text-transform:uppercase;
  margin:0 0 28px;
  font-weight:700;
  text-shadow:0 3px 12px rgba(0,0,0,.7);
}

.lead{
  font-size:clamp(1rem,2vw,1.25rem);
  line-height:1.7;
  max-width:560px;
  color:#ffffff;
  margin:0 0 35px;
  text-shadow:0 3px 12px rgba(0,0,0,.75);
}

.btn{
  display:inline-block;
  padding:18px 38px;
  border:2px solid var(--gold2);
  border-radius:8px;
  color:var(--gold2);
  background:rgba(0,0,0,.18);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:.9rem;
  font-weight:700;
  transition:.25s ease;
}

.btn:hover{
  background:var(--gold2);
  color:var(--dark);
}

/* GENERAL SECTIONS */

section{
  padding:90px 0;
}

.section-label{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:.82rem;
  font-weight:700;
}

.intro,
.focus{
  background:linear-gradient(180deg,#06162d,#091f3e);
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.two-col.reverse{
  grid-template-columns:.85fr 1.15fr;
}

.intro h2,
.founder h2,
.focus h2,
.photography h2,
.global h2,
.contact h2{
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.08;
  margin:10px 0 20px;
  color:var(--gold2);
}

.intro p,
.founder p,
.photography p,
.global p,
.contact p,
.cards p{
  color:var(--soft);
}

/* CARDS */

.quote-card,
.founder-card{
  background:rgba(255,255,255,.06);
  border:3px solid rgba(230,196,108,.75);
  border-radius:26px;
  padding:38px;
  box-shadow:0 25px 80px rgba(0,0,0,.25);
}

.quote-card h3,
.founder-card h3{
  color:var(--gold2);
  font-size:1.8rem;
  margin:0 0 10px;
}

.pillars{
  background:#030914;
}

.cards{
  display:grid;
  gap:22px;
}

.cards.three{
  grid-template-columns:repeat(3,1fr);
}

.cards.four{
  grid-template-columns:repeat(4,1fr);
}

.cards article{
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:30px;
  min-height:210px;
}

.cards span{
  display:inline-block;
  color:var(--gold2);
  font-weight:700;
  margin-bottom:20px;
}

.cards h3{
  font-size:1.45rem;
  margin:0 0 10px;
}

/* FOUNDER */

.founder{
  background:linear-gradient(135deg,#071a34,#020711);
}

.founder-card{
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:end;
  background:
    linear-gradient(0deg,rgba(0,0,0,.55),rgba(0,0,0,.05)),
    url("assets/steve-siegel-founder.png") center 20% / cover no-repeat;
}

/* PHOTOGRAPHY */

.photography{
  background:#06162d;
}

.photo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.photo-tile{
  min-height:220px;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:20px;
  font-weight:700;
  letter-spacing:1px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.photo-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,.05)
  );
}
.photo-tile span{
  position:relative;
  z-index:2;
  color:var(--gold2);
  font-size:1.1rem;
  text-transform:uppercase;
}.maritime{
  background-image:url("assets/maritime.jpg");
}

.travel{
  background-image:url("assets/travel.jpg");
}

.sports{
  background-image:url("assets/sports.jpg");
}

.technology{
  background-image:url("assets/technology.jpg");
}

.fashion{
  background-image:url("assets/fashion.jpg");
}

.portrait{
  background-image:url("assets/portrait.jpg");
}
/* GLOBAL */

.global{
  background:
    linear-gradient(180deg,rgba(3,9,20,.22),rgba(3,9,20,.92)),
    url("assets/hero-ship-port.png") center / cover fixed no-repeat;
}

/* CONTACT */

.contact{
  background:#071a34;
}

.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(202,162,75,.28);
  border-radius:28px;
  padding:45px;
}

form{
  display:grid;
  gap:14px;
}

input,
textarea{
  width:100%;
  padding:15px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.22);
  color:#fff;
}

textarea{
  min-height:140px;
}

button{
  border:0;
  border-radius:999px;
  padding:14px 18px;
  background:var(--gold);
  color:#06162d;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* FOOTER */

footer{
  text-align:center;
  padding:50px 6%;
  background:#020711;
  color:var(--muted);
}

footer img{
  width:110px;
  border-radius:50%;
  margin-bottom:10px;
}

footer p{
  margin:6px 0;
}

/* MOBILE */

@media(max-width:900px){
  .nav{
    position:absolute;
    flex-direction:column;
    gap:14px;
    padding:14px 4%;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }

  .hero{
    min-height:92vh;
    background-position:center right;
  }

  .hero-content{
    margin-left:28px;
    margin-right:28px;
    margin-top:180px;
    max-width:90%;
  }

  .two-col,
  .two-col.reverse,
  .contact-box{
    grid-template-columns:1fr;
  }

  .cards.three,
  .cards.four{
    grid-template-columns:1fr 1fr;
  }

  section{
    padding:65px 0;
  }
}

@media(max-width:560px){
  .brand span{
    font-size:.85rem;
  }

  .nav-links{
    font-size:.76rem;
  }

  .hero{
    min-height:95vh;
    background-position:center right;
  }

  .hero-content{
    margin-left:22px;
    margin-right:22px;
    margin-top:170px;
  }

  .hero h1{
    font-size:2.35rem;
    letter-spacing:1px;
  }

  .hero-subtitle{
    font-size:.85rem;
    letter-spacing:2px;
  }

  .lead{
    font-size:1rem;
  }

  .btn{
    padding:14px 24px;
    font-size:.78rem;
  }

  .cards.three,
  .cards.four,
  .photo-grid{
    grid-template-columns:1fr;
  }

  .contact-box{
    padding:28px;
  }
}.about-logo{
  text-align:center;
  margin-bottom:30px;
}

.about-logo img{
  width:360px;
  max-width:100%;
  height:auto;
}.cards h3,
.cards article h3{
  color:#d6aa48 !important;
}