* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: #eef1f1;
  color: #222;
}

body {
  overflow-x: hidden;
}

/* =========================
   Header / Navigation
========================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 56px;
  margin-right: 120px;
}

.nav a {
  text-decoration: none;
  color: #5a5a5a;
  font-size: 23px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.6;
}

/* =========================
   Home Hero
========================= */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #edf0f0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(238, 241, 241, 0.08), rgba(238, 241, 241, 0.08)),
    linear-gradient(to right, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.05) 28%, rgba(0, 0, 0, 0) 48%);
  z-index: 1;
}

.hero-text {
  position: absolute;
  left: 96px;
  bottom: 160px;
  z-index: 2;
  color: white;
  max-width: 720px;
}

.hero-text h1 {
  font-size: 84px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-text h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

/* =========================
   Subpages
========================= */
.subpage {
  background: #ffffff;
  color: #111111;
  min-height: 100vh;
}

.subpage-header {
  position: relative;
  background: #ffffff;
}

.subpage-nav a {
  color: #444444;
}

.coming-soon {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 40px 24px;
}

.coming-soon h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
}

.coming-soon p {
  font-size: 22px;
  color: #666666;
}

/* =========================
   Shared Footer
========================= */
.site-footer {
  background: #f3f3f3;
  padding: 64px 40px 36px;
  color: #8a8a8a;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.footer-logo {
  width: 76px;
  height: auto;
  display: block;
  opacity: 0.9;
}

.footer-copy {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #9a9a9a;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 64px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-column a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-column a:hover {
  color: #555;
  opacity: 0.8;
}

/* =========================
   Contact Page
========================= */
body.contact-page-shape {
  background: #ffffff;
  color: #111111;
}

.contact-shape-main {
  background: #ffffff;
  padding: 56px 24px 120px;
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
}

.contact-shape-section {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contact-shape-section h1 {
  text-align: left;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
  margin-bottom: 22px;
}

.contact-shape-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-shape-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-shape-form input,
.contact-shape-form textarea {
  width: 100%;
  background: #ffffff;
  color: #111111;
  border: 1.5px solid #bdbdbd;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.contact-shape-form input {
  min-height: 58px;
}

.contact-shape-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-shape-form input::placeholder,
.contact-shape-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.28);
  font-weight: 500;
}

.contact-shape-form input:focus,
.contact-shape-form textarea:focus {
  border-color: #8f8f8f;
  background: #ffffff;
}

.contact-shape-submit {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.contact-shape-submit button {
  min-width: 160px;
  height: 52px;
  border: 1.5px solid #bdbdbd;
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-shape-submit button:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.contact-social-links {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.contact-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 22px;
  border: 1.5px solid #bdbdbd;
  border-radius: 999px;
  background: #ffffff;
  color: #555555;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-pill-link:hover {
  border-color: #8f8f8f;
  color: #111111;
  background: #fafafa;
}

.contact-pill-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #666666;
}

@media (max-width: 768px) {
  .contact-shape-main {
    padding: 32px 20px 96px;
    min-height: auto;
    display: block;
  }

  .contact-shape-section {
    max-width: 100%;
  }

  .contact-shape-section h1 {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .contact-shape-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-shape-form {
    gap: 14px;
  }

  .contact-shape-form input,
  .contact-shape-form textarea {
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .contact-shape-form input {
    min-height: 54px;
  }

  .contact-shape-form textarea {
    min-height: 180px;
  }

  .contact-shape-submit button {
    min-width: 150px;
    height: 48px;
    font-size: 14px;
    border-radius: 14px;
  }

  .contact-social-links {
    margin-top: 28px;
    gap: 12px;
  }

  .contact-pill-link {
    min-height: 50px;
    padding: 0 16px;
    font-size: 14px;
    gap: 10px;
  }

  .contact-pill-label {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .contact-shape-main {
    padding: 32px 20px 96px;
    min-height: auto;
    display: block;
  }

  .contact-shape-section {
    max-width: 100%;
  }

  .contact-shape-section h1 {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .contact-shape-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-shape-form {
    gap: 14px;
  }

  .contact-shape-form input,
  .contact-shape-form textarea {
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .contact-shape-form input {
    min-height: 54px;
  }

  .contact-shape-form textarea {
    min-height: 180px;
  }

  .contact-shape-submit button {
    min-width: 150px;
    height: 48px;
    font-size: 14px;
    border-radius: 14px;
  }
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
  .site-header {
    padding: 24px 24px;
  }

  .nav {
    gap: 28px;
    margin-right: 24px;
  }

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

  .hero-text {
    left: 48px;
    bottom: 110px;
    max-width: 560px;
  }

  .hero-text h1 {
    font-size: 58px;
  }

  .hero-text h2 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    gap: 18px;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 16px;
  }

  .hero-text {
    left: 24px;
    right: 24px;
    bottom: 64px;
    max-width: none;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .coming-soon h1 {
    font-size: 38px;
  }

  .coming-soon p {
    font-size: 18px;
  }

  .site-footer {
    padding: 44px 24px 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 36px;
  }

  .footer-brand {
    min-height: auto;
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-column a {
    font-size: 13px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .contact-main {
    padding: 36px 20px 32px;
  }

  .contact-heading h1 {
    font-size: 40px;
  }

  .contact-heading p {
    font-size: 16px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 16px 16px;
  }

  .form-group textarea {
    min-height: 220px;
  }

  .form-submit button {
    min-width: 160px;
    height: 52px;
    font-size: 15px;
  }

  .contact-links-minimal {
    gap: 18px;
    margin-top: 32px;
  }

  .contact-links-minimal a {
    font-size: 14px;
  }
}

.contact-social-links {
  margin-top: 28px;
  gap: 12px;
}

.contact-pill-link {
  min-height: 50px;
  padding: 0 16px;
  font-size: 14px;
}

.contact-pill-icon {
  font-size: 18px;
  min-width: 20px;
}



/* =========================
   About
========================= */


.about-page-cards {
  background: #ffffff;
  color: #111111;
}

.about-cards-main {
  background: #ffffff;
  padding: 32px 40px 120px;
}

.about-cards-hero {
  max-width: 1560px;
  margin: 0 auto 48px;
}

.about-cards-hero h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #111111;
}

.about-card {
  max-width: 1560px;
  margin: 0 auto 72px;
  padding: 40px 44px;
  background: #f7f7f5;
  border-radius: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.about-card-image {
  overflow: hidden;
  border-radius: 40px;
  background: #ffffff;
}

.about-card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-card-image-frame {
  border: 1px solid #d7d7d3;
}

.about-card-image-lads {
  border-radius: 52px;
}

.about-card-content {
  max-width: 520px;
}

.about-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #7e7e7a;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #666666;
  margin-bottom: 20px;
}

.about-card-content h2 {
  font-size: 64px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.about-card-content p {
  font-size: 18px;
  line-height: 1.75;
  color: #555555;
}

@media (max-width: 1280px) {
  .about-cards-main {
    padding: 28px 28px 100px;
  }

  .about-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 40px;
    padding: 32px 32px;
    border-radius: 40px;
  }

  .about-card-content h2 {
    font-size: 52px;
  }

  .about-cards-hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 900px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-card-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-cards-main {
    padding: 24px 20px 72px;
  }

  .about-cards-hero {
    margin-bottom: 28px;
  }

  .about-cards-hero h1 {
    font-size: 46px;
  }

  .about-card {
    margin-bottom: 40px;
    padding: 22px 22px 26px;
    border-radius: 28px;
    gap: 20px;
  }

  .about-card-image {
    border-radius: 24px;
  }

  .about-card-image-lads {
    border-radius: 28px;
  }

  .about-card-meta {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .about-card-content h2 {
    font-size: 40px;
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .about-card-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}