/* ================================================
   ELEVATE DESIGN — Kitchen Design Page
   style.css
   ================================================ */

/* ------------------------------------------------
   RESET & ROOT VARIABLES
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark:       #1a1a18;
  --darker:     #121210;
  --gold:       #c8a96e;
  --gold-light: #e2c99a;
  --cream:      #f5f0e8;
  --muted:      #888880;
  --white:      #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* ------------------------------------------------
   NAVIGATION
   ------------------------------------------------ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(200, 169, 110, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--darker);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/render-luxury-blackwhite.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 16, 0.4) 0%,
    rgba(18, 18, 16, 0.85) 100%
  );
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-desc {
  max-width: 560px;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--darker);
}

/* ------------------------------------------------
   SECTION DEFAULTS
   ------------------------------------------------ */
section {
  padding: 7rem 4rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* ------------------------------------------------
   INTRO / ABOUT
   ------------------------------------------------ */
.intro {
  background: var(--dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 1.2rem;
}

.intro-text p strong {
  color: var(--gold-light);
  font-weight: 400;
}

.intro-quote {
  border-left: 1px solid var(--gold);
  padding-left: 2rem;
  margin-top: 2.5rem;
}

.intro-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
}

.intro-quote cite {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  font-style: normal;
}

.intro-visual {
  height: 480px;
  overflow: hidden;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------
   SERVICES
   ------------------------------------------------ */
.services {
  background: var(--darker);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: rgba(200, 169, 110, 0.1);
  border: 0.5px solid rgba(200, 169, 110, 0.1);
}

.service-card {
  background: var(--darker);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.service-card:hover {
  background: rgba(200, 169, 110, 0.04);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.15);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
}

/* ------------------------------------------------
   PROCESS
   ------------------------------------------------ */
.process {
  background: var(--dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.8rem;
  left: 12.5%;
  right: 12.5%;
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process-step {
  padding: 0 1.5rem;
  text-align: center;
}

.step-dot {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: var(--dark);
  position: relative;
  z-index: 1;
}

.step-dot span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
}

.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}

/* ------------------------------------------------
   GALLERY
   ------------------------------------------------ */
.gallery {
  background: var(--darker);
}

.gallery-hero {
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 2px;
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.gallery-hero img:hover {
  transform: scale(1.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-cell {
  overflow: hidden;
  height: 280px;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.gallery-cell img:hover {
  transform: scale(1.05);
}

.gallery-label {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.35);
  font-style: italic;
  text-align: center;
}

/* ------------------------------------------------
   RENDERS
   ------------------------------------------------ */
.renders {
  background: var(--dark);
}

.renders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
}

.render-cell {
  overflow: hidden;
  height: 380px;
  position: relative;
}

.render-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.render-cell img:hover {
  transform: scale(1.03);
}

.render-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(18, 18, 16, 0.8), transparent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ------------------------------------------------
   CONTACT
   ------------------------------------------------ */
.contact {
  background: var(--darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-info p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.5px solid rgba(200, 169, 110, 0.12);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 70px;
  padding-top: 2px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--cream);
}

.contact-item-value a {
  color: var(--cream);
  text-decoration: none;
}

.contact-item-value a:hover {
  color: var(--gold-light);
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(200, 169, 110, 0.3);
  padding: 0.6rem 0;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.25);
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--darker);
}

.submit-btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 0.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--darker);
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
footer {
  background: var(--darker);
  border-top: 0.5px solid rgba(200, 169, 110, 0.12);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ------------------------------------------------
   ANIMATIONS
   ------------------------------------------------ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------
   RESPONSIVE — TABLET & MOBILE
   ------------------------------------------------ */
@media (max-width: 900px) {

  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .process-steps::before {
    display: none;
  }

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

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

  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {

  .nav-links {
    display: none;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }
}
