/* =========================
   BASE
========================= */
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: #f7f7f7;
  color: #111;
  overflow-x: hidden;
}

/* =========================
   LOADER
========================= */
#loader {
  position: fixed;
  inset: 0;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 300px;
  height: auto;
  position: relative;
}

.loader-text {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 6px;
  opacity: 0;
  transform: translateY(10px);
}

/* loader spacing fix */
.split-loader {
  display: inline-block;
}

.split-loader span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  margin-right: 0.08em;
}

.split-loader span.space {
  margin-right: 0.4em;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(247,247,247,0.85);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 14px;
  letter-spacing: 2px;
}

.header nav {
  display: flex;
  gap: 25px;
}

.header nav a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 1.2px;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://aggcy.com/wp-content/uploads/2026/04/4.jpg") center/cover no-repeat;
  opacity: 0.35;
  transform: scale(1.1);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 84px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 2.5px;
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 22px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.btn:hover {
  background: #111;
  color: #fff;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 160px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 48px;
  font-weight: 300;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.8;
  letter-spacing: 0.4px;
}

/* word spacing fix */
.split-word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.35em;
}

.split-word:last-child {
  margin-right: 0;
}

.split-word span {
  display: inline-block;
}

/* IMAGE */
.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

/* =========================
   EDITORIAL SERVICES
========================= */

.service-block {
  padding: 200px 80px;
  opacity: 0;
  transform: translateY(80px);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.service-grid.reverse {
  direction: rtl;
}

.service-grid.reverse * {
  direction: ltr;
}

/* TEXT */
.service-text h2 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.service-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  max-width: 500px;
  margin-bottom: 30px;
}

.service-text .btn {
  opacity: 0;
  transform: translateY(30px);
}

/* IMAGE */
.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* hover */
.service-image:hover img {
  transform: scale(1.04);
}

/* =========================
   CONTACT
========================= */
.contact {
  padding: 160px 80px;
  max-width: 800px;
}

.contact h2 {
  font-size: 48px;
  font-weight: 300;
}

.contact p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
}

.contact-links {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

.contact-links a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s;
}

.contact-links a:hover {
  opacity: 1;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

/* =========================
   GLOBAL SMOOTHNESS
========================= */
img {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .hero {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 42px;
  }

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

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

  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-grid.reverse {
    direction: ltr;
  }

  .service-image img {
    height: 300px;
  }

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

  .header {
    padding: 15px 20px;
  }
}
/* =========================
   FEATURE SECTION (EDITORIAL)
========================= */

.feature {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
}

/* background image */
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://aggcy.com/wp-content/uploads/2026/04/4.jpg") center/cover no-repeat;
  opacity: 0.35;
  z-index: -1;
}

/* layout */
.feature-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  width: 100%;
  align-items: center;
}

/* LEFT */
.feature-left h2 {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 40px;
}

/* RIGHT STACK */
.feature-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.card {
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(50px);
  opacity: 0;
}

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

.card-info {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-inner {
    grid-template-columns: 1fr;
  }

  .feature-left h2 {
    font-size: 42px;
  }
}