:root {
  --bg: #050505;
  --white: #f7f7f7;
  --muted: #b8b8b8;
  --hot: #ff005c;
  --hot-soft: rgba(255, 0, 92, 0.28);
  --glass: rgba(255,255,255,0.075);
  --line: rgba(255,255,255,0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Inter', 'Arial Black', system-ui, sans-serif;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 0, 92, 0.2), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.07), transparent 26%),
    linear-gradient(135deg, #050505 0%, #0b0b0b 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  background-size: 100% 4px, auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.page-container {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 0;
}

/* TITLE */
.page-title {
  text-align: center;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.85;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  margin-bottom: clamp(42px, 7vw, 70px);
  text-shadow: 0 18px 60px rgba(0,0,0,0.65);
}

.page-title::after {
  content: "";
  display: block;
  width: 78px;
  height: 5px;
  margin: 24px auto 0;
  background: var(--hot);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(255,0,92,0.45);
}

/* OWNER SECTION */
.owner-section {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 52px);
  margin: 60px 0 80px;
  padding: clamp(28px, 5vw, 46px);
  text-align: left;

  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.04);
  border: 1px solid var(--line);

  box-shadow:
    22px 22px 0 var(--hot-soft),
    0 35px 90px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.owner-image {
  flex: 0 0 auto;
}

.owner-image img {
  width: clamp(180px, 22vw, 240px);
  height: clamp(180px, 22vw, 240px);
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid var(--hot);
  filter: grayscale(0.15) contrast(1.1);

  box-shadow:
    0 0 0 10px rgba(255,0,92,0.08),
    0 24px 70px rgba(0,0,0,0.45);
}

.owner-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--hot);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.owner-text p {
  color: var(--muted);
  font-size: 1rem;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 80px;
}

.value-item {
  padding: 28px;
  border-radius: 24px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.035);

  border: 1px solid var(--line);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.12);

  transition: 0.35s ease;
}

.value-item:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(255,0,92,0.5);
  box-shadow:
    12px 12px 0 var(--hot-soft),
    0 28px 80px rgba(0,0,0,0.5);
}

.value-item h4 {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 950;
}

.value-item p {
  color: var(--muted);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 52px);
  margin: 80px 0;
  text-align: left;
}

.contact-grid h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  font-weight: 950;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.map-frame {
  width: 100%;
  height: 350px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #111;

  box-shadow:
    12px 12px 0 var(--hot-soft),
    0 24px 70px rgba(0,0,0,0.42);
}

.address-text {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* FORM */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.075);
  color: #fff;

  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;

  outline: none;
  transition: 0.3s ease;
}

.inquiry-form textarea {
  border-radius: 24px;
  min-height: 140px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(255,0,92,0.7);
  background: rgba(255,0,92,0.08);
  box-shadow: 0 0 0 4px rgba(255,0,92,0.12);
}

.submit-btn {
  margin-top: 5px;
  padding: 16px;
  border: none;
  border-radius: 999px;

  background: var(--hot);
  color: white;

  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1.8px;

  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 14px 38px rgba(255,0,92,0.24);
}

.submit-btn:hover {
  transform: translateY(-3px);
  background: #fff;
  color: #050505;
}

/* QUOTE */
.quote-box {
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 48px);
  margin-top: 80px;

  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,0,92,0.16), transparent 35%),
    rgba(255,255,255,0.055);
  border: 1px solid var(--line);

  color: var(--white);

  box-shadow:
    0 24px 80px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.quote-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .page-container {
    width: min(100% - 32px, 1100px);
  }

  .owner-section,
  .contact-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .owner-section {
    box-shadow:
      12px 12px 0 var(--hot-soft),
      0 24px 70px rgba(0,0,0,0.45);
  }

  .form-row {
    flex-direction: column;
  }

  .contact-grid {
    margin: 60px 0;
  }
}

@media (max-width: 520px) {
  .owner-section {
    padding: 24px;
    border-radius: 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 300px;
  }
}