:root {
  --navy: #18263d;
  --navy-soft: #243653;

  --petrol: #5f7f8d;
  --petrol-light: #89a3ad;
  --petrol-dark: #48636e;

  --cream: #f7f4ef;
  --sand: #d9cec0;
  --brown: #9b8778;

  --white: #ffffff;
  --text: #1f1f1f;
  --muted: #5f6870;
  --border: #d8dfe2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: white;
  color: var(--text);
  line-height: 1.7;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo img {
  height: 85px;
  display: block;
}
}

nav a {

  margin-left: 34px;

  color: var(--navy);

  text-decoration: none;

  font-size: 17px;

  font-weight: 500;

  letter-spacing: 0.01em;

  transition: 0.25s ease;
}
}nav a:visited {
  color: var(--navy);
  text-decoration: none;
}

nav a:hover {
  color: var(--petrol-dark);
  text-decoration: none;
}

.hero-image-only {
  min-height: 100vh;
  position: relative;
  background-image:
    linear-gradient(rgba(24,38,61,0.12), rgba(24,38,61,0.12)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-claim-only {
  position: absolute;
  right: 7%;
  bottom: 80px;
  max-width: 520px;
  text-align: right;
}

.hero-claim-only h1 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  font-weight: 500;
  text-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

.hero-button {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 30px;
  background: var(--petrol-dark);
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.hero-button:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.intro {
  padding: 110px 7%;
  background: var(--cream);
  border-left: 12px solid var(--petrol);
}

.intro-title {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 500;
  color: var(--navy);
  max-width: 920px;
  margin: 0 0 34px;
}

.intro p {
  max-width: 880px;
  color: var(--muted);
  font-size: 20px;
}

.motto {
  padding: 90px 7%;
  background: linear-gradient(
    135deg,
    var(--petrol-dark),
    var(--navy)
  );
  color: white;
  text-align: center;
}

.motto p {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.24;
  font-weight: 500;
}

.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;
  min-height: 820px;
  padding: 110px 7%;
}

.editorial-section.reverse {
  background: #f4f7f8;
}

.editorial-image-wrap {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-image-wrap img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.color-block {
  position: absolute;
  z-index: 1;
  width: 72%;
  height: 540px;
}

.color-block.sand {
  background: var(--petrol-light);
  left: 4%;
  top: 28px;
}

.color-block.petrol {
  background: var(--petrol);
  right: 4%;
  top: 28px;
}

.editorial-text {
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 34px;
  color: var(--navy);
}

.editorial-text p {
  color: var(--muted);
}

blockquote {
  margin: 42px 0;
  padding-left: 26px;
  border-left: 8px solid var(--petrol);
  color: var(--navy);
  font-size: 20px;
  line-height: 1.7;
}

blockquote span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.principles {
  margin-top: 34px;
  border-top: 1px solid var(--border);
}

.principles div {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.principles h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.principles p {
  margin: 0;
}

.sticky-story {
  background-image:
    linear-gradient(
      rgba(24,38,61,0.22),
      rgba(24,38,61,0.22)
    ),
    url("images/sticky.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 180px 7%;
}

.sticky-content {
  display: flex;
  flex-direction: column;
  gap: 220px;
}

.sticky-card {
  background: rgba(255,255,255,0.95);
  max-width: 620px;
  padding: 48px;
  border-left: 8px solid var(--petrol);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.sticky-card:nth-child(even) {
  margin-left: auto;
  border-left-color: var(--petrol-light);
}

.sticky-card h2 {
  margin-bottom: 18px;
}

.sticky-card p {
  color: var(--muted);
  font-size: 18px;
}

.services {
  padding: 115px 7%;
  background: white;
  border-top: 12px solid var(--petrol);
}

.services h2 {
  text-align: center;
}

.service-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 8px solid var(--petrol);
  transition: 0.25s ease;
}

.service-card:nth-child(2) {
  border-left-color: var(--petrol-light);
}

.service-card:nth-child(3) {
  border-left-color: var(--brown);
}

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

.service-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.service-card div {
  padding: 34px;
}

.service-card h3 {
  font-size: 25px;
  line-height: 1.24;
  font-weight: 500;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
}

.testimonials {
  padding: 115px 7%;
  background: #f4f7f8;
  border-top: 12px solid var(--petrol);
}

.testimonials h2 {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial {
  background: white;
  padding: 38px;
  border: 1px solid var(--border);
  border-left: 8px solid var(--petrol);
}

.testimonial:nth-child(2) {
  border-left-color: var(--petrol-light);
}

.testimonial:nth-child(3) {
  border-left-color: var(--brown);
}

.testimonial h3 {
  font-size: 23px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--navy);
  margin-top: 0;
}

.preview-text {
  color: var(--muted);
}

.full-text {
  display: none;
  margin-top: 22px;
}

.testimonial.open .full-text {
  display: block;
}

.testimonial.open .preview-text {
  display: none;
}

.read-more {
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid var(--petrol-dark);
  background: transparent;
  color: var(--petrol-dark);
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

.read-more:hover {
  background: var(--petrol-dark);
  color: white;
}

.testimonial span {
  display: block;
  margin-top: 24px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 500;
}

.contact-band {
  background: linear-gradient(
    135deg,
    var(--petrol-dark),
    var(--navy)
  );
  color: white;
  padding: 90px 7%;
}

.contact-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
  align-items: start;
}

.contact-left {
  justify-self: start;
  max-width: 360px;
}

.contact-left h2 {
  color: white;
  font-size: 44px;
  margin: 0 0 22px;
}

.contact-left p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.contact-right {
  justify-self: end;
  width: 100%;
  max-width: 430px;
  text-align: left;
}

.contact-name {
  margin: 0 0 42px;
  font-size: 28px;
  font-weight: 500;
  color: white;
}

.contact-right p {
  margin: 0 0 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 24px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.72);
}

.contact-right a {
  color: white;
  text-decoration: none;
}

.contact-right a:hover {
  color: var(--cream);
}

.social-links {
  display: flex;
  gap: 22px;
  margin-top: 34px;
}

.social-links a {
  color: white;
  transition: 0.25s ease;
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.social-links a:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

footer {
  padding: 30px 7%;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .navbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
  }

  .hero-image-only {
    min-height: 72vh;
  }

  .hero-claim-only {
    right: 7%;
    left: 7%;
    bottom: 50px;
    text-align: left;
  }

  .editorial-section,
  .service-grid,
  .testimonial-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .editorial-section {
    min-height: auto;
    padding: 70px 7%;
  }

  .editorial-image-wrap {
    min-height: 460px;
  }

  .editorial-image-wrap img {
    width: 84%;
    height: 390px;
  }

  .color-block {
    height: 410px;
  }

  .contact-left,
  .contact-right {
    justify-self: start;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }
}
/* FIX NAVIGATION */

.navbar nav a,
.navbar nav a:link,
.navbar nav a:visited {
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  margin-left: 34px !important;
}

.navbar nav a:hover {
  color: var(--petrol-dark) !important;
  text-decoration: none !important;
}

.logo img {
  height: 75px !important;
  display: block !important;
}

.navbar {
  padding: 18px 7% !important;
  align-items: center !important;
}