:root {
  --background: #d9f6fa;
  --foreground: #071d2b;
  --muted: #516773;
  --line: rgba(255, 255, 255, 0.34);
  --dark-line: rgba(7, 29, 43, 0.12);
  --ink: #071d2b;
  --paper: #fbf7ef;
  --tomato: #f05a3b;
  --teal: #008f8c;
  --deep-teal: #006b69;
  --blue: #00072d;
  --mist: #d9f6fa;
  --glass: rgba(255, 255, 255, 0.46);
  --glass-strong: rgba(255, 255, 255, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  background-attachment: fixed;
  color: var(--foreground);
font-family: 'TASA Explorer', sans-serif;
                                                
}

body::before {
  background: rgba(255, 255, 255, 0.34);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

body::after {
  background: rgba(0, 143, 140, 0.08);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.dafonty {
		font-family: 'Brownist', sans-serif;
	font: normal;
	font-weight: 300;
}

.tomato {
	 color: var(--tomato);
}

.teal {
	 color: var(--teal);
}

main {
  min-height: 100vh;
}

.hero {
  min-height: 92vh;
  padding: 28px clamp(20px, 5vw, 72px) 56px;
  position: relative;
}

.hero::after {
  background: rgba(255, 255, 255, 0.18);
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.nav {
  align-items: center;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: rgba(255, 255, 255, 0.52);  border: none;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 8px;
  position: relative;
}

.nav::before {
  background: rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  content: "";
  inset: 1px;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.brand {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  letter-spacing: 0;
  width: 44px;
	
}

.menu-button {
  align-items: center;
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-button span {
  background: var(--paper);
  display: block;
  height: 2px;
  width: 18px;
}

.nav-links {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  display: flex;
  gap: 6px;
  padding: 6px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background-color: var(--tomato);  /* rgba(11, 49, 88, 0.92); */
  color: var(--paper);
  outline: none;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  margin: 92px auto 0;
  max-width: 1180px;
}

.hide {
	display: none;
}

.eyebrow {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4.5rem, 13vw, 11.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
  margin-bottom: 28px;
  max-width: 820px;
}

.lede {
  color: #294352;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);

  border-radius: 999px;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
  overflow: hidden;
  position: relative;
}

.button::after {
  background: rgba(255, 255, 255, 0.18);
  content: "";
  inset: -40% -80%;
  opacity: 0;
  position: absolute;
  transform: translateX(-30%);
  transition:
    opacity 180ms ease,
    transform 520ms ease;
}

.button.primary {
  background: var(--tomato);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(30%);
}

.portrait-panel {
  aspect-ratio: 4 / 5;
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  background: rgba(255, 255, 255, 0.5);  border: none;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  position: relative;
}

.portrait-panel::before {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  content: "";
  inset: 22px;
  position: absolute;
}

.portrait-panel::after {
 /*  background: rgba(0, 143, 140, 0.1); */
  border-radius: 28px;
  content: "";
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
  transform: translateX(-12%);
}

.portrait-mark {
  align-items: center;
  align-self: flex-end;

  /* background: var(--blue); */


	
  /* border: 1px solid rgba(255, 255, 255, 0.34); */
  border-radius: 100%;
  color: var(--paper);
  display: inline-flex;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 900;
  /* height: clamp(360px, 20vw, 220px); */
  justify-content: center;
  line-height: 1;
 /* width: clamp(360px, 20vw, 220px); */
  z-index: 1;
	border: 0px!important;
	outline: none!important;
	
	
		background-image: url('../assets/700.png');
	  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  height: clamp(220px, 28vw, 360px);
  width: clamp(220px, 28vw, 360px);
}

.panel-label,
.panel-title {
  position: relative;
  z-index: 1;
}

.panel-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.panel-title {
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
/*  font-weight: 900; */
	

	font-weight: 900;
	
	
  line-height: 1.05;
  margin-bottom: 0;
	
	
	
	
}

.intro-band {
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  background: rgba(255, 255, 255, 0.34);
 /* border-block: 1px solid var(--line); */
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, 1fr);
}

.intro-band span {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  color: #123247;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  justify-content: center;
  min-height: 74px;
  padding: 16px;
  text-align: center;
}

.intro-band span:nth-child(2n) {
  background: rgba(0, 143, 140, 0.08);
}

.intro-band span:last-child {
  border-right: 0;
}

.section,
.split-section,
.contact {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.section,
.split-section {
  position: relative;
}

.section-header {
  display: grid;
  gap: 24px;
  /* grid-template-columns: 1fr; 0.34fr*/
  margin-bottom: 34px;
	text-align: center;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0;
}

.project-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
  background: rgba(255, 255, 255, 0.46);  border: none;
  border-radius: 26px;
  min-height: 300px;
  padding: 24px;
  position: relative;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.project-card::before {
  background: var(--tomato);
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  top: 24px;
  width: 22px;
}

.project-card::after {
  background: rgba(0, 143, 140, 0.08);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-4px);
}

.project-card p {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 62px;
  padding-top: 18px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.project-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.project-card span {
  color: var(--muted);
  display: block;
  font-size: 1rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.video-card {
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  background: rgba(255, 255, 255, 0.4);  border: none;
  border-radius: 26px;
  padding: 16px;
}

.video-frame {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.video-frame::before {
  background: rgba(0, 143, 140, 0.24);
  content: "";
  inset: 14px;
  position: absolute;
}

.video-frame::after {
  background: rgba(240, 90, 59, 0.32);
  bottom: 0;
  content: "";
  height: 22%;
  position: absolute;
  right: 0;
  width: 34%;
}

.play-icon {
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--paper);
  border-top: 18px solid transparent;
  display: block;
  height: 0;
  margin-left: 6px;
  position: relative;
  width: 0;
  z-index: 1;
}

.video-card p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.video-card h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
}

.video-card span {
  color: var(--muted);
  display: block;
  font-size: 1rem;
  line-height: 1.55;
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: 0.8fr 1fr;
}

.about-copy > p {
  color: #294352;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.52;
  margin-bottom: 28px;
}

.timeline {
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(255, 255, 255, 0.38);  border: none;
  border-radius: 24px;
  overflow: hidden;
}

.timeline p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  padding: 18px 0;
  padding-inline: 20px;
}

.contact {
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  background: rgba(255, 255, 255, 0.44);  border: none;
  border-radius: 32px;
  margin-bottom: 72px;
  padding-top: 36px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.contact::before {
  background: rgba(240, 90, 59, 0.08);
  content: "";
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact h2 {
  margin: 0 auto 32px;
  max-width: 900px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-header,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 70px;
  }

  .portrait-panel {
    aspect-ratio: 16 / 10;
  }

  .intro-band,
  .project-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 18px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    border-radius: 8px;
    flex-direction: column;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 58px;
    transform: translateY(-6px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
    width: min(220px, 70vw);
    z-index: 2;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    text-align: center;
    width: 100%;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 6.7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-band,
  .project-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .intro-band span {
   /* border-bottom: 1px solid var(--line); */
    border-right: 0;
    min-height: 58px;
  }

  .project-card {
    min-height: 250px;
  }

  .project-card p {
    margin-bottom: 44px;
  }
}

#hero-title {
font-family: 'Brownist', sans-serif;
	font: normal;
	font-weight: 300;


}

#work-title {
	font-family: 'Brownist', sans-serif;
	font: normal;
	font-weight: 300;
	
}

.mail-icon {
  margin-right: 8px;
  font-size: 2rem;
  line-height: 1;
}

.button-icon {
  margin-right: 8px;
  font-size: 1.5rem;
  line-height: 1;
}

/*

.button-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  flex: 0 0 auto;
}
*/

@media (max-width: 900px) {
  .portrait-panel {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .portrait-mark {
    align-self: center;
    height: min(68vw, 300px);
    width: min(68vw, 300px);
  }
}

@media (max-width: 620px) {
  .portrait-panel {
    min-height: 320px;
  }

  .portrait-mark {
    height: min(76vw, 260px);
    width: min(76vw, 260px);
  }
}