/* GLOBAL CSS */

:root {
  --teal: #07575b;
  --deep-teal: #004f53;
  --pale-blue: #dcebed;
  --cream: #f4efe7;
  --text: #073c42;
  --border: rgba(7, 60, 66, 0.4);

  --serif: Georgia, "Times New Roman", serif;

  --display-size: clamp(4.75rem, 7vw, 6.75rem);
  --h1-size: clamp(3.75rem, 5vw, 5.25rem);
  --h2-size: clamp(2.5rem, 3.25vw, 3.5rem);
  --h3-size: clamp(1.75rem, 2vw, 2.25rem);
  --body-size: 1.25rem;
  --small-size: 0.95rem;

  --display-line: 1.03;
  --heading-line: 1.12;
  --body-line: 1.45;
  --legal-line: 1.65;

  --heading-tracking: -0.025em;
  --body-tracking: -0.005em;

}

html{
    scroll-behavior:smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--text);
  background: var(--pale-blue);
  /* animation: fade .9s; */
  font-family: var(--serif);
  font-size: var(--body-size);
  line-height: var(--body-line);
  letter-spacing: var(--body-tracking);
  /* opacity: 1;
  transition: opacity 0.45s ease; */
}

/* body.page-exit {
  opacity: 0.15;
} */

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: var(--heading-tracking);
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--heading-line);
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--heading-line);
}

h3 {
  font-size: var(--h3-size);
  line-height: 1.18;
}

p,
li {
  line-height: var(--body-line);
}

.site-header {
  height: 68px;
  background: var(--teal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

a,
button,
input,
textarea {
  transition: all 0.25s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.specialty-card,
.fee-card,
.service-slide {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover,
.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 239, 231, 0.7);
}

.consumer-container a {
  color: var(--text);
  text-underline-offset: 5px;
  transition: opacity 0.25s ease;
}

.consumer-container a:hover {
  opacity: 0.65;
}

.logo,
.nav a {
  color: var(--cream);
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
  font-size: 20px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 15px;
}

.nav a {
    position: relative;
    transition: .3s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--cream);
    transition: .35s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
}

.container {
    width: min(1200px, 88%);
    margin: auto;
}

/* LANDING PAGE CSS */

.landing-body {
  margin: 0;
  overflow: hidden;
}

.landing-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--cream);
}

.landing-video,
.landing-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-video {
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

.landing-overlay {
  background: rgba(7, 87, 91, 0.55);
  z-index: 1;
}

.landing-content {
  position: relative;
  z-index: 2;
  min-height: 95vh;
  /* padding: clamp(32px, 8vw, 96px); */
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing-logo {
    display: block;
    width: 70px;
    height: auto;
    /* margin: 3.5rem auto 2rem; */
    margin:3rem auto 1.75rem;
    opacity: 0.95;
    object-fit: contain;
    /* align-self: flex-start; */
}

.landing-content h1 {
  /* max-width: 1000px; */
  font-size: clamp(4rem, 8vw, 2rem);
  line-height: 1.15;
  margin: 0 0 64px;
}

.landing-enter{
    color: var(--cream);
    text-decoration:none;
    font-size: 2rem;
    letter-spacing:.08em;
    /* text-transform:uppercase; */
    position:relative;
    width:fit-content;
}

.landing-enter::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:1px;
    background:var(--cream);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;
}

.landing-enter:hover::after{
    transform:scaleX(1);
}

.landing-enter:hover{
    opacity:.8;
}

.landing-prompt {
  margin-top: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;

  color: var(--cream);
  opacity: 0.65;

  text-align: center;
  letter-spacing: 0.02em;

  transition: opacity 0.3s ease;
}

/* .landing-prompt:hover {
  opacity: 0.9;
} */

/* HOME PAGE CSS */

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 0 10vw;
}

/* .home-hero {
  background: var(--deep-teal);
  color: var(--cream);
} */

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 87, 91, 0.55);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,87,91,.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--cream);
}

.hero-content {
  max-width: 800px;
}


.hero h1 {
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 64px;
}

.hero h1,
.contact-container h1 {
  /* font-size: var(--display-size); */
  line-height: var(--display-line);
  letter-spacing: -0.035em;
}

.hero p {
  font-size: 24px;
  margin: 0 0 64px;
}

.button-group {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  background: var(--cream);
  color: var(--text);
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  transition:
        transform .35s,
        background .35s,
        color .35s,
        box-shadow .35s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.intro-section {
  padding: 72px 12vw;
  background: var(--pale-blue);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-section h2 {
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 20px;
}

.underline-accent {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.intro-section p {
  font-size: 20px;
  line-height: 1.65;
}

.intro-image {
  width: 100%;
  margin-top: 32px;
  border-radius: 10px;
  display: block;
  height: 260px;
}

.intro-copy {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ABOUT PAGE CSS */

.about-hero {
  min-height: calc(100vh - 68px);
  padding: 96px 12vw 96px;
  background: linear-gradient(120deg, #f6fbfb 0%, var(--pale-blue) 55%, #b7d8da 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto 48px 0;
}

.about-copy h1 {
  font-size: clamp(36px, 4vw, 41px);
  font-weight: 400;
  margin: 0 0 12px;
}

.about-copy p.subtitle {
  font-size: 22px ;
  margin-bottom: 54px;
}

.about-copy p {
  font-size: 18px;
  line-height: 1.5;
}

.portrait-image {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.experience-section {
  padding: 48px 12vw 96px;
  background: linear-gradient(120deg, #f6fbfb 0%, var(--pale-blue) 55%, #b7d8da 100%);
}

.experience-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 1080px;
  margin: 48px auto 32px;
  text-align: center;  
  margin-bottom: 52px;
}

.section-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.experience-heading h2 {
  font-size: clamp(34px, 4vw, 41px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1050px;
  margin: 0 auto;
}

.experience-grid p {
  font-size: 18px;
  line-height: 1.65;
}

.about-copy p {
  margin-bottom: 40px;
  text-wrap: balance;
}

/* SERVICES PAGE CSS */

.services-hero {
  background:
        linear-gradient(
            rgba(0, 88, 92, 0.55),
            rgba(0, 88, 92, 0.55)
        ),
        url("../assets/images/services-section.png");

  /* background-size: cover; */
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  color: var(--cream);
  padding: 96px 10vw 96px;
}

.services-hero-content {
  max-width: 640px;
  margin-bottom: 88px;
}

.services-hero h1 {
  font-size: clamp(52px, 6vw, 68px);
  font-weight: 400;
  margin: 0 0 24px;
}

.services-hero-content p {
  font-size: 22px;
  line-height: 1.35;
}

.services-slider {
  /* max-width: 1120px; */
  margin: 0 auto;
}

.service-slide {
  display: none;
  grid-template-columns: 44% 56%;
  background: var(--cream);
  color: var(--text);
  border-radius: 10px;
  overflow: hidden;
  min-height: 300px;
  height: 300px;
  transition: .35s;
}

.service-slide:hover {
  transform: translateY(-6px);
}

.service-slide.active {
  display: grid;
}

.featured-service-copy {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-service-copy h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 6px;
}

.featured-service-copy p {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  max-width: 420px;
}

.featured-service-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin: 28px 0 0;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--cream);
  opacity: 0.5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.dot.active {
  opacity: 1;
}

.specialties-section {
  background: var(--pale-blue);
  padding: 96px 10vw 144px;
}

.specialties-intro {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.specialties-intro h2 {
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1.05;
  text-wrap: balance;
}

.specialties-intro p {
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.specialty-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  min-height: 200px;
  transition: .35s;
}

.specialty-card:hover {
  transform: translateY(-6px);
}

.specialty-card h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 20px;
}

.specialty-card p {
  font-size: 17px;
  line-height: 1.35;
}

/* CONSUMER INFO PAGE CSS */

.consumer-page {
  background: var(--pale-blue);
  padding: 144px 0 144px;
}

.consumer-container {
  width: min(860px, 88%);
  margin: 0 auto;
}

.consumer-container h1 {
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 56px;
}

.consumer-container h2 {
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  margin: 64px 0 24px;
}

.consumer-container h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 40px 0 18px;
}

.consumer-container p,
.consumer-container li {
  font-size: 18px;
  /* line-height: 1.65; */
  line-height: var(--legal-line);
}

.consumer-container p {
  margin: 0 0 28px;
}

.consumer-container ul {
  margin: 0 0 36px;
  padding-left: 32px;
}

.consumer-container a {
  color: var(--text);
  text-underline-offset: 4px;
}

.consumer-container strong {
  font-weight: 600;
}

/* FEES PAGE CSS */

.fees-page {
  min-height: calc(100vh - 68px);
  background: linear-gradient(120deg, #f6fbfb 0%, var(--pale-blue) 55%, #b7d8da 100%);
  padding: 96px 0;
}

.fees-container {
  width: min(1180px, 84%);
  margin: 0 auto;
}

.fees-container h1 {
  font-size: clamp(56px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 56px;
}

.fees-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 99%;
    margin-bottom: 88px;
    align-items: start;
}

.fees-intro-grid p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 28px;
}

.fee-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fee-card {
  min-height: 150px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: .35s;
}

.fee-card:hover {
  transform: translateY(-6px);
}

.fee-card h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.fee-price {
  text-align: right;
}

.fee-price p {
  font-size: 32px;
  line-height: 1;
  margin: 0 0 8px;
}

.fee-price span {
  font-size: 16px;
}

@media (max-width: 850px) {
  .fees-page {
    padding: 72px 0;
  }

  .fees-container {
    width: min(100% - 48px, 1180px);
  }

  .fees-intro-grid,
  .fee-card-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fees-intro-grid {
    margin-bottom: 56px;
  }

  .fees-intro-grid p {
    font-size: 20px;
  }

  .fee-card {
    flex-direction: column;
    gap: 24px;
  }

  .fee-price {
    text-align: left;
  }
}

/* CONTACT PAGE CSS */

.contact-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  padding: 120px 0 80px;
}

.contact-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 87, 91, 0.85);
  z-index: 1;
}

.contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 84%);
  margin: 0 auto;
  color: var(--cream);
}

.contact-container h1 {
  font-size: clamp(48px, 5.5vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 96px;
  align-items: center;
}

.contact-form {
  background: var(--teal);
  color: var(--cream);
  border-radius: 10px;
  padding: 48px 72px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact-form h2 {
  font-size: 32px;
  letter-spacing: .5px;
  font-weight: 400;
  margin: 0 0 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-radius: 6px;
  background: var(--cream);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

.contact-form input {
  height: 32px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  display: block;
  margin-left: auto;
  background: var(--cream);
  color: var(--text);
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-family: var(--serif);
  cursor: pointer;
}

.contact-details {
  color: var(--cream);
}

.contact-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 44px;
  opacity: 0.6;
}

.contact-details h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 8px;
}

.contact-details p {
  font-size: 22px;
  margin: 0 0 56px;
}

.site-footer {
  background: var(--teal);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  font-size: 16px;
}

/******* UNDER DESKTOP BREAKPOINT *******/

@media (max-width: 850px) {

/* GLOBAL CSS */

.site-header {
  padding: 0 24px;
  position: relative;
}

.menu-toggle {
  display: block;
}

.nav {
  display: none;
}

.nav.is-open {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--teal);
  padding: 20px 40px 42px;
  z-index: 999;
}

.nav.is-open a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 239, 231, 0.25);
  font-size: 1.2rem;
  text-align: center;
}

.nav a {
  border: 1px solid rgba(244, 239, 231, 0.25);
}

/* HOME PAGE CSS */

.hero {
  min-height: 520px;
  padding: 80px 24px;
}

.hero p {
  font-size: 21px;
  margin-bottom: 40px;
}

.intro-section {
  padding: 56px 24px;
}

.intro-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

.intro-copy {
  padding-top: 0;
}

/* ABOUT PAGE CSS */

.about-hero {
  padding: 64px 24px 32px;
}

.about-grid {
  display: flex;
  flex-direction: column;
}

.about-grid > div:nth-child(2) {
  order: 1;
}

.about-copy {
  order: 2;
}

.about-grid,
.experience-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

.experience-section {
  padding: 32px 24px 72px;
}

.experience-heading {
  align-items: flex-start;
}

.section-logo {
  width: 44px;
  height: 44px;
}

/* SERVICES PAGE CSS */

.services-hero {
  padding: 72px 24px;
}

.service-slide {
  grid-template-columns: 1fr;
  min-height: 550px;
}

.featured-service-copy {
  padding: 36px 32px;
}

/* .featured-service-image {
  min-height: 220px;
} */

.featured-service-image {
  width: 100%;
  height: 100%;
  height: 380px;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.specialties-section {
  padding: 64px 24px;
}

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

/* CONTACT PAGE CSS */

.contact-page {
  padding: 72px 0;
}

.contact-container {
  width: min(100% - 48px, 1180px);
}

.contact-container h1 {
  margin-bottom: 48px;
}

.contact-grid,
.form-row {
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-form {
  padding: 36px 28px;
}

.contact-details {
  text-align: left;
}

.site-footer {
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 24px;
}

}

/******* TABLET BREAKPOINT *******/

@media (max-width: 750px) {

/* ABOUT CSS */

.about-copy p {
  text-wrap: auto;
}

.experience-heading{
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.experience-logo{
  width: 48px;
  height: auto;
}

.experience-heading h2{
  width: 100%;
  max-width: none;
  /* text-wrap: balance; */
}

}

/******* LARGE MOBILE BREAKPOINT *******/

@media (max-width: 480px) {

/* GLOBAL CSS */

.site-header {
  padding: 18px 20px;
}

.logo {
  font-size: 1.15rem;
  gap: 8px;
  white-space: nowrap;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

.menu-toggle {
  font-size: 2rem;
}

/* HOME PAGE CSS */

.hero {
  padding-inline: clamp(24px, 8vw, 40px);
}

.hero-content {
  max-width: 340px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.10;
  margin-bottom: 36px;
}

.hero p {
  margin-bottom: 44px;
}

.button-group {
  margin-top: 0;
}

.button {
  width: 100%;
  text-align: center;
}

.intro-section h2 {
  margin: 24px 0 32px;
}

/* ABOUT PAGE CSS */

.about-hero {
  padding-inline: clamp(24px, 8vw, 40px);
}

.portrait-image {
  margin-bottom:2.5rem;
}

.about-copy h1 {
  font-size: 1.75rem;
  line-height: 1.15;
}

.about-copy p.subtitle {
  font-size: 18px;
  line-height:1.4;
  margin-bottom: 40px;
}

.about-grid, .experience-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

.experience-section {
  padding-inline: clamp(24px, 8vw, 40px);
}

.experience-heading h2 {
  line-height: 1.25;
}

/* SERVICES CSS */

.services-hero {
  padding-inline: clamp(24px, 8vw, 40px);
}

.specialties-section {
  padding-inline: clamp(24px, 8vw, 40px);
}

.services-slide {
  min-height: 600px;
}

.featured-service-image.one {
  object-position: center center;
}

.featured-service-image.three {
  object-position: left center;
}

.featured-service-image.four {
  object-position: 60% 80%;
}

.featured-service-image.six {
  object-position: 60% bottom;
}

/* CONSUMER CSS */

.consumer-page {
  padding: 72px 0 96px;
  padding-inline: clamp(24px, 8vw, 40px);
}

/* FEES CSS */

.fees-page {
  padding-inline: clamp(24px, 8vw, 40px);
}

.fees-container h1 {
  font-size: clamp(52px, 6vw, 68px);
  margin: 0 0 42px;
}

/* CONTACT CSS */

/* .contact-page {
  padding-inline: clamp(24px, 8vw, 40px);
} */

}

/******* SMALL MOBILE BREAKPOINT *******/

@media (max-width: 400px) {

/* ABOUT PAGE CSS */

.portrait-image {
  margin-bottom:2rem;
}

.about-copy h1 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.about-copy p.subtitle {
  font-size: 16px;
}

}

/******* X-SMALL MOBILE BREAKPOINT *******/

@media (max-width: 340px) {

/* GLOBAL CSS */

.logo {
  font-size: 1rem;
}

.logo-icon {
  width: 24px;
  height: 24px;
}

.site-header {
  padding-inline: 16px;
}

/* ABOUT PAGE CSS */

.about-copy h1 {
  font-size: 1.32rem;
  line-height: 1.15;
}

.about-copy p.subtitle {
  font-size: 13.5px;
}

/* CONSUMER CSS */

.consumer-container h1 {
  font-size: clamp(38px, 5vw, 68px);
  margin: 0 0 32px;
}

.consumer-container h2 {
  font-size: clamp(26px, 3vw, 38px);
}

}