@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #10130f;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.9), transparent 30%), linear-gradient(115deg, rgba(177, 138, 44, 0.11) 0 1px, transparent 1px 100%), #f7f0e3;
  background-size: auto, 260px 260px, auto;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: linear-gradient(120deg, transparent 0 63%, rgba(177, 138, 44, 0.13) 63.2%, transparent 64%), linear-gradient(28deg, transparent 0 78%, rgba(177, 138, 44, 0.12) 78.2%, transparent 79%);
  mix-blend-mode: multiply;
}

.site-header {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  padding: 2rem 1rem 1.3rem;
  text-align: center;
  position: relative;
  background-image: url("../img/marmor.jpeg");
  border-bottom: 2px solid #b18a2c;
}
.site-header h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 500;
  color: #001f1a;
}
.site-header > p {
  margin: 0;
  font-family: "Cinzel", serif;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: #022d25;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.site-header nav a {
  color: #10130f;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-header nav a:hover {
  color: #b18a2c;
}
.site-header nav span {
  width: 2px;
  height: 20px;
  background: #b18a2c;
}

.brand-mark {
  width: 58px;
  height: 58px;
  position: relative;
  transform: rotate(45deg);
  border: 3px solid #b18a2c;
  background: #022d25;
  box-shadow: inset 0 0 0 8px #f7f0e3, inset 0 0 0 13px #022d25;
}
.brand-mark span {
  position: absolute;
  inset: 15px;
  border: 2px solid #b18a2c;
  background: #f7f0e3;
}

.hero {
  min-height: 600px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: 3rem;
}
.hero__image {
  border-radius: 16px;
  position: absolute;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)), url("../img/tanker.jpeg");
  background-position: 55% 90%;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(92%, 540px);
  margin-left: max(50vw, 3rem);
  color: white;
  padding: 2rem 2rem 2rem 4rem;
}
.hero__content h2 {
  margin: 0.5rem 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
}
.hero__content p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.05rem;
}

.ewt-logo {
  max-width: 500px;
  height: auto;
  margin-bottom: -70px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #b18a2c;
  font-family: "Cinzel", serif;
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.rule {
  width: 72px;
  height: 2px;
  background: #b18a2c;
  margin: 1.25rem 0;
}

.section {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  padding: 4.25rem 0;
}

.overview {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 3rem;
}
.overview__copy h2 {
  margin: 0 0 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}
.overview__copy p:not(.eyebrow) {
  font-size: 0.96rem;
  max-width: 520px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(177, 138, 44, 0.35);
}

.card {
  padding: 1.4rem 1.6rem 1rem;
  border-right: 1px solid rgba(177, 138, 44, 0.35);
}
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin: 0.9rem 0 0.7rem;
}
.card p {
  margin: 0;
}

.icon {
  width: 65px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(49%) sepia(67%) saturate(457%) hue-rotate(5deg) brightness(99%) contrast(88%);
}

.icon-small {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(49%) sepia(67%) saturate(457%) hue-rotate(5deg) brightness(99%) contrast(88%);
}

.column {
  text-align: center;
}

.handshake::before {
  content: "🤝";
  font-size: 3rem;
  filter: sepia(1) saturate(2);
}

.ship::before {
  content: "⚓";
  font-size: 3.8rem;
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 3.5rem;
  border-top: 1px solid rgba(177, 138, 44, 0.35);
}
.contact__info {
  padding-right: 2.5rem;
  border-right: 1px solid rgba(177, 138, 44, 0.35);
}
.contact__info > p:not(.eyebrow) {
  max-width: 340px;
}
.contact__form h3 {
  margin: 0 0 1.3rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.98rem;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(177, 138, 44, 0.35);
  background: rgba(255, 255, 255, 0.35);
  font: inherit;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #b18a2c;
  box-shadow: 0 0 0 3px rgba(177, 138, 44, 0.14);
}
.contact__form textarea {
  min-height: 98px;
  resize: vertical;
}
.contact__form button {
  margin-top: 0.3rem;
  border: 0;
  padding: 1rem 2rem;
  min-width: 250px;
  color: #f7e8c0;
  background: linear-gradient(135deg, #022d25, #001b16);
  font-family: "Cinzel", serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact__form button span {
  margin-left: 1.2rem;
  font-size: 1.4rem;
}
.contact__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.detail {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}
.detail p {
  margin: 0;
  line-height: 1.45;
}
.detail a {
  color: inherit;
  text-decoration: none;
}
.detail__icon {
  color: #b18a2c;
  font-size: 2rem;
  min-width: 36px;
  line-height: 1;
}

footer {
  padding: 1.25rem;
  text-align: center;
  color: white;
  background: #001f1a;
  font-size: 0.88rem;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 300px;
    display: flex;
  }
  .hero__image {
    max-width: 850px;
    background-size: 120%;
  }
}
@media (max-width: 900px) {
  .overview,
  .contact {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(177, 138, 44, 0.35);
  }
  .card {
    border-bottom: 1px solid rgba(177, 138, 44, 0.35);
  }
  .contact__info {
    border-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .hero {
    min-height: 200px;
    display: flex;
  }
  .hero__image {
    max-width: 650px;
    background-size: 120%;
  }
  .hero__content {
    padding: 0;
  }
  .hero h2 {
    font-size: 32px;
    margin: 0;
    max-width: 300px;
  }
  .hero p:not(.eyebrow) {
    font-size: 12px;
    max-width: 330px;
  }
}
@media (max-width: 560px) {
  .eyebrow {
    font-size: 10px;
    margin-top: 5px;
  }
  .rule {
    margin: 0.2rem;
  }
  .hero {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 20px;
    margin-bottom: -25px;
    max-height: 600px;
  }
  .hero h2 {
    font-size: 22px;
    margin-top: -10px;
  }
  .hero p:not(.eyebrow) {
    max-width: 520px;
    font-size: 10px;
  }
  .ewt-logo {
    max-width: 250px;
  }
  .site-header nav {
    margin-top: 35px;
    font-size: 14px;
  }
  .site-header nav a {
    font-size: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
