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

*,*::before,*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  font-size:16px;
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#0d0d0d;
  color:#c9bfb0;
  line-height:1.8;
  letter-spacing:.02em;
}

a{
  color:#c9bfb0;
  text-decoration:none;
  transition:color .3s;
}

a:hover{
  color:#fff;
}

/* Make all inline images scale nicely */
img{
  max-width:100%;
  height:auto;
}

header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  padding:1.8rem 3rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(to bottom,rgba(13,13,13,.95) 0%,rgba(13,13,13,0) 100%);
}

nav .logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;
  font-weight:300;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#fff;
}

nav ul{
  list-style:none;
  display:flex;
  gap:2.5rem;
}

nav ul li a{
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#a89e90;
  transition:color .3s;
}

nav ul li a:hover{
  color:#fff;
}

.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:8rem 2rem 4rem;
  background:#0d0d0d;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center,rgba(180,150,100,.07) 0%,transparent 70%);
}

.hero-eyebrow{
  font-size:.7rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:#7a6e62;
  margin-bottom:1.5rem;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.5rem,8vw,7rem);
  font-weight:300;
  letter-spacing:.08em;
  color:#f0ebe3;
  line-height:1.1;
  margin-bottom:1.2rem;
}

.hero .subtitle{
  font-size:.8rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#7a6e62;
  margin-bottom:2.5rem;
}

.hero .tagline{
  font-family:'Cormorant Garamond',serif;
  font-size:1.25rem;
  font-style:italic;
  font-weight:300;
  color:#a89e90;
  max-width:520px;
  margin:0 auto 3rem;
  line-height:1.7;
}

.divider{
  width:40px;
  height:1px;
  background:#5a5045;
  margin:0 auto 3rem;
}

.btn{
  display:inline-block;
  border:1px solid #5a5045;
  color:#c9bfb0;
  padding:.85rem 2.5rem;
  font-size:.7rem;
  font-weight:500;
  letter-spacing:.25em;
  text-transform:uppercase;
  transition:all .3s;
}

.btn:hover{
  background:#c9bfb0;
  color:#0d0d0d;
  border-color:#c9bfb0;
  text-decoration:none;
}

.section{
  max-width:860px;
  margin:0 auto;
  padding:6rem 2rem;
}

.section-label{
  font-size:.68rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:#5a5045;
  margin-bottom:3rem;
  display:block;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1px;
  background:#1e1a16;
  border:1px solid #1e1a16;
}

.card{
  background:#0d0d0d;
  padding:3rem 2.5rem;
  transition:background .3s;
}

.card:hover{
  background:#111108;
}

.card h2{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;
  font-weight:300;
  color:#f0ebe3;
  margin-bottom:1rem;
  letter-spacing:.04em;
}

.card p{
  font-size:.82rem;
  color:#7a6e62;
  line-height:1.9;
  margin-bottom:1.5rem;
}

.card a{
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#5a5045;
}

.card a:hover{
  color:#c9bfb0;
}

.content-page{
  max-width:760px;
  margin:0 auto;
  padding:10rem 2rem 6rem;
}

.content-page h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:300;
  color:#f0ebe3;
  letter-spacing:.06em;
  margin-bottom:.5rem;
  line-height:1.15;
}

.content-page h2{
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem;
  font-weight:300;
  font-style:italic;
  color:#a89e90;
  margin:3rem 0 1rem;
  letter-spacing:.03em;
  border:none;
  padding:0;
}

.content-page h3{
  font-size:.7rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#5a5045;
  margin:2.5rem 0 1rem;
}

.content-page p{
  font-size:.87rem;
  color:#8a7e70;
  margin-bottom:1.2rem;
  line-height:1.95;
}

.content-page ul{
  margin:.5rem 0 1.5rem 0;
  list-style:none;
}

.content-page ul li{
  font-size:.85rem;
  color:#8a7e70;
  padding:.5rem 0;
  border-bottom:1px solid #1e1a16;
  line-height:1.7;
}

.content-page ul li strong{
  color:#c9bfb0;
  font-weight:400;
}

.dateline{
  font-size:.68rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#5a5045;
  margin-bottom:3rem;
  display:block;
}

.job{
  padding:2.5rem 0;
  border-bottom:1px solid #1e1a16;
}

.job:last-of-type{
  border-bottom:none;
}

.job h2{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;
  font-weight:300;
  color:#f0ebe3;
  margin-bottom:.3rem;
  border:none;
  padding:0;
  font-style:normal;
}

.job-meta{
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#5a5045;
  margin-bottom:.8rem;
}

.job p{
  font-size:.84rem;
  color:#7a6e62;
  line-height:1.9;
  margin:0;
}

footer{
  border-top:1px solid #1e1a16;
  padding:2.5rem 3rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2rem;
}

footer p,
footer a{
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#3a3028;
}

footer a:hover{
  color:#c9bfb0;
}

/* Legacy banner styles (harmless if unused) */
.contact-banner {
  background-image: url('contact-banner.jpg');
  background-size: cover;
  background-position: center;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.philosophy-banner,
.contact-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.philosophy-banner {
  background-image: url('philospohy-banner.jpg');
}

.contact-banner {
  background-image: url('contact-banner.jpg');
}

.page-photo img {
  max-width: 100%;
  display: block;
  margin: 20px auto;
}

/* Mobile styles */
@media(max-width:700px){
  header{
    padding:1.2rem 1.5rem;
  }

  nav ul{
    gap:1rem;
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  nav ul li a{
    font-size:.62rem;
    letter-spacing:.1em;
  }

  .hero{
    min-height:80vh;
    padding:6rem 1.5rem 3rem;
    background-size:cover;
    background-position:center;
    background-attachment:scroll !important;
  }

  .hero h1{
    font-size:2.6rem;
  }

  .hero .tagline{
    font-size:1rem;
    max-width:100%;
  }

  .hero .subtitle{
    font-size:.72rem;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .card{
    padding:2rem 1.5rem;
  }

  .content-page{
    padding:7rem 1.2rem 3rem;
  }

  .page-photo img{
    margin:15px auto 10px;
  }

  footer{
    flex-direction:column;
    gap:.8rem;
    text-align:center;
    padding:2rem 1.5rem;
  }
}