:root {
  --oars-bg: #181A1B;
  --oars-text: rgba(255, 255, 255, 0.95);
  --oars-muted: rgba(255, 255, 255, 0.6);
  --oars-line: rgba(255, 255, 255, 0.18);
  --oars-line-strong: rgba(255, 255, 255, 0.95);
  --oars-accent: rgba(255, 255, 255, 0.1);
}

html {
    box-sizing: border-box;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--oars-text);
    background-color: var(--oars-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

*,
:after,
:before {
    box-sizing: inherit
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 18px
}

@media only screen and (max-width:649px) {

    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ol,
    p,
    ul {
        font-size: 19px
    }
}

@media only screen and (min-width:650px) {

    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ol,
    p,
    ul {
        font-size: clamp(16px, 0.5vw + 12px, 19px)
    }
}

ol,
ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin-bottom: 25px
}

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

a:hover {
    color: grey
}

.site {
    padding: 20px 20px 20px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width:650px) {
    .site {
        padding: 60px 80px 00px 80px
    }
}

.site-bottom,
.site-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.site-bottom {
    align-items: flex-end;
    justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  margin-top: auto;
  position: relative;
  width: 100%;
  margin-left: 0;
}

.site-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: 1px;
  background: #424345;
}

@media only screen and (min-width:650px) {
  .site-bottom::before {
    left: -80px;
    right: -80px;
  }
}

/* Keep footer in normal flow on small screens */

.site-bottom__column,
.site-top__column {
    width: 100%;
}

@media only screen and (max-width:649px) {
    .site-top__column--right {
        margin-top: 60px;
    }
}

.site-top__column--right {
}

@media only screen and (min-width:650px) {

    .site-bottom__column,
    .site-top__column {
        width: 50%
    }
}

.site-bottom__column p:last-of-type {
    margin-bottom: 0
}

.site-bottom__column--left {
    margin-bottom: 25px
}

.site-bottom__column--right {
    text-align: center;
}

@media only screen and (min-width:650px) {
    .site-bottom__column--left {
        margin-bottom: 0
    }
}

.site-top {
    margin-bottom: 100px
}

@media only screen and (max-width:649px) {
    .site-top {
        margin-bottom: 40px;
    }
}

.site-top h1 {
    margin-bottom: 0
}

.bw {
    filter: grayscale(100%);
    font-size: 16px;
    display: inline-block;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #A3A3A4;
}

.show-for--large {
    display: none
}

@media only screen and (min-width:650px) {
    .show-for--large {
        display: block
    }
}

@media only screen and (min-width:650px) {
    .hide-for--large {
        display: none
    }
}



.logo-container {
    position: relative;
    display: inline-block;
}

.logo-image {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    transition: filter 0.3s ease;
}

@media only screen and (min-width:650px) {
  .logo-image {
    width: 220px;
    height: auto;
  }
}

.logo-container:hover .logo-image {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.oars-message {
  max-width: 680px;
  padding-bottom: 50px;
  position: relative;
}

.oars-message p {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  position: relative;
  font-size: 1.2em;
}

/* Contact form */

.contact-form {
  margin-top: 48px;
  width: min(560px, 100%);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--oars-line);
  padding: 14px 0;
  margin: 0 0 26px 0;
  font-family: inherit;
  font-size: 1em;
  color: var(--oars-text);

  /* Premium underline animation */
  background-image: linear-gradient(var(--oars-line-strong), var(--oars-line-strong));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;

  transition: border-color 180ms ease, background-size 220ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--oars-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: rgba(255, 255, 255, 0.35);
  background-size: 100% 1px;
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.35;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* Contact form submit button (premium) */
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;
  margin-top: 20px;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;

  font-family: inherit;
  font-size: clamp(13px, 0.35vw + 11px, 17px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--oars-text);

  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;

  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.contact-form button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.contact-form button:hover::before {
  left: 100%;
}

.contact-form button:hover::after {
  opacity: 1;
}

.contact-form button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.contact-form button:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.65);
}

/* Contact form helpers */
.oars-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status-container {
  width: min(560px, 100%);
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-status-container[hidden] {
  display: none !important;
}

.form-status {
  margin: 0;
  color: var(--oars-text);
  font-size: clamp(14px, 0.4vw + 11px, 17px);
  font-weight: 400;
  text-align: center;
  padding: 0;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Right column typography scale */
.site-top__column--right {
  font-size: clamp(16px, 0.6vw + 12px, 20px);
}

@media (max-width: 860px) {
  .contact-form {
    width: 100%;
  }
}
