/* ===============================
   RESET + BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;

}

html {
  scroll-behavior: smooth;
}


:root {
  --green: #9acd32;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* ===============================
   HEADER / NAV (FENSEA STYLE)
================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,100);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.logo {
  height: 42px;
}

.nav a {
  margin-left: 32px;
  text-decoration: none;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 500;
}

.nav a:hover {
  opacity: 0.6;
}
/* ===============================
   MOBILE NAVIGATION
================================ */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

.nav {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);   
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  flex-direction: column;
  padding: 24px 20px;
}

  .nav a {
    margin: 0 0 20px;
    font-size: 18px;
  }

  .nav.show {
    display: flex;
  }
}


.reveal {
  transform: translateY(48px);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER DELAYS */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }

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

  .reveal {
    transform: translateY(24px); /* less movement */
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Reduce stagger impact on mobile */
  .delay-1 { transition-delay: 0.05s; }
  .delay-2 { transition-delay: 0.1s; }
  .delay-3 { transition-delay: 0.15s; }
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  min-height: 100vh;
  background: url("../images/hero-desktop.jpg.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 64px 200px;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hello {
  font-size: 22px;
  margin-bottom: 16px;
	color: rgba(255,248,248,1.00);
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  color: rgba(255,248,248,1.00);
}

.hero-content h1 span {
  color: var(--green);
}

.subtext {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,248,248,1.00);
}



/* ===============================
   HERO ACTIONS (MINIMAL)
================================ */
.hero-buttons {
  margin-top: 36px;
}

.btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-right: 28px;
  color: var(--green);
}

.btn:hover {
  opacity: 0.7;
}

/* ===============================
   SECTION SPACING (VISUAL RHYTHM)
================================ */
.section {
  padding: 160px 80px;
}

@media (max-width: 768px) {
  .section {
    padding: 100px 20px;
  }
}




/* ===============================
   ABOUT – PREMIUM EDITORIAL
================================ */
.about {
  background: #fafafa; /* not pure white */
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* LEFT */
.about-left {
  position: sticky;
  top: 160px;
  align-self: flex-start;
}

.about-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
	  margin-top: 8px;

}

/* subtle editorial line */
.about-line {
  width: 56px;
  height: 2px;
  background: #000;
  opacity: 0.12;
}


/* RIGHT */
.about-right {
  max-width: 560px;
}

.about-text {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: #111;
}

.about-text.lead {
  font-size: 20px;
}

.about-text strong {
  font-weight: 500;
}

.about-text.muted {
  color: #666;
}

.about::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-top: 120px;
}


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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-left {
    position: static;
  }

  .about-title {
    font-size: 34px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-text.lead {
    font-size: 17px;
  }
}



/* ===============================
   SERVICES – FENSEA PREMIUM
================================ */

.services {
  background: #f7f7f7 /* subtle contrast */
}

.services-inner {
  max-width: 1000px;
}

/* TITLE */
.services-title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 88px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* LIST RESET */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* SERVICE ROW */
.service-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}

/* NAME */
.service-name {
  font-size: 21px;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.01em;
}

/* DESCRIPTION */
.service-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

/* FIRST ITEM – QUIET EMPHASIS */
.service-item:first-child .service-name {
  font-size: 23px;
}

/* LAST BORDER REMOVE */
.service-item:last-child {
  border-bottom: none;
}

/* SECTION BREATHING SPACE */
.services {
  padding-bottom: 200px;
}

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

  .services-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .service-name {
    font-size: 18px;
  }

  .service-desc {
    font-size: 16px;
    max-width: 100%;
  }
}

/* ===============================
   SERVICES LAYOUT + STICKY VISUAL
================================ */

.services-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 120px;
  align-items: start;
}

/* RIGHT SIDE VISUAL */
.services-visual {
  position: sticky;
  top: 160px; /* header offset */
}

.services-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  filter: rayscale(100%) contrast(1.05);
  opacity: 0.85;
}

.services-visual img {
  filter: grayscale(100%) blur(0.4px);
  transition: filter 0.6s ease;
}

.services-visual:hover img {
  filter: grayscale(0%) blur(0);
}

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

  .services-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .services-visual {
    position: relative;
    top: auto;
  }

  .services-visual img {
    height: 320px;
  }
}

}/* ===============================
   SERVICES SECTION – PREMIUM
================================ */

.services {
  background: #ffffff;
}

.services-inner {
  max-width: 900px;
}

/* SECTION TITLE */
.services-title {
  font-size: 44px;              /* big editorial */
  font-weight: 500;
  margin-bottom: 72px;
  letter-spacing: -0.02em;
}

/* LIST */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM ROW */
.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}

/* LEFT – NAME */
.service-name {
  font-size: 20px;
  font-weight: 500;
  color: #111;
}

/* RIGHT – DESCRIPTION */
.service-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #666;
  max-width: 520px;
}

/* LAST BORDER OFF */
.service-item:last-child {
  border-bottom: none;
}

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

  .services-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .service-desc {
    max-width: 100%;
  }
}


/* ===============================
   PORTFOLIO – FENSEA STYLE
================================ */

.work-inner {
  max-width: 1200px;
}

/* SECTION TITLE */
.work-title {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

/* GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 64px;
}

/* ITEM */
.work-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* IMAGE PLACEHOLDER */
.work-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eaeaea;
  margin-bottom: 20px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* META */
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.work-thumb {
  overflow: hidden;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
  filter: grayscale(100%);
}
.work-name {
  font-size: 18px;
  font-weight: 500;
}

.work-type {
  font-size: 14px;
  color: #777;
}

/* HOVER – VERY SUBTLE */
.work-item:hover .work-thumb {
  transform: scale(1.03);
}
.work-item:hover .work-thumb img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

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

  .work-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


/* ===============================
   CONTACT SECTION (FENSEA STYLE)
================================ */
.contact {
  background: #ffffff;
}

.contact-inner {
  max-width: 720px;
}

.contact-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 28px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-link {
  display: inline-block;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  margin-bottom: 14px;
  border-bottom: 1px solid #111;
}

.contact-link:hover {
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-link {
    font-size: 16px;
  }
}


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

  .header {
    padding: 18px 20px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 140px 20px 60px;
    background: url("../images/hero-mobile.jpg") top center / cover no-repeat;
    align-items: flex-end;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .subtext {
    font-size: 16px;
  }

  .hero-buttons a {
    display: block;
    margin: 12px 0 0;
  }
}
