/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap");
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: start;
}
.about__left {
  position: sticky;
  top: var(--gutter);
}
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.about__intro {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__left {
    position: static;
  }
}

.accordion__item {
  border-top: 1px solid var(--border);
}
.accordion__item:last-child {
  border-bottom: 1px solid var(--border);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
}
.accordion__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.accordion__icon {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}
.accordion__item--open .accordion__icon {
  color: var(--accent);
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.accordion__body > :first-child {
  min-height: 0;
}
.accordion__body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  padding-bottom: 0.75rem;
}
.accordion__body p + p {
  margin-top: 0.25rem;
}
.accordion__item--open .accordion__body {
  grid-template-rows: 1fr;
}
.accordion__item--open .accordion__body p:last-child {
  padding-bottom: 1.5rem;
}

.availability {
  background: var(--bg-elevated);
}
.availability__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.availability__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}
.availability__body {
  max-width: 480px;
}
.availability__body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.availability__body p + p {
  margin-top: 0.75rem;
}
.availability__status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.availability__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@media (max-width: 700px) {
  .availability__inner {
    flex-direction: column;
    align-items: start;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.contact {
  text-align: center;
}
.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.contact__sub {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.contact__links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}
.contact__link {
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.contact__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.contact__link:hover {
  color: var(--accent);
}
.contact__link:hover::after {
  width: 100%;
}

@font-face {
  font-family: "Kippenberger";
  src: url("/fonts/Kippenberger-79.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --text: #f0ece6;
  --text-muted: #9a948e;
  --accent: #c8b8a2;
  --border: #222222;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad-y: 10rem;
  --content-max: 1100px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.section {
  padding: var(--section-pad-y) var(--gutter);
}

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
  padding-bottom: var(--section-pad-y);
}
.hero__name {
  font-family: "Kippenberger", sans-serif;
  font-size: clamp(5rem, 29vw, 28rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: image-set(url("/images/boat.avif") type('image/avif'), url("/images/boat.webp") type('image/webp'));
  background-size: 86vw auto;
  background-position: 1% 48%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin-top: 0.5rem;
  max-width: 680px;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.hero__tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 2rem;
}
.site-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.site-nav a:hover {
  color: var(--text);
}
.site-nav a:hover::after {
  width: 100%;
}

.selected-work__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.selected-work__item__content {
  flex: 1;
}

.selected-work__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.selected-work__item__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(2px, -2px);
}
.selected-work__item__link:hover .selected-work__item__arrow {
  color: var(--bg);
}

.selected-work__item__arrow {
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.skills__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}
.skills__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.skills__group__title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.skills__group__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.skills__group__item {
  font-size: 1rem;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .skills__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 440px) {
  .skills__grid {
    grid-template-columns: 1fr;
  }
}

.what-i-do__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.what-i-do__list {
  max-width: 680px;
}
.what-i-do__item {
  position: relative;
  padding: 1.25rem 0 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.what-i-do__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.what-i-do__item:first-child {
  border-top: 1px solid var(--border);
}