/* ==========================================================================
   IKON PARTITIONS — CONTACT PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   CONTACT HERO — compact, no background image
   ========================================================================== */

.contact-hero {
  background: var(--bg-dark);
  padding: 80px 0;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  align-items: end;
}

.contact-hero-left .section-tag {
  color: var(--primary);
}

.contact-hero-left .section-tag::before {
  background: var(--primary);
}

.contact-hero .page-hero-title {
  font-size: 58px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.14;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.contact-hero .italic-serif {
  font-style: italic;
  color: #D4B483;
}

.contact-hero .page-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

.cont-hero-text{
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    width: 70%;
}

/* Diagonal background lines — hidden on desktop, shown only on mobile (matches gallery hero) */
.cont-hero-lines {
  position: absolute;
  inset: 0;
  display: none;
  justify-content: space-between;
  padding: 0 var(--padding-x);
  pointer-events: none;
  z-index: 1;
}

.cont-hero-lines span {
  display: block;
  width: 1px;
  height: 140%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(20deg);
  transform-origin: center;
}

/* Scroll cue — hidden on desktop, shown only on mobile (see media query) */
.ctu-hero-scroll { display: none; }

@media (max-width: 992px) {
  .contact-hero { padding: 60px 0; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-hero .page-hero-title { font-size: 40px; }
}

@media (max-width: 768px) {
  /* Fixed-height hero with diagonal background lines (matches gallery hero) */
  .contact-hero {
    position: relative;
    height: 580px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .contact-hero .contact-hero-inner {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
  }

  .contact-hero .section-tag { margin-bottom: 26px; }

  .contact-hero .page-hero-title {
    font-size: 48px;
    line-height: 1.08;
  }

  .contact-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cont-hero-text {
    width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  .cont-hero-lines { display: flex; }

  /* Scroll cue removed on mobile */
  .ctu-hero-scroll { display: none !important; }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.ctu-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 828px;
}

/* Info side */
.ctu-info {
  background: var(--bg-light);
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
}

.ctu-info-inner {
  padding: 80px var(--padding-x) 80px;
  max-width: 700px;
}

.ctu-info .section-tag { color: var(--primary); }
.ctu-info .section-tag::before { background: var(--primary); }

.ctu-info-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.ctu-info-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.85;
  color: #5A5550;
  margin-bottom: 48px;
}

.ctu-contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 90px;
}

.ctu-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.25s;
}

.ctu-contact-item:hover { opacity: 0.75; }

.ctu-contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184,150,90,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.ctu-contact-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
}

.ctu-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.ctu-social-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10.9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8B7355;
}

.ctu-social-icons {
  display: flex;
  gap: 12px;
}

.ctu-social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184,150,90,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}

.ctu-social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Form side */
.ctu-form-wrap {
  background: #ffffff;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
}

.ctu-form-inner {
  padding: 72px 60px 72px 60px;
  width: 100%;
}

.ctu-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 36px;
  letter-spacing: 0;
}

.ctu-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 28px;
  margin-bottom: 28px;
}

.ctu-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.ctu-form-group--full { margin-bottom: 28px; }

.ctu-form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
}

.ctu-form-label span { color: var(--primary); }

.ctu-form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #E5E0D8;
  border-radius: 0;
  background: #FAFAF8;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.ctu-form-select::-ms-expand {
  display: none;
}

.ctu-form-input:focus {
  border-color: var(--primary);
  
}

.ctu-form-input::placeholder { color: #C0BAB2; }

.ctu-form-select {
  cursor: pointer;
  padding-right: 36px;
}

.ctu-select-wrap {
  position: relative;
}

.ctu-select-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--text-dark);
  pointer-events: none;
  display: flex;
  transition: transform 0.25s ease;
}

.ctu-form-select:focus + .ctu-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.ctu-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.ctu-form-footer {
  display: block;
}

.ctu-submit-btn {
  width: 100%;
  padding: 18px 48px;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: transparent;
  transition: all 0.3s;
}

.ctu-submit-btn:hover {
  background: #222222;
  color: var(--text-light);
}

/* ==========================================================================
   LOCATION STRIP
   ========================================================================== */

.ctu-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  background: #1A1A1A;
}

.ctu-location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--padding-x) 64px;
}

.ctu-location-pre {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.ctu-location-place {
  font-size: 28px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.2;
  font-style: italic;
}

.ctu-location-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.ctu-location-addr {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.ctu-location-dir {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 60px;
  border: 1px solid rgba(184,150,90,0.65);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-decoration: none !important;
  align-self: flex-start;
  transition: all 0.3s;
}

.ctu-location-dir:hover {
  background: var(--primary);
  color: #111;
  border-color: var(--primary);
  text-decoration: none !important;
}

.ctu-location-map {
  height: 100%;
  overflow: hidden;
}

.ctu-location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
}

.page-hero-desc{
  max-width: 470px;
}
/* ==========================================================================
   RESPONSIVE — CONTACT PAGE
   ========================================================================== */

@media (max-width: 992px) {
  .ctu-contact { grid-template-columns: 1fr; }
  .ctu-info-inner { padding: 64px 24px; }
  .ctu-info-title { font-size: 30px; }
  .ctu-form-inner { padding: 64px 24px; }
  .ctu-form-grid { grid-template-columns: 1fr; }
  .ctu-location { grid-template-columns: 1fr; height: auto; }
  .ctu-location-text { padding: 64px 24px; }
  .ctu-location-map { height: 300px; }
}

@media (max-width: 768px) {
  .ctu-form-grid { gap: 20px 0; }
}
