body{
  margin:0;
  font-family: Georgia, serif;
  color:#1b2a4a;
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  line-height:1.65;
  background:#faf8f2;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header{
  border-bottom:1px solid #e1d3a7;
  padding:12px 0;
  background:#ffffff;
  position:relative;
  z-index:10;
}

.header-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

/* LARGER LOGO */

.logo{
  width:min(512px, 100%);
  height:auto;
}

.brand-text h1{ 
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.2;
  margin:0;
}

.tagline{
  margin:0;
  color:#777;
  font-size:17px;
}

/* NAVIGATION */

nav{
  display:flex;
  align-items:center;
}

nav a{
  margin-left:30px;
  text-decoration:none;
  color:#1b2a4a;
  font-size:20px;
}

nav a:hover{
  text-decoration:underline;
}

/* HERO SECTION */

.hero{
  position:relative;
  padding:120px 40px;
  background:#faf8f2;
  overflow:hidden;
}

/* COURTHOUSE BACKGROUND */

.hero-bg{
  position:absolute;
  right:-60px;
  top:0;
  bottom:0;
  width:70%;
  background-image:url('courthouse-outline.png');
  background-repeat:no-repeat;
  background-size:contain;
  background-position:right center;
  opacity:0.19;
  filter:contrast(85%);
}

.hero-content{
  position:relative;
  max-width:700px;
}

.hero h2{
  font-size:44px;
  margin-bottom:10px;
  position:relative;
}

.hero h2::after{
  content:"";
  display:block;
  width:90px;
  height:3px;
  background:#d7b56d;
  margin-top:14px;
}

.hero p{
  font-size:21px;
}

.notice{
  margin-top:22px;
  font-weight:bold;
}

/* GENERAL SECTIONS */

.section{
  padding:90px 0;
}

.light{
  background:#f3f1e8;
}

h3{
  font-size:30px;
  margin-bottom:22px;
}

/* ABOUT SECTION */

.about{
  display:flex;
  gap:50px;
  align-items:center;
}

.about-photo img{
  max-width:300px;
  border-radius:8px;
}

.about-text{
  max-width:620px;
}

/* CONTACT */

.disclaimer{
  margin-top:22px;
  font-size:15px;
  color:#666;
}

/* FOOTER */

footer{
  border-top:1px solid #e1d3a7;
  text-align:center;
  padding:22px;
  color:#777;
  font-size:14px;
  background:#ffffff;
}

/* TABLET / SMALLER LAPTOP */

@media (max-width: 900px) {
  .header-row{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
  }

  .brand{
    justify-content:center;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:8px 16px;
  }

  nav a{
    margin-left:0;
    font-size:17px;
  }

  .hero{
    padding:80px 24px;
  }

  .hero-bg{
    width:85%;
    right:-100px;
    opacity:0.12;
  }

  .hero h2{
    font-size:36px;
  }

  .hero p{
    font-size:19px;
  }

  .section{
    padding:70px 0;
  }

  .about{
    flex-direction:column;
    text-align:center;
    gap:28px;
  }

  .about-text{
    max-width:100%;
  }
}

/* PHONE */

@media (max-width: 600px){
  .container{
    width:92%;
  }

  header{
    padding:10px 0 14px;
    background:#ffffff;
    position:relative;
    z-index:20;
  }

  .header-row{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-align:center;
  }

  .brand{
    display:block;
    width:100%;
    text-align:center;
  }

  .logo{
    width:min(280px, 82vw);
    margin:0 auto;
  }

  nav{
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:6px 14px;
    margin:0;
    padding:4px 0 0;
    background:#ffffff;
  }

  nav a{
    margin:0;
    padding:2px 4px;
    font-size:16px;
    line-height:1.2;
    white-space:nowrap;
  }

  .hero{
    padding:34px 16px 30px;
  }

  .hero-bg{
    display:none;
  }

  .hero-content{
    max-width:100%;
  }

  .hero h2{
    font-size:26px;
    line-height:1.2;
    margin-bottom:12px;
  }

  .hero h2::after{
    width:60px;
    margin-top:10px;
  }

  .hero p{
    font-size:17px;
  }

  .section{
    padding:42px 0;
  }

  h3{
    font-size:24px;
  }

  .about{
    gap:20px;
  }

  .about-photo img{
    max-width:min(220px, 72vw);
    margin:0 auto;
  }

  .about-text{
    max-width:100%;
    text-align:left;
  }

  .disclaimer{
    font-size:14px;
  }

  footer{
    font-size:13px;
    padding:18px;
  }
}
