/* ============================================
   Unlimited Pre-Construction - Style System
   ============================================ */

/* Custom Properties */
:root {
  --color-primary: #800020;
  --color-primary-dark: #580016;
  --color-gold: #C9A84C;
  --color-gold-dark: #9E7B2F;
  --color-bg: #0A0A0A;
  --color-surface: #161616;
  --color-stone: #2E2E2E;
  --color-text: #C8C2B8;
  --color-heading: #F0EAE0;
  --font-heading: 'Fjalla One', sans-serif;
  --font-subheading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-gold);
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-heading);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

h4, h5, h6 {
  font-family: var(--font-subheading);
}

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

/* Grain/Noise Texture Overlay */
.grain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ============================================
   Scrolling Accent Line (left edge)
   ============================================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: rgba(201, 168, 76, 0.2);
  z-index: 9999;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: 0;
  width: 2px;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.6), transparent);
  z-index: 10000;
  pointer-events: none;
  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
  0% { top: -20%; }
  100% { top: 120%; }
}

/* ============================================
   Logo Banner
   ============================================ */
.logo-banner {
  background: var(--color-bg);
  padding: 18px 40px;
  border-bottom: 2px solid var(--color-gold);
  text-align: center;
}

.logo-banner img {
  max-width: 210px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-bg);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.nav-links a {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-gold) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem !important;
  transition: background 0.2s ease !important;
}

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

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

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

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-heading);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-short {
  min-height: 50vh;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  mix-blend-mode: multiply;
  opacity: 0.15;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.eyebrow {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  color: var(--color-text);
  margin-top: 12px;
}

.breadcrumb a {
  color: var(--color-gold);
}

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

/* ============================================
   Floating Hero Shapes
   ============================================ */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes span {
  position: absolute;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  animation: floatShape ease-in-out infinite;
}

.hero-shapes span:nth-child(1) {
  width: 80px; height: 80px;
  top: 15%; left: 8%;
  transform: rotate(45deg);
  animation-duration: 7s;
  animation-delay: 0s;
}
.hero-shapes span:nth-child(2) {
  width: 40px; height: 40px;
  top: 65%; left: 5%;
  transform: rotate(45deg);
  animation-duration: 8s;
  animation-delay: 1.5s;
}
.hero-shapes span:nth-child(3) {
  width: 120px; height: 120px;
  top: 20%; right: 6%;
  transform: rotate(45deg);
  animation-duration: 9s;
  animation-delay: 0.8s;
}
.hero-shapes span:nth-child(4) {
  width: 60px; height: 60px;
  top: 70%; right: 10%;
  transform: rotate(45deg);
  animation-duration: 6s;
  animation-delay: 2.2s;
}
.hero-shapes span:nth-child(5) {
  width: 50px; height: 50px;
  top: 45%; left: 75%;
  transform: rotate(45deg);
  animation-duration: 10s;
  animation-delay: 3s;
}

@keyframes floatShape {
  0%, 100% { transform: rotate(45deg) translateY(0px); }
  50% { transform: rotate(45deg) translateY(-18px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-heading);
  border: 2px solid var(--color-heading);
}

.btn-outline:hover {
  background: var(--color-heading);
  color: var(--color-bg);
}

.btn-full {
  width: 100%;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: var(--color-surface);
  padding: 40px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-subheading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Diagonal clip divider */
.clip-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: 120px;
}

.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: 120px;
}

/* ============================================
   Service Cards (Home Page)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--color-surface);
  border-top: 3px solid var(--color-gold);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card .learn-more {
  font-family: var(--font-subheading);
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.service-card .learn-more:hover {
  color: var(--color-heading);
}

/* ============================================
   Split Section (Why Choose Us, About, etc.)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.split-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  mix-blend-mode: multiply;
  opacity: 0.15;
  z-index: 2;
}

.split-text h2 {
  margin-bottom: 20px;
}

.split-text p {
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.split-text ul {
  margin-top: 16px;
}

.split-text ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text);
}

.split-text ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: var(--color-primary);
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2 {
  color: var(--color-heading);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(240, 234, 224, 0.85);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.cta-banner .btn {
  background: var(--color-bg);
  color: var(--color-gold);
}

.cta-banner .btn:hover {
  background: var(--color-surface);
}

/* ============================================
   Services Page - Detail Sections
   ============================================ */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background: var(--color-surface);
}

.service-detail .split {
  gap: 50px;
}

.service-detail:nth-child(even) .split-image {
  order: 2;
}

.service-detail:nth-child(even) .split-text {
  order: 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   About - Icon Grid
   ============================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.icon-card {
  background: var(--color-surface);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--color-stone);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(128, 0, 32, 0.3);
}

.icon-card .icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.icon-card h3 {
  font-size: 1.1rem;
}

/* Service Area */
.service-area-text {
  color: var(--color-heading);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   Portfolio Gallery (Home Page)
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  transition: background 0.3s ease;
}

.portfolio-item:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.portfolio-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  mix-blend-mode: multiply;
  opacity: 0.1;
  z-index: 2;
}

/* ============================================
   Projects Page - Gallery
   ============================================ */
.page-hero {
  background: var(--color-surface);
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--color-text);
  font-size: 1.1rem;
}

.projects-gallery {
  padding: 60px 40px;
  background: var(--color-bg);
  position: relative;
}

.gallery-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-stone);
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 600px;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.75);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-size: 1.5rem;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.gallery-arrow:hover {
  background: var(--color-primary);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 8px;
  background: var(--color-surface);
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-stone);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}

.gallery-dot.active {
  background: var(--color-gold);
}

.gallery-counter {
  text-align: center;
  color: var(--color-text);
  font-size: 0.85rem;
  margin-top: 10px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
  color: var(--color-gold);
}

.contact-detail {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-top: 2px;
}

.contact-detail p {
  color: var(--color-text);
}

.contact-detail a {
  color: var(--color-heading);
  font-size: 1.05rem;
}

.contact-logos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-logos img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

/* Form */
.quote-form {
  background: var(--color-surface);
  padding: 40px;
  border: 1px solid var(--color-stone);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-stone);
  color: var(--color-heading);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8C2B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group .error-msg {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}

.form-group.error .error-msg {
  display: block;
}

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

.form-success .checkmark {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 12px;
  color: var(--color-gold);
}

.form-success p {
  color: var(--color-text);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg);
  border-top: 3px solid var(--color-gold);
  padding: 60px 0 0;
}

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

.footer-col h4 {
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--color-heading);
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-col .footer-logo {
  max-height: 50px;
  margin-bottom: 12px;
}

.footer-col .tagline {
  font-style: italic;
  color: var(--color-text);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--color-stone);
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--color-text);
}

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

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  .hero h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.2rem; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    border-left: 2px solid var(--color-stone);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Layout stacks */
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail:nth-child(even) .split-image {
    order: 0;
  }

  .service-detail:nth-child(even) .split-text {
    order: 0;
  }

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

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

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

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

  .trust-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .split-image {
    height: 250px;
  }

  section {
    padding: 50px 0;
  }

  .logo-banner {
    padding: 14px 20px;
  }

  .logo-banner img {
    max-width: 130px;
  }

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

  .portfolio-item {
    height: 200px;
  }

  .gallery-slide {
    height: 360px;
  }

  .gallery-arrow {
    padding: 8px 12px;
    font-size: 1.2rem;
  }

  .projects-gallery {
    padding: 40px 16px;
  }
}
