
:root {
  --pink:       #f5b6b0;
  --pink-dark:  #e89f98;
  --pink-deep:  #c97068;
  --pink-pale:  #fce8e6;
  --white:      #ffffff;
  --black:      #111111;
  --black-mid:  #2a2a2a;
  --gray:       #6b6b6b;
  --gray-light: #e0e0e0;
  --bg-soft:    #fdf7f6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
}

.contact-top-wrap {
  background: linear-gradient(180deg,#f5b8b4 0%,#f9cac8 10%,#fde0de 20%,#fef0ef 35%,#ffffff 50%,#ffffff 100%);
  padding-bottom: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; transform: translateY(36px); }
.fade-up.visible { animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fade-up.visible.d1 { animation-delay: 0.05s; }
.fade-up.visible.d2 { animation-delay: 0.13s; }
.fade-up.visible.d3 { animation-delay: 0.21s; }
.fade-up.visible.d4 { animation-delay: 0.29s; }
.fade-up.visible.d5 { animation-delay: 0.37s; }
.fade-up.visible.d6 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1 !important; transform: none !important; animation: none !important; }
}

.contact-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: start;
}

.form-panel {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 40px rgba(245,182,176,.3);
  border: 1.5px solid var(--pink);
  overflow: hidden;
}

.form-panel-header {
  background: var(--pink);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-panel-header-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-panel-title { color: var(--black); font-weight: 700; font-size: 1.05rem; }
.form-panel-sub   { color: rgba(0,0,0,.5); font-size: .8rem; margin-top: .1rem; }

.form-body { padding: 2.5rem; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black-mid);
  margin-bottom: .45rem;
}
.field label .req { color: var(--pink-deep); margin-left: .2rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--black);
  background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #bbb; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(245,182,176,.3);
  background: var(--white);
}

.field textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1.5rem;
}
.checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--pink-deep);
  cursor: pointer;
}
.checkbox-group label { font-size: .83rem; color: var(--gray); line-height: 1.5; cursor: pointer; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--pink);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.btn-submit:hover  { background: var(--pink-dark); transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3   { font-family: 'Open Sans', serif; font-size: 1.5rem; color: var(--black); margin-bottom: .6rem; }
.form-success p    { color: var(--gray); font-size: .9rem; line-height: 1.65; }

.info-panel { display: flex; flex-direction: column; gap: 1.5rem; }

.wa-card {
  background: var(--pink);
  border-radius: 8px;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.wa-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 70%);
}
.wa-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,182,176,.5); }

.wa-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-icon svg { width: 26px; height: 26px; fill: white; }

.wa-text-label { color: rgba(0,0,0,.5); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.wa-text-num   { color: var(--black); font-size: 1.25rem; font-weight: 700; margin: .2rem 0; }
.wa-text-hint  { color: rgba(0,0,0,.4); font-size: .78rem; }

.wa-arrow { margin-left: auto; color: rgba(0,0,0,.3); font-size: 1.4rem; transition: transform .2s; position: relative; z-index: 1; }
.wa-card:hover .wa-arrow { transform: translateX(4px); color: var(--black); }

.info-cards { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: var(--white);
  border: 1.5px solid var(--pink-pale);
  border-radius: 8px;
  padding: 1.5rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 1px 20px rgba(245,182,176,.12);
  transition: box-shadow .2s, border-color .2s;
}
.info-card:hover { box-shadow: 0 4px 28px rgba(245,182,176,.35); border-color: var(--pink); }

.info-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--pink);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.info-card-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-deep); margin-bottom: .3rem; }
.info-card-value { font-weight: 600; font-size: .92rem; color: var(--black); line-height: 1.5; }
.info-card-sub   { font-size: .8rem; color: var(--gray); margin-top: .25rem; line-height: 1.5; }

.hours-grid {
  background: var(--white);
  border: 1.5px solid var(--pink-pale);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 20px rgba(245,182,176,.12);
}
.hours-grid-header {
  background: var(--pink);
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hours-grid-header span { color: var(--black); font-weight: 700; font-size: .85rem; letter-spacing: .05em; }

.hours-body { padding: .5rem 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 1.8rem;
  border-bottom: 1px solid var(--pink-pale);
  transition: background .15s;
  gap: .5rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover      { background: var(--bg-soft); }

.hours-day  { font-size: .85rem; color: var(--black); font-weight: 500; flex: 1; min-width: 0; }
.hours-time { font-size: .85rem; color: var(--gray); white-space: nowrap; }

.hours-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-open   { background: rgba(45,122,95,.1);  color: #2d7a5f; }
.badge-closed { background: rgba(200,80,80,.1);  color: #c05050; }

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 20px rgba(245,182,176,.2);
  border: 1.5px solid var(--pink-pale);
  position: relative;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: none;
  filter: grayscale(10%) contrast(1.05) saturate(.9);
}

.map-wrap--full {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 20px rgba(245,182,176,.2);
  border: 1.5px solid var(--pink-pale);
  position: relative;
  margin: 0 5% 3rem;
}
.map-wrap--full iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(10%) contrast(1.05) saturate(.9);
}
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.map-overlay-text { color: var(--white); font-size: .82rem; font-weight: 500; }
.map-overlay-link {
  background: var(--pink);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.map-overlay-link:hover { background: var(--pink-dark); }

.faq-section {
  background: #ffffff;
  padding: 5rem 5%;
  border-top: none;
}
.faq-inner  { max-width: 1300px; margin: 0 auto; }
.faq-header { margin-bottom: 3rem; }

.faq-label { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pink-deep); margin-bottom: .6rem; }
.faq-title { font-family: 'Open Sans', serif; font-size: 2rem; font-weight: 900; color: var(--black); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--pink-pale);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--pink); box-shadow: 0 4px 20px rgba(245,182,176,.25); }

.faq-q {
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  color: var(--black);
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.4;
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-size: 1rem;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--pink); color: var(--black); border-color: var(--pink); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 1.5rem;
  color: var(--gray);
  font-size: .85rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.3rem; }

@media (max-width: 1000px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 2rem 4% 4rem; gap: 2rem; }
  .faq-grid     { grid-template-columns: 1fr; }
  .faq-section  { padding: 3.5rem 4%; }
  .faq-title    { font-size: 1.7rem; }
}

@media (max-width: 640px) {
  .contact-wrap         { padding: 1.5rem 4% 3rem; gap: 1.5rem; }
  .form-panel-header    { padding: 1.3rem 1.5rem; }
  .form-panel-header-icon { width: 38px; height: 38px; font-size: 1rem; }
  .form-panel-title     { font-size: .95rem; }
  .form-panel-sub       { font-size: .75rem; }
  .form-body            { padding: 1.5rem; }
  .form-row             { grid-template-columns: 1fr; gap: 0; }
  .field input,
  .field select,
  .field textarea       { font-size: 16px; padding: .7rem .9rem; }
  .field textarea       { min-height: 110px; }
  .btn-submit           { padding: .9rem; font-size: .85rem; }
  .wa-card              { padding: 1.4rem 1.5rem; gap: 1rem; }
  .wa-icon              { width: 44px; height: 44px; }
  .wa-icon svg          { width: 22px; height: 22px; }
  .wa-text-num          { font-size: 1.1rem; }
  .wa-text-label        { font-size: .68rem; }
  .wa-text-hint         { font-size: .73rem; }
  .wa-arrow             { font-size: 1.2rem; }
  .info-card            { padding: 1.2rem 1.3rem; gap: 1rem; }
  .info-card-icon       { width: 38px; height: 38px; font-size: 1rem; }
  .info-card-value      { font-size: .87rem; }
  .hours-grid-header    { padding: .85rem 1.3rem; }
  .hours-row            { padding: .6rem 1.3rem; gap: .4rem; }
  .hours-day            { font-size: .8rem; }
  .hours-time           { font-size: .78rem; }
  .hours-badge          { font-size: .6rem; padding: .18rem .45rem; }
  .map-wrap iframe, .map-wrap--full iframe { height: 220px; }
  .map-wrap--full       { margin: 0 4% 2.5rem; }
  .map-overlay          { padding: .9rem 1.1rem; }
  .map-overlay-text     { font-size: .75rem; }
  .map-overlay-link     { font-size: .68rem; padding: .35rem .75rem; }
  .faq-section          { padding: 3rem 4%; }
  .faq-title            { font-size: 1.5rem; }
  .faq-q                { font-size: .85rem; padding: 1.1rem 1.2rem; }
  .faq-a                { padding: 0 1.2rem; font-size: .82rem; }
  .faq-item.open .faq-a { padding: 0 1.2rem 1.1rem; max-height: 260px; }
  .faq-q-icon           { width: 24px; height: 24px; font-size: .9rem; }
  .form-success         { padding: 2rem 1.5rem; }
  .form-success-icon    { font-size: 2.8rem; }
  .form-success h3      { font-size: 1.25rem; }
}

@media (max-width: 380px) {
  .contact-wrap  { padding: 1.2rem 3.5% 2.5rem; }
  .wa-text-num   { font-size: 1rem; }
  .hours-time    { display: none; }
  .hours-day     { flex: 1; }
}
