/* RESET */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVIGATION */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

nav a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

/* ===== HERO FINAL ===== */

.hero {
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
}

.hero-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85));
}

/* layout */
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 100px;
}

/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #facc15;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #facc15;
  border-radius: 50%;
}

/* title */
.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -1px;
}

.hero-title span {
  color: #facc15;
}

/* text */
.hero-text {
  margin-top: 30px;
  max-width: 600px;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

/* buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #facc15;
  color: #000;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #fff;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 30px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* stats */
.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
}

.stat-box {
  background: #000;
  padding: 22px;
}

.stat-box strong {
  display: block;
  font-size: 30px;
  font-weight: bold;
}

.stat-box span {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
}
``

/* ===== SERVICES EXACT ===== */

.services {
  background: #f7f5f0;
  padding: 120px 0;
}

/* top layout */
.services-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-top > div:last-child {
  margin-top: 70px;
}


.services-label {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 10px;
}

.services-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
}

.services-title span {
  color: #d4a017;
}

.services-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  max-width: 420px;
  margin-top: 25px;
}

/* grid */
.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #eaeaea;
}

/* card */
.service-card {
  background: #fff;
  padding: 48px 42px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  background: #111;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* top row */
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-number {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #888;
}

.service-card:hover .service-number {
  color: #facc15;
}

.service-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
}

.service-card:hover .service-dot {
  background: #facc15;
}

/* title */
.service-card h3 {
  margin-top: 28px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

/* text */
.service-card p {
  margin-top: 16px;
  color: #666;
  line-height: 1.7;
}

.service-card:hover p {
  color: rgba(255,255,255,0.65);
}


/* list */
.service-card ul {
  margin-top: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* hover bar */
.service-bar {
  margin-top: 35px;
  height: 2px;
  width: 0;
  background: #facc15;
  transition: width 0.4s ease;
}

.service-card:hover .service-bar {
  width: 100%;
}

/* ===== ABOUT EXACT ===== */

.about {
  background: #111;
  color: #fff;
  padding: 120px 0;
}

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

/* image */
.about-image {
  position: relative;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-left: 4px solid #facc15;
  border-bottom: 4px solid #facc15;
}

/* badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #facc15;
  color: #000;
  padding: 20px;
}

.badge-number {
  font-size: 30px;
  font-weight: bold;
}

.badge-text {
  font-size: 10px;
  text-transform: uppercase;
}

/* text */
.about-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #facc15;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  margin-top: 10px;
  line-height: 1;
}

.about-title span {
  color: #facc15;
}

.about-text {
  margin-top: 30px;
  color: #ccc;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 10px;
}

/* grid info */
.about-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
}

.about-box {
  background: #000;
  padding: 20px;
}

.about-box span {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
}

.about-box strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  padding: 60px 20px;
}

footer a {
  color: #bbb;
  text-decoration: none;
}

footer a:hover {
  color: #facc15;
}

/* ===== PROJECTS EXACT ===== */

.projects {
  background: #fff;
  padding: 120px 0;
}

.projects-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.projects-label {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a017;
}

.projects-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.projects-title span {
  color: #d4a017;
}

.projects-text {
  max-width: 400px;
  color: #666;
  font-size: 14px;
}

/* grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

/* modifiers */
.project-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-item.wide {
  grid-column: span 2;
}

/* item */
.project-item {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-item:hover img {
  transform: scale(1.05);
}

/* overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2),
    transparent
  );
}

/* caption */
.project-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
}

.project-item span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #facc15;
}

.project-item strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}
``

/* ===== CONTACT EXACT ===== */

.contact {
  background: #f7f5f0;
  padding: 120px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

/* vänster */
.contact-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a017;
}

.contact-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin-top: 10px;
}

.contact-desc {
  margin-top: 20px;
  color: #666;
  max-width: 400px;
  line-height: 1.8;
}

.contact-info {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 35px;
  border-left: 3px solid #facc15;
  padding-left: 20px;
}

.contact-item span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.contact-item strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
}

/* form */
.contact-form {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 60px;
}

/* ===== FORM EXAKT (React style) ===== */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.form-field {
  display: block;
}

.form-field span {
  margin-bottom: 4px;
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #888;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 6px 0;
  margin-top: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-bottom: 2px solid #facc15;
}

.form-field.full {
  grid-column: span 2;
  margin-top: 25px;
}

.wpcf7 textarea {
  min-height: 100px;
  margin-top: 10px;
}

.form-footer {
  margin-top: 30px;
}

.wpcf7-submit {
  width: 100%;
  display: block;
  margin-top: 10px;
  background: #111;
  color: #fff;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wpcf7-submit:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ===== FEATURED PROJECT ===== */

.featured {
  background: #f7f5f0;
  padding: 120px 0;
}

.featured-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* text */
.featured-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a017;
}

.featured-title {
  font-size: 48px;
  font-weight: 800;
  margin-top: 10px;
}

.featured-title span {
  color: #d4a017;
}

.featured-badge {
  margin-top: 20px;
  font-size: 10px;
  padding: 8px 15px;
  display: inline-block;
  border: 1px solid #ccc;
  background: #fff;
}

.featured-text {
  margin-top: 30px;
  color: #555;
  line-height: 1.7;
}

/* info grid */
.featured-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #ddd;
}

.featured-grid div {
  background: #fff;
  padding: 15px;
}

.featured-grid span {
  font-size: 10px;
  color: #888;
}

.featured-grid strong {
  display: block;
  margin-top: 5px;
}

/* link */
.featured-link {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 2px solid #000;
  text-decoration: none;
  font-weight: bold;
}

.featured-link:hover {
  color: #d4a017;
  border-color: #d4a017;
}

/* images */
.featured-images {
  display: grid;
  gap: 15px;
}

.image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 4px solid #facc15;
  border-bottom: 4px solid #facc15;
}

.image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== LOGO ===== */
.logo {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-2deg);
}

/* ===== ANIMATIONER ===== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FORCE BUTTON STYLE */

.wpcf7 input[type="submit"],
.wpcf7-submit {
  background: #111 !important;
  color: #fff !important;
  border: none !important;

  width: 100%;
  display: block;
  padding: 16px 0;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;

  cursor: pointer;
}