* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  background: #f8f6f3;
  color: #1a1a1a;
  padding: 20px;
}

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.hero-inner {
  text-align: center;
  max-width: 650px;
  animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 {
  font-size: 104px;
  font-weight: 700;
  letter-spacing: -4px;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.logo-main {
  width: 30vw;
  margin-bottom: 28px;
}

.tagline {
  font-size: 18px;
  color: #3d3d3d;
  margin-bottom: 55px;
  font-weight: 400;
  line-height: 1.6;
}
.coming-soon {
  font-size: 13px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 45px;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  padding: 18px 0;
  display: inline-block;
  min-width: 220px;
  font-weight: 600;
}

.type-writer {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid rgb(0, 0, 0); /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 4vw;
  /* letter-spacing: .15em;  */
  animation:
    typing 3.5s steps(40, end),
    blink-caret 0.75s step-end infinite;
}

.live-red {
  color: red;
  animation: blink-red 1s infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: rgba(0, 0, 0, 0);
  }
}

.description {
  font-size: 18px;
  line-height: 1.8;
  color: #3d3d3d;
  margin-bottom: 55px;
  font-weight: 300;
}
.contact {
  margin-top: 45px;
}
.contact a {
  color: #f8f6f3;
  background: #1a1a1a;
  text-decoration: none;
  font-family: "Inter";
  font-size: 16px;
  padding: 18px 45px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.contact a:hover {
  background: #3d3d3d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact a:active {
  color: rgb(0, 0, 0);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.8s forwards;
}
.scroll-hint span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #999, transparent);
  animation: arrowPulse 1.8s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ── ABOUT SECTION ── */
.about {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 120px;
  animation: fadeIn 1s ease 0.3s both;
}

/* divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d0ccc7;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  white-space: nowrap;
}

/* mission block */
.mission-block {
  margin-bottom: 80px;
  text-align: center;
}
.mission-block h2 {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 20px;
}
.mission-statement {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.5;
  color: #1a1a1a;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}
.mission-statement strong {
  font-weight: 600;
}

/* ── SERVICES ── */
.header {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  text-align: center;
  margin-bottom: 56px;
}

/* accordion rows */
.service-row {
  border-top: 1px solid #d0ccc7;
}
.service-row:last-of-type {
  border-bottom: 1px solid #d0ccc7;
}
.service-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}
.service-row-header:hover .service-row-title {
  color: #3d3d3d;
}
.service-row-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.service-row-num {
  font-size: 11px;
  letter-spacing: 3px;
  color: #bbb;
  font-weight: 600;
  flex-shrink: 0;
}
.service-row-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.4px;
  transition: color 0.2s ease;
}
.service-row-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #d0ccc7;
  padding: 4px 10px;
  font-weight: 500;
}
.service-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  background: #1a1a1a;
  border-radius: 1px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.service-toggle::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-toggle::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-row.open .service-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* panel */
.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.service-row.open .service-panel {
  grid-template-rows: 1fr;
}
.service-panel-inner {
  overflow: hidden;
}
.service-panel-content {
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
.service-subcategory {
  margin-bottom: 28px;
}
.service-subcategory-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 14px;
}
.service-subcategory ul {
  list-style: none;
  padding: 0;
}
.service-subcategory ul li {
  font-size: 14px;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid #ece9e4;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-subcategory ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #bbb;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-block {
  background: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  padding: 0px 20px;
}

.contact-text-content {
  display: flex;
}

.contact-header-container {
  display: flex;
  align-items: center;
}

.contact-header {
  width: 30vw;
  line-height: 6rem;
  text-align: center;
  z-index: 2;
}

.contact-phone-dangle {
  width: 10vw;
}

.contact-dialogue-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.contact-dialogue-header {
  font-family: "Inter";
  font-weight: 700;
  text-transform: uppercase;
}

.contact-dialogue-content {
  font-weight: 400;
  color: rgb(94, 94, 94);
  width: 60%;
}

.contact-btn-container {
  display: flex;
  gap: 10px;
}

.contact-btn {
  background: #000;
  border: none;
  border-radius: 9999px;
  font-family: "Inter";
  font-weight: 500;
  color: #d0d0d0;
  padding: 5px 25px;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

.contact-btn a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px !important;
}

.contact-btn:hover {
  transition: all 0.5s;
  background: #424242;
}

@media (max-width: 600px) {
  .service-panel-content {
    grid-template-columns: 1fr;
  }
  .service-row-tags {
    display: none;
  }
  .service-row-title {
    font-size: 17px;
  }
}

/* footer line */
.footer-line {
  text-align: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #d0ccc7;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  h1 {
    font-size: 68px;
  }
  .tagline {
    font-size: 20px;
  }
  .description {
    font-size: 17px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .mission-statement {
    font-size: 24px;
  }
  .contact-block {
    align-items: start;
  }
  .contact-dialogue-content {
    width: 100%;
    font-size: 15px;
    text-align: justify;
  }
  .contact-phone-dangle {
    width: 40vw;
  }
  .contact-text-content {
    padding: 20px 0px;
    flex-direction: column-reverse;
  }
  .contact-header {
    text-align: left;
    font-size: 50px;
    line-height: 50px;
    margin: 0;
  }

  .contact-btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-btn {
    min-width: 25vw;
  }
  .logo-main {
    width: 60vw;
  }
  .tagline {
    font-size: 1rem;
    color: #1a1a1a;
  }
}
