/* ===========================
   SOMEDIART — Design Tokens
   =========================== */
:root {
  --bg:        #f4ede2;
  --text:      #1a1a28;
  --brand:     #f2c94c;
  --text-mid:  #7a7a8c;
  --font-d:    'Montserrat', system-ui, sans-serif;
  --font-b:    'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================
   Reset
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; border: none; background: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

body {
  font-family: var(--font-b);
  background-color: var(--bg);
  background-image: url('pictures/underconstractionbackroundimage.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text);
  height: 100dvh;
  overflow: hidden;
}

/* ===========================
   Layout
   =========================== */
.layout {
  display: flex;
  height: 100dvh;
}

/* ===========================
   Sol Panel
   =========================== */
.left-panel {
  width: clamp(340px, 45vw, 580px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4.5vw, 60px);
  overflow: hidden;
  flex-shrink: 0;
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 28px);
}

/* Logo */
.logo {
  display: inline-block;
  align-self: flex-start;
}

.logo img {
  width: clamp(140px, 14vw, 200px);
  height: auto;
  display: block;
}

/* Brand label */
.brand-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.brand-dot {
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Başlık */
.headline {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Squiggle */
.squiggle-wrap {
  display: flex;
  align-items: center;
}

.squiggle {
  width: 80px;
  height: 38px;
}

/* Açıklama metni */
.description {
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
}

/* İletişim kartları */
.contact-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(26, 26, 40, 0.12);
  border-radius: 8px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card:hover {
  border-color: var(--brand);
  background-color: rgba(242, 201, 76, 0.06);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--brand);
  border-radius: 7px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

/* Footer */
.left-footer {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 26, 40, 0.1);
}

/* ===========================
   Sağ Panel
   =========================== */
.right-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.right-tagline {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

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

  .layout {
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
  }

  .left-panel {
    width: 100%;
    max-width: 100%;
    padding: 36px 28px 40px;
    min-height: auto;
  }

  .right-panel {
    height: 45vw;
    min-height: 240px;
  }

  .right-tagline {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .headline { font-size: 2rem; }

  .contact-grid { flex-direction: column; }

  .contact-card { align-self: flex-start; }
}

/* ===========================
   Reduced Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
