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

:root {
  --green: #1B4332;
  --green-light: #2D6A4F;
  --green-dark: #0F2919;
  --offwhite: #F5F0E8;
  --offwhite-dark: #E8E0D0;
  --accent: #D4A843;
  --accent-light: #F0D68A;
  --text: #1A1A1A;
  --text-light: #555;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(27, 67, 50, 0.10);
  --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--green); color: var(--offwhite);
  padding: 8px 16px; z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-light);
  background: rgba(45, 106, 79, 0.10); padding: 6px 14px;
  border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green); margin-bottom: 16px;
}
.accent { color: var(--accent); }
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9375rem;
  padding: 14px 28px; border-radius: 50px; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green); color: var(--offwhite);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: transparent; color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--offwhite); }
.btn-accent {
  background: var(--accent); color: var(--green-dark);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-light); border-color: var(--accent-light); box-shadow: var(--shadow-lg); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--green); }
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--accent); color: var(--green-dark);
  border-color: var(--accent); padding: 10px 22px; font-size: 0.875rem;
}
.btn-nav:hover { background: var(--accent-light); }

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.25rem; color: var(--green);
}
.logo-icon { color: var(--green); }
.logo-text { letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) {
  font-size: 0.9375rem; font-weight: 500; color: var(--text);
  position: relative; transition: var(--transition);
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--green); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.menu-btn .bar {
  width: 24px; height: 2px; background: var(--green);
  transition: var(--transition); border-radius: 2px;
}
.menu-btn.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active .bar:nth-child(2) { opacity: 0; }
.menu-btn.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative;
  background: var(--offwhite); padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle {
  border-radius: 50%; position: absolute;
}
.geo-circle--1 {
  width: 500px; height: 500px;
  background: rgba(45, 106, 79, 0.06);
  top: -120px; right: -100px;
}
.geo-circle--2 {
  width: 200px; height: 200px;
  background: rgba(212, 168, 67, 0.12);
  bottom: 120px; left: -60px;
}
.geo-rect {
  position: absolute; width: 160px; height: 160px;
  background: rgba(27, 67, 50, 0.05);
  top: 200px; left: 60px;
  transform: rotate(35deg); border-radius: 20px;
}
.geo-tri {
  position: absolute; width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(212, 168, 67, 0.08);
  bottom: 200px; right: 80px;
  transform: rotate(-15deg);
}
.geo-dots {
  position: absolute; width: 120px; height: 120px;
  bottom: 180px; right: 200px;
  background-image: radial-gradient(circle, rgba(27, 67, 50, 0.15) 2px, transparent 2px);
  background-size: 16px 16px;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--offwhite);
  font-size: 0.8125rem; font-weight: 600; padding: 8px 16px;
  border-radius: 50px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--green); line-height: 1.08; margin-bottom: 24px;
}
.hero-title-accent {
  display: block; font-size: 0.55em; color: var(--accent);
  font-weight: 600; margin-top: 8px;
}
.hero-sub {
  font-size: 1.125rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--green);
}
.trust-item svg { color: var(--accent); }

.hero-image-wrap { position: relative; }
.hero-image-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 28px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px;
}
.float-card-number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 800; color: var(--green); line-height: 1;
}
.float-card-number span { font-size: 1.2rem; color: var(--accent); }
.float-card-label { font-size: 0.8125rem; color: var(--text-light); font-weight: 500; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Services ────────────────────────────────────────── */
.services {
  padding: 100px 24px;
  background: var(--offwhite);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: var(--transition); border: 1px solid rgba(27, 67, 50, 0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--green); color: var(--offwhite);
}
.service-card h3 {
  font-family: 'Inter', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--green); margin-bottom: 12px;
}
.service-card p { font-size: 0.9375rem; color: var(--text-light); line-height: 1.7; }
.service-geo {
  position: absolute; width: 120px; height: 120px;
  background: rgba(27, 67, 50, 0.03); border-radius: 50%;
  bottom: -40px; right: -40px; transition: var(--transition);
}
.service-card:hover .service-geo { transform: scale(1.5); background: rgba(27, 67, 50, 0.06); }

/* ── About ───────────────────────────────────────────── */
.about {
  padding: 100px 24px;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-card {
  position: absolute; top: -20px; right: 40px;
  background: var(--green); color: var(--offwhite);
  border-radius: var(--radius); padding: 20px 28px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 800; line-height: 1; color: var(--accent);
}
.stat-number span { font-size: 1.2rem; }
.stat-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.about-content .section-title { margin-bottom: 24px; }
.about-text { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-values { margin: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-item { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.9375rem; }
.value-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(27, 67, 50, 0.10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Process ─────────────────────────────────────────── */
.process {
  padding: 100px 24px;
  background: var(--green);
  color: var(--offwhite);
  position: relative; overflow: hidden;
}
.process .section-tag { background: rgba(255,255,255,0.15); color: var(--accent-light); }
.process .section-title { color: var(--offwhite); }
.process .section-title .accent { color: var(--accent-light); }
.process .section-desc { color: rgba(245, 240, 232, 0.7); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; max-width: 960px; margin: 0 auto;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.process-step h3 {
  font-family: 'Inter', sans-serif; font-size: 1.1875rem;
  font-weight: 700; margin: 20px 0 12px; color: var(--offwhite);
}
.process-step p { font-size: 0.9375rem; color: rgba(245, 240, 232, 0.7); line-height: 1.7; }
.step-number {
  font-family: 'Playfair Display', serif; font-size: 5rem;
  font-weight: 800; color: rgba(255,255,255,0.07);
  line-height: 1; margin-bottom: 8px;
}
.step-line {
  width: 60px; height: 3px; background: var(--accent);
  margin: 0 auto 20px; border-radius: 2px;
}
.process .container { position: relative; z-index: 1; }
.process-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.process-bg-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.process-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; left: -200px; }
.process-bg-circle:nth-child(2) { width: 400px; height: 400px; bottom: -100px; right: -100px; }

/* ── Portfolio ───────────────────────────────────────── */
.portfolio {
  padding: 100px 24px;
  background: var(--offwhite);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  color: var(--offwhite); font-weight: 600; font-size: 1rem;
}
.portfolio-item--wide { grid-column: span 7; }
.portfolio-item:not(.portfolio-item--wide) { grid-column: span 5; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials {
  padding: 100px 24px;
  background: var(--white);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--offwhite); border-radius: var(--radius-lg);
  padding: 40px 32px; position: relative;
  transition: var(--transition); border: 1px solid transparent;
}
.testimonial-card:hover {
  border-color: rgba(27, 67, 50, 0.1);
  box-shadow: var(--shadow);
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 5rem;
  line-height: 1; color: var(--accent); position: absolute;
  top: 16px; left: 28px; opacity: 0.4;
}
.testimonial-text {
  font-size: 1rem; color: var(--text-light); line-height: 1.8;
  margin-bottom: 24px; position: relative; z-index: 1;
  padding-top: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(27, 67, 50, 0.10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-weight: 700; font-size: 0.9375rem; color: var(--green); }
.author-location { font-size: 0.8125rem; color: var(--text-light); }

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  padding: 100px 24px;
  background: var(--green);
  color: var(--offwhite); position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-circle--1 { width: 400px; height: 400px; top: -150px; left: -100px; }
.cta-circle--2 { width: 250px; height: 250px; bottom: -80px; right: 50px; }
.cta-rect {
  position: absolute; width: 200px; height: 200px;
  background: rgba(212, 168, 67, 0.10);
  top: 50px; right: 100px; transform: rotate(45deg);
  border-radius: 24px;
}
.cta-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--offwhite); margin-bottom: 20px;
}
.cta-text { font-size: 1.125rem; color: rgba(245, 240, 232, 0.75); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ── Contact ─────────────────────────────────────────── */
.contact {
  padding: 100px 24px;
  background: var(--offwhite);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-desc { font-size: 1.0625rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(27, 67, 50, 0.08); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; }
.contact-value { font-size: 1rem; font-weight: 600; color: var(--green); }
.contact-value:hover { color: var(--green-light); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow);
  border: 1px solid rgba(27, 67, 50, 0.06);
}
.form-title {
  font-size: 1.5rem; color: var(--green); margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--offwhite-dark);
  border-radius: var(--radius); font-family: inherit;
  font-size: 0.9375rem; color: var(--text);
  background: var(--offwhite);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center; padding: 40px 20px;
  color: var(--green);
}
.form-success p { margin-top: 16px; font-size: 1.0625rem; color: var(--text-light); }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--green-dark); color: var(--offwhite);
  padding: 80px 24px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 60px;
}
.logo-light { color: var(--offwhite); }
.logo-light .logo-icon { color: var(--offwhite); }
.footer-brand p { color: rgba(245, 240, 232, 0.6); margin-top: 16px; line-height: 1.7; font-size: 0.9375rem; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-contact a {
  color: rgba(245, 240, 232, 0.65); font-size: 0.9375rem;
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--offwhite); }
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(245, 240, 232, 0.4); font-size: 0.8125rem; }

/* ── Scroll Animations ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-float-card { left: auto; right: -10px; bottom: -10px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--offwhite); flex-direction: column;
    padding: 32px 24px; gap: 24px;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    box-shadow: var(--shadow);
    transform: translateY(-120%); opacity: 0;
    transition: var(--transition); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .menu-btn { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-item--wide { grid-column: span 12; }
  .portfolio-item:not(.portfolio-item--wide) { grid-column: span 6; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .about-img-secondary { right: -10px; bottom: -20px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-float-card { left: 10px; bottom: -10px; }
  .portfolio-item--wide,
  .portfolio-item:not(.portfolio-item--wide) { grid-column: span 12; }
}
