/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  background-color: #fff;
}

/* CONTAINER SYSTEM */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* NAV WRAPPER */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: auto;
}

.logo span {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #b87333; /* warm copper tone */
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #b87333;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
/* HAMBURGER DEFAULT HIDDEN */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: block;
  }

  /* HIDE NORMAL NAV */
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 20px 0;

    display: none;
  }

  /* WHEN ACTIVE (JS) */
  .nav-links.active {
    display: flex;
  }

}
.navbar {
  position: relative;
}

.hero {
  padding: 60px 0 40px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: 16px;
  color: #666;
}
.hero-image {
  position: relative;
  height: 360px;
  background: url("hero-bg.png") center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.5)
    padding: 30px;
  );

  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.hero-cta {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.hero-cta::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.hero-cta:hover::after {
  width: 100%;
}
.hero-statement {
  text-align: center;
  padding: 40px 0 60px;
}

.hero-statement p {
  font-size: 20px;
  color: #444;
}
@media (max-width: 768px) {

  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 240px;
    margin-top: 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-statement p {
    font-size: 22px;
    padding: 0 10px;
    letter-spacing: 0.5px;
  }

}
.hero-image {
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.about {
  max-width: 1000px;   /* increased from 700 */
  margin: 0;
  padding-left: 130px;
}

.about-wrapper {
  max-width: 700px;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-main {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.about-note p {
  margin-top: 25px;
  font-size: 14px;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  .about {
    padding-left: 20px;   /* reset from 130px */
    padding-right: 20px;  /* add balance */
  }
}

/* SECTION */
.design-values {
  padding: 80px 0;
}

.design-values h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 40px;
}

/* HORIZONTAL SCROLL */
.values-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* REMOVE SCROLLBAR (optional clean look) */
.values-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.value-card {
  min-width: 280px;
  max-width: 280px;   /* lock width */
  padding: 25px;
  border-radius: 12px;
  background: #f7f3ef;
  border: 1px solid #e5d3c3;
  flex-shrink: 0;
}

/* HOVER / SCROLL FEEL */
.value-card:hover {
  transform: translateY(-5px);
  border-color: #b87333;
}

/* TEXT */
.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  word-wrap: break-word;
}

@media (min-width: 1024px) {

  .values-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    overflow: visible;
  }

  .value-card {
    max-width: 100%;
    min-width: auto;
  }

}

.services {
  padding: 20px 0;
}

.services h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 30px;
}

/* ACCORDION */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item {
  border: 1px solid #e0d8cc;
  background: #f5f3ef;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

/* TITLE */
.service-title {
  padding: 20px;
  font-size: 21px;
  cursor: pointer;
  font-weight: 600; 
}

.service-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* when active */
.service-item.active .service-content {
  max-height: 250px;
  padding: 15px 20px 20px;
}
.service-content p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}
/* HIGHLIGHT INTERIORS */
.service-item.highlight {
  border: 1px solid #b87333;
}

/* SECTION */
.projects {
  padding: 80px 0;
}

.projects h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 20px;
}

/* CARDS */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* LARGE CARD */
.project-card.large {
  grid-row: span 2;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}

.project-overlay h3 {
  font-size: 16px;
  font-weight: 500;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.05);
}
.projects-cta {
  display: inline-block;
  margin-top: 40px;

  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 500;

  color: #2c2c2c;
  text-decoration: none;

  position: relative;
  transition: 0.3s ease;
}

/* subtle underline */
.projects-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #b87333;
  transition: 0.3s ease;
}

/* hover effect */
.projects-cta:hover {
  color: #b87333;
  transform: translateX(5px);
}

.projects-cta:hover::after {
  width: 100%;
}

@media (max-width: 768px) {

  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .project-card.large {
    grid-row: auto;
  }

  .project-card {
    height: 220px;
  }

}

.video-section {
  width: 100%;
  margin: 50px 0; /* spacing above & below */
}

/* FULL WIDTH BAND */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px; /* band height */
  overflow: hidden;
}

/* VIDEO */
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  bottom: 40px;
  left: 60px;
  color: #fff;
}

.video-overlay h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
}

.video-overlay p {
  font-size: 14px;
  opacity: 0.9;
}
@media (max-width: 768px) {

  .video-wrapper {
    height: 200px; /* thinner band */
  }

  .video-overlay {
    left: 20px;
    bottom: 20px;
  }

  .video-overlay h2 {
    font-size: 18px;
  }

}
.process {
  padding: 120px 0;
}

.process h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 60px;
}

/* LINE CONTAINER */
.process-line {
  position: relative;
  margin-bottom: 40px;
}

/* DRAW LINE */
.draw-line {
  stroke: #b87333;
  stroke-width: 2;

  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;

  transition: stroke-dashoffset 1.5s ease;
}

/* WHEN ACTIVE */
.process.active .draw-line {
  stroke-dashoffset: 0;
}

/* STEPS */
.process-track {
  display: flex;
  justify-content: space-between;
}

/* EACH STEP */
.process-step {
  width: 22%;
  opacity: 0.3;
  transform: translateY(20px);
  transition: 0.5s ease;
}

/* ACTIVE STEP */
.process-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.process-step span {
  font-size: 22px;        /* bigger */
  font-weight: 500;
  color: #b87333;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  position: relative;
}
.process-step span::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #b87333;
  margin-top: 6px;
  opacity: 0.5;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.process-track {
  gap: 40px;
}
@media (max-width: 768px) {

  .process {
    position: relative;
  }

  /* VERTICAL LINE */
  .process::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 0;
    background: #b87333;

    transition: height 1.5s ease;
  }

  /* WHEN ACTIVE (LINE DRAWS DOWN) */
  .process.active::before {
    height: 100%;
  }

  /* STACK STEPS */
  .process-track {
    flex-direction: column;
    gap: 40px;
    padding-left: 50px;
  }

  /* STEP POSITIONING */
  .process-step {
    width: 100%;
    position: relative;
  }

  /* SMALL DOT ON LINE */
  .process-step::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #b87333;
    border-radius: 50%;

    opacity: 0;
    transform: scale(0.5);
    transition: 0.4s ease;
  }

  /* ACTIVE DOT */
  .process-step.active::before {
    opacity: 1;
    transform: scale(1);
  }

}

.contact {
  padding: 100px 0;
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-intro {
  color: #555;
  margin-bottom: 40px;
  max-width: 400px;
}

/* INFO */
.contact-info p {
  margin-bottom: 25px;
  font-size: 15px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #b87333;
}

/* SOCIAL */
.contact-social {
  margin-top: 30px;
}

.contact-social a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.contact-social a:hover {
  color: #b87333;
  transform: translateX(4px);
}

/* MAP */
.contact-map {
  flex: 1.2;
  border-radius: 12px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

@media (max-width: 768px) {

  .contact-wrapper {
    flex-direction: column;
  }

    .contact-map {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .contact-map iframe {
    width: 100vw;
    height: 260px;
  }

}

.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 25px 0;
  margin-top: 0;
}

/* WRAPPER */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* TAGLINE */
.footer-note {
  color: #888;
  font-size: 13px;
}
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 25px 0;
  margin-top: 0;
}

/* WRAPPER */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* TAGLINE */
.footer-note {
  color: #888;
  font-size: 13px;
}

/* =========================
   PROJECT CASE STUDY PAGES
   ========================= */


/* HERO */
.project-hero img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* CONTENT */
.project-content {
  padding: 80px 0;
}

.project-content h1 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.project-meta {
  display: flex;
  gap: 30px;
  color: #777;
  margin-bottom: 20px;
}

.project-description {
  max-width: 600px;
  line-height: 1.7;
  color: #444;
}

/* GALLERY */
.project-gallery {
  padding: 40px 0;
}

.project-gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* PLANS */
.project-plans {
  padding: 60px 0;
}

/* BACK */
.project-back {
  padding: 40px 0;
}

.project-back a {
  text-decoration: none;
  color: #333;
}

.project-back a:hover {
  color: #b87333;
}

/* =========================
   MINIMAL LIVING PROJECT
   ========================= */

/* HERO */
.project-hero img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

/* CONTENT */
.project-content {
  padding: 80px 0;
}

.project-content h1 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.project-meta {
  display: flex;
  gap: 30px;
  color: #777;
  margin-bottom: 20px;
  font-size: 14px;
}

.project-description {
  max-width: 600px;
  line-height: 1.7;
  color: #444;
}

/* GALLERY */
.project-gallery {
  padding: 40px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* DETAIL */
.project-detail {
  padding: 60px 0;
}

.project-detail h2 {
  font-family: 'Cinzel', serif;
  margin-bottom: 15px;
}

.project-detail p {
  max-width: 600px;
  line-height: 1.7;
  color: #444;
}

/* BACK */
.project-back {
  padding: 40px 0;
}

.project-back a {
  text-decoration: none;
  color: #333;
}

.project-back a:hover {
  color: #b87333;
}
/* warm tone tweak */
body.warm-theme {
  background: #f7f4ef;
}

/* compact urban tweak */
body.compact-theme {
  background: #f5f5f5;
}
@media (max-width: 768px) {

  .project-content h1 {
    font-size: 24px !important;
  }

  .project-meta {
    font-size: 16px !important;
  }

  .project-description {
    font-size: 16px !important;
    line-height: 1.8;
  }

  .project-detail p {
    font-size: 14px !important;
    line-height: 1.8;
  }

   .gallery-grid {
    grid-template-columns: 1fr;   /* ONE image per row */
    gap: 16px;
  }

  .gallery-grid img {
    width: 100%;
    height: 220px;               /* increase visual size */
    object-fit: cover;
    border-radius: 12px;
  }

}

/* =========================
   PORTFOLIO PAGE
   ========================= */

.portfolio-header {
  padding: 80px 0 40px;
}

.portfolio-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.portfolio-header p {
  color: #666;
}

/* GRID */
.portfolio-grid {
  padding: 40px 0 80px;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* CARDS */
.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.portfolio-card.large {
  grid-row: span 2;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}

.overlay h3 {
  font-size: 18px;
}

/* HOVER */
.portfolio-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card.large {
    grid-row: span 1;
  }

}
/* SECTION */
.mds-cta-form {
    padding: 100px 0;
    background: #fafafa;
}

/* CONTAINER */
.mds-cta-container {
    width: 85%;
    max-width: 1000px;
    margin: auto;
}

/* TEXT */
.mds-cta-text {
    max-width: 600px;
    margin-bottom: 50px;
}

.mds-cta-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 12px;
}

.mds-cta-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* FORM */
.mds-form {
    display: flex;
    flex-direction: column;
}

/* ROW */
.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

/* INPUT STYLE */
.mds-form input,
.mds-form select,
.mds-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    font-size: 15px;
    transition: 0.3s;
}

/* HOVER */
.mds-form input:hover,
.mds-form select:hover,
.mds-form textarea:hover {
    border-color: rgba(0,0,0,0.3);
}

/* FOCUS */
.mds-form input:focus,
.mds-form select:focus,
.mds-form textarea:focus {
    outline: none;
    border-color: #b87333;
}

/* DROPDOWN FIX */
.mds-form select option {
    background: #fff;
    color: #000;
}

/* TEXTAREA */
.mds-form textarea {
    margin-top: 10px;
}

/* BUTTON */
.mds-submit-btn {
    margin-top: 40px;
    align-self: flex-start;
    padding: 14px 50px;
    border: 1px solid #b87333;
    background: transparent;
    color: #b87333;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.mds-submit-btn:hover {
    background: #b87333;
    color: #fff;
}

@media (max-width: 768px) {

    .mds-cta-form {
        padding: 70px 0;
    }

    .mds-cta-text h2 {
        font-size: 26px;
    }

    .mds-cta-text p {
        font-size: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .mds-submit-btn {
        width: 100%;
        text-align: center;
    }

}
