/* =============================================
   SMART MARINUS VALOR SOLUTIONS
   style.css
   ============================================= */

/* --- VARIABLES --- */
:root {
  --primary:    #0E3B36;
  --secondary:  #184D46;
  --accent:     #7D5C24; /* darkened from #B88A3C: small uppercase .label text needs >=4.5:1 contrast on ivory */
  --gold:       #D4AF37;
  --gold-light: #e8c84a;
  --bg:         #F7F5EF;
  --bg-stone:   #ECE8DF;
  --text:       #1F1F1F;
  --text-muted: #5F6664;
  --white:      #FFFFFF;

  --font-display: 'Cinzel', serif;
  --font-body:    'Lato', sans-serif;

  --nav-h:    80px;
  --section-v: 100px;
  --container: 1200px;
  --radius:   4px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-v) 0;
}

.bg-stone { background: var(--bg-stone); }

.label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.label.light { color: var(--gold); }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sec-title.light { color: var(--white); }

.sec-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sec-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.sec-header .sec-title { margin-bottom: 16px; }

.mt { margin-top: 40px; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--primary);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-dark:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,59,54,0.3);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(14, 59, 54, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-quote {
  color: var(--gold) !important;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s !important;
}

.nav-quote:hover {
  background: var(--gold);
  color: var(--primary) !important;
  border-color: var(--gold) !important;
}

.nav-quote::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* accounts for mobile browser toolbar show/hide, avoids fixed-nav desync on scroll */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 30, 28, 0.88) 0%,
    rgba(14, 59, 54, 0.75) 50%,
    rgba(8, 30, 28, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-loc {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-heading .line1 {
  display: block;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  color: var(--white);
}

.hero-heading .line2 {
  display: block;
  font-size: clamp(1.6rem, 4.5vw, 3.4rem);
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hero-rule {
  width: 280px;
  max-width: 70vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: rgba(247,245,239,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hidden entrance states apply only when JS confirms GSAP loaded (html.js-anim),
   so the hero never stays blank if the CDN fails or motion is reduced. */
html.js-anim .hero-loc,
html.js-anim .hero-tag,
html.js-anim .hero-sub,
html.js-anim .hero-btns {
  opacity: 0;
}

html.js-anim .hero-heading .line1,
html.js-anim .hero-heading .line2 {
  opacity: 0;
  transform: translateY(60px);
}

html.js-anim .hero-rule { width: 0; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-bar {
  width: 1px;
  height: 50px;
  background: rgba(212,175,55,0.25);
  position: relative;
  overflow: hidden;
}

.scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14,59,54,0.18);
}

.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.35;
}

.about-body .sec-title { margin-bottom: 20px; }


/* --- SERVICES --- */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14,59,54,0.15);
}

.svc-img {
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-body {
  padding: 24px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card:hover .svc-body { border-top-color: var(--gold); }

.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.svc-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- VALUES --- */
.values-section {
  position: relative;
  padding: var(--section-v) 0;
  overflow: hidden;
}

.values-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.values-bg-img {
  width: 100%;
  height: 100%; /* parallax overshoot comes from a GSAP scale transform, not layout height (same fix as hero, see PROGRESS.md 2026-07-05) */
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.values-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 30, 28, 0.93) 0%,
    rgba(14, 59, 54, 0.88) 100%
  );
}

.values-section .container { position: relative; z-index: 1; }

.values-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.val-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}

.val-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.6);
  transform: translateY(-4px);
}

.val-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.val-icon svg { width: 100%; height: 100%; }

.val-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.val-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* --- FORMS (shared) --- */
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fg.full { grid-column: 1 / -1; }

.fg label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d5d0c6;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.fg input::placeholder,
.fg textarea::placeholder { color: #bbb; }

.fg input:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.fg textarea { resize: vertical; }

.radio-row,
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 6px;
}

.radio-row label,
.check-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  cursor: pointer;
}

.radio-row input[type="radio"],
.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.req { color: #b3261e; }

.req-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -16px 0 24px;
}

.fg.invalid input,
.fg.invalid textarea {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179,38,30,0.08);
}

.field-err {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #b3261e;
}

.form-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 8px;
}

.form-grid-2 {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

/* --- RFQ FORM --- */
.form-steps {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 0;
}

.step-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s;
  opacity: 0.4;
}

.step-btn.active { opacity: 1; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.step-btn.active .step-num { color: var(--gold); }

.step-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step-btn.active .step-name { color: var(--primary); }

.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.2));
  margin: 0 16px;
  min-width: 20px;
}

.form-panel { display: none; }
.form-panel.active { display: block; }

.panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-stone);
}

.panel-nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 36px;
  flex-wrap: wrap;
}

#rfqForm {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(14,59,54,0.08);
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.form-success.inline {
  padding: 20px 0 0;
  text-align: left;
}

.form-success.inline p {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

.form-error {
  padding: 20px 0 0;
  text-align: left;
}

.form-error p {
  color: #b3261e;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Honeypot field - hidden from sighted users and keyboard tab order,
   but still present in the DOM so bots that auto-fill every field get caught. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  gap: 60px;
  align-items: start;
}

.contact-info .sec-title { margin-bottom: 16px; }
.contact-info .sec-text { margin-bottom: 36px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.cd-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cd-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}

.cd-item span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(14,59,54,0.08);
}

.contact-form-wrap .fg { margin-bottom: 20px; }

/* --- FOOTER --- */
.footer {
  background: var(--primary);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212,175,55,0.4);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-vals {
  font-family: var(--font-display);
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  color: var(--gold) !important;
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-bar::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet and up (768px) */
@media (min-width: 768px) {

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

  .about-img-frame img { height: 540px; }



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

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

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

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

}

/* Desktop and up (1024px) */
@media (min-width: 1024px) {

  :root {
    --section-v: 120px;
  }

  .nav-burger { display: none; }

  .nav-links { display: flex !important; position: static; flex-direction: row; background: none; padding: 0; }


}

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

  :root {
    --section-v: 72px;
    --nav-h: 68px;
  }

  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(14,59,54,0.98);
    padding: 28px 24px 40px;
    gap: 0;
    border-top: 1px solid rgba(212,175,55,0.2);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a::after { display: none; }

  .nav-quote {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px !important;
    border-color: rgba(212,175,55,0.5) !important;
  }

  .hero-content { padding: 0 20px; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; text-align: center; }

  .about-stats { gap: 20px; }

  .about-img-frame img { height: 300px; }

  #rfqForm { padding: 24px 20px; }

  .form-steps { gap: 8px; }
  .step-line { min-width: 10px; }
  .step-name { display: none; }

  .panel-nav { justify-content: stretch; }
  .panel-nav .btn { flex: 1; text-align: center; }

  .contact-form-wrap { padding: 28px 20px; }

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

}

/* Large screens */
@media (min-width: 1280px) {
  .about-img-frame img { height: 600px; }
}
