* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15.5px;
}

body {
  background: #000;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.underlink {
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  padding-bottom: 6px;
  display: inline-block;
  text-transform: uppercase;
}

/* Reuse: zoom-out effect for background images */
.hero,
.quick-card,
.about-bg,
.cta-bg {
  background-size: 112%;
}


/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  position: relative;
  background: url("images/hero.jpg.jpg") center / cover no-repeat;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.92) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.55));
  pointer-events: none;
}

.brand {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: "Allura", cursive;
  font-size: 44px;
  opacity: 0.95;
}

.nav {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 62px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
}

.hero-title-wrap {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(980px, 92%);
  display: flex;
  justify-content: center;
}

.hero-title {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hero-title .bar {
  width: 2px;
  height: 60px;
  background: #fff;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-title h1 {
  font-family: "Poppins", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 600;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.hero-title h1 span {
  font-weight: 400;
}


/* =========================
   QUICK LINKS
========================= */
.quick {
  padding: 90px 0 120px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), rgba(0,0,0,1) 60%),
    #000;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  align-items: stretch;
}

.quick-card {
  height: 560px;
  background: center / cover no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 26px;
  position: relative;
}

.quick-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.92));
  opacity: 0.55;
}

.quick-label {
  position: relative;
  z-index: 2;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
}

.ext {
  margin-left: 8px;
  opacity: 0.85;
}

.card-1 { background-image: url("images/img1.png"); }
.card-2 { background-image: url("images/img2.png"); }
.card-3 { background-image: url("images/img3.png"); }
.card-4 { background-image: url("images/img4.png"); }


/* =========================
   ABOUT
========================= */
.about {
  position: relative;
  min-height: 720px;
  padding: 120px 0 90px;
  background: #000;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.25) 100%),
    url("images/img6.png") center / cover no-repeat;
  opacity: 0.95;
  background-position: center;
}

/* Social icons */
.social-rail {
  position: absolute;
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform 0.2s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: #111;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: 300px;
  font-size: 16px;
  line-height: 1.9;
  opacity: 1;
}

.about-content p:first-of-type {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.about-content p:not(:first-of-type) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.about-link {
  position: relative;
  z-index: 2;
  margin-left: 300px;
  margin-top: 10px;
}


/* =========================
   PORTFOLIO
========================= */
.portfolio {
  padding: 110px 0 100px;
  background: #000;
}

.port-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.port-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: 1px;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.port-grid img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transform: scale(0.93);
  transform-origin: center;
}


/* =========================
   SERVICES
========================= */
.services {
  padding: 90px 0 120px;
  background: #000;
}

.center-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 46px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.svc {
  margin-bottom: 48px;
}

.svc h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.svc p {
  opacity: 0.75;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 18px;
}

.explore {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.svc-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transform: scale(0.95);
  transform-origin: center;
}


/* =========================
   TESTIMONIAL
========================= */
.testi {
  padding: 110px 0 120px;
  background: #000;
}

.testi-wrap {
  max-width: 1050px;
  position: relative;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  opacity: 0.85;
  position: absolute;
  left: 0;
  top: -20px;
}

.quote-text {
  margin-left: 120px;
  font-size: 30px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.95;
}

.author {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 120px;
  margin-top: 56px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-name {
  font-weight: 500;
}

.a-role {
  opacity: 0.7;
  font-size: 14px;
  margin-top: 4px;
}


/* =========================
   CTA
========================= */
.cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #000;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 45%, rgba(0,0,0,.2) 100%),
    url("images/kyle-loftus-FJK2EY52jTw-unsplash.jpg") right center / cover no-repeat;
  opacity: 0.95;
  background-position: right center;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}


/* =========================
   FOOTER
========================= */
.footer {
  padding: 90px 0 50px;
  background: #000;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: "Allura", cursive;
  font-size: 44px;
  opacity: 0.95;
}

.footer-links {
  display: flex;
  gap: 26px;
  opacity: 0.92;
}

.copyright {
  margin-top: 34px;
  opacity: 0.85;
  text-align: center;
}


/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
  .social-rail { left: 40px; }
  .about-content,
  .about-link { margin-left: 220px; }
}

@media (max-width: 980px) {
  .nav { gap: 22px; flex-wrap: wrap; justify-content: center; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content,
  .about-link { margin-left: auto; max-width: 92%; }
  .social-rail { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 26px; }
  .svc-img img { height: 360px; }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .brand { font-size: 36px; }
  .hero-title .bar { height: 44px; }
  .port-head h2 { font-size: 42px; }
  .port-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { height: 460px; }
  .quote-text { font-size: 20px; margin-left: 0; }
  .quote-mark { position: static; }
  .author { margin-left: 0; }
}
