/* ============================================================
   TG&B Marine Services — style.css
   Shared stylesheet for all pages
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@700;800&family=Open+Sans:wght@400;500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:      #00274C;
  --navy-dark: #001A38;
  --orange:    #F07020;
  --orange-lt: #F5A050;
  --text-dark: #1A2A3A;
  --text-mid:  #3A5070;
  --text-lt:   #5A7090;
  --bg-light:  #F8F6F2;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --radius:    10px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.text-lt     { color: var(--text-lt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #d45f10;
  border-color: #d45f10;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: #003a70;
  border-color: #003a70;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.site-header:not(.scrolled) {
  background: transparent;
}

/* For inner pages that start on navy bg, always show solid */
.site-header.always-solid {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.20);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo img {
  max-height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--orange-lt); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange-lt); }

.nav-phone {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--orange-lt); }
.nav-phone i { color: var(--orange); font-size: 0.9rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--orange-lt); }

.mobile-nav .mobile-phone {
  color: var(--orange-lt);
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ---------- Hero (Homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/rsw_1280h_960.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 50, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 100px;
  max-width: 700px;
}

.hero-logo {
  max-width: 460px;
  width: 90%;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: color var(--transition);
}

.hero-scroll-arrow:hover { color: var(--orange-lt); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: 140px 24px 80px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Section: Intro ---------- */
.intro-section {
  background: var(--white);
  text-align: center;
}

.intro-section h2 { color: var(--navy); margin-bottom: 20px; }

.intro-section p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Section: Who We Are ---------- */
.who-we-are {
  background: var(--navy);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.who-text h2 { color: var(--white); margin-bottom: 20px; }
.who-text p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; }

.who-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- Section: What We Do (cards) ---------- */
.services-section { background: var(--bg-light); }

.services-section h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 4px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

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

.card-body { padding: 24px 24px 28px; }

.card-body h3 { color: var(--navy); margin-bottom: 12px; }
.card-body p  { color: var(--text-mid); font-size: 0.97rem; }

/* ---------- Section: Remote Access ---------- */
.remote-access {
  background: var(--navy-dark);
}

.remote-text h2 { color: var(--white); margin-bottom: 20px; }
.remote-text p  { color: rgba(255,255,255,0.80); font-size: 1.05rem; margin-bottom: 28px; }

.remote-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Section: Process Snapshot ---------- */
.process-section { background: var(--white); }

.process-section h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.step-img-wrap {
  position: relative;
  margin-bottom: 20px;
}

.step-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(240,112,32,0.4);
}

.process-step h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.process-step p  { color: var(--text-mid); font-size: 0.93rem; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--orange);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.stat-number {
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.90);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.osha-badge {
  text-align: center;
  margin-top: 8px;
}

.osha-badge span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 30px;
}

.osha-badge i { font-size: 1.1rem; }

/* ---------- Fleet Preview ---------- */
.fleet-preview {
  background: var(--navy);
}

.fleet-text h2 { color: var(--white); margin-bottom: 16px; }
.fleet-text p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1.05rem; }

.fleet-list {
  margin-bottom: 32px;
}

.fleet-list li {
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.fleet-list li:last-child { border-bottom: none; }

.fleet-list li i {
  color: var(--orange);
  font-size: 0.85rem;
  width: 18px;
}

.fleet-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.40);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #d45f10 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Vessels page ---------- */
.vessel-section { background: var(--white); }
.vessel-section:nth-of-type(even) { background: var(--bg-light); }

.vessel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vessel-inner.flip { }

.vessel-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vessel-info h2 { color: var(--navy); margin-bottom: 6px; }

.vessel-nickname {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 20px;
}

.vessel-info p { color: var(--text-mid); margin-bottom: 20px; }

.equip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.equip-tag {
  background: var(--navy);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
}

.vessel-advantages {
  background: var(--navy);
}

.vessel-advantages h2 { color: var(--white); text-align: center; margin-bottom: 40px; }

.advantages-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.adv-item {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}

.adv-item i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.adv-item p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0rem;
  font-weight: 500;
  margin: 0;
}

.advantages-cta { text-align: center; }

/* ---------- Contact page ---------- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { color: var(--navy); margin-bottom: 28px; }

.big-phone {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--orange);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.big-phone:hover { color: #d45f10; }

.info-list { display: flex; flex-direction: column; gap: 16px; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-row i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 3px;
  width: 20px;
  flex-shrink: 0;
}

.info-row span {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.5;
}

.info-row a { color: var(--text-mid); transition: color var(--transition); }
.info-row a:hover { color: var(--orange); }

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  transition: color var(--transition);
}
.facebook-link:hover { color: var(--orange); }
.facebook-link i { font-size: 1.3rem; color: #1877F2; }

/* Contact Form */
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 28px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D0DAEA;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,112,32,0.12);
}

.form-group textarea { min-height: 140px; }

.form-submit { margin-top: 8px; }

.form-submit .btn { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.80);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  max-height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--orange-lt); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.70);
}

.footer-contact-list li i {
  color: var(--orange);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.70);
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--orange-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom a:hover { color: var(--orange-lt); }
.footer-bottom i { font-size: 1rem; color: #1877F2; }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ---------- Dividers / Accents ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ---------- Responsive ---------- */

/* Tablet (max 900px) */
@media (max-width: 900px) {

  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .two-col,
  .vessel-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .two-col.reverse { direction: ltr; }

  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .advantages-list { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }

  .form-row { grid-template-columns: 1fr; }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {

  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }

  .hero-logo { max-width: 280px; }
  .hero-tagline { font-size: 0.88rem; }

  .process-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }

  .cards-grid { max-width: 100%; }

  .contact-grid { gap: 40px; }

  .big-phone { font-size: 1.6rem; }
}

/* Vessel placeholder (no photo yet) */
.vessel-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 280px;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
}
.vessel-img-placeholder i { font-size: 2.5rem; }

/* Harbor photo break section */
.harbor-break {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.harbor-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.harbor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,50,0.65) 0%, rgba(0,20,50,0.15) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px 48px;
}
.harbor-caption {
  color: rgba(255,255,255,0.85);
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 600px) {
  .harbor-break { height: 280px; }
  .harbor-overlay { padding: 20px 24px; }
  .harbor-caption { font-size: 0.9rem; }
}

/* Footer icon */
.footer-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  display: block;
}
