:root {
  color-scheme: light;
  --cream: #fff7ed;
  --peach: #f7d2c4;
  --melon: #ffb8a3;
  --rose: #de7b82;
  --leaf: #8fad7d;
  --text: #3f2f29;
  --muted: #6f5a52;
  --gold: #f4a460;
  --coral: #ff6b6b;
  --avocado-teal: #6fb397;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.3), 0 8px 25px rgba(222, 123, 130, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.6), 0 16px 40px rgba(222, 123, 130, 0.35);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background-color: #f9f7f3;
  background-image: none;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  text-align: center;
  padding: 36px 18px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  width: min(320px, 80%);
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(222, 123, 130, 0.15));
}

.lead-text {
  margin: 0 auto 14px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  color: var(--rose);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(222, 123, 130, 0.1);
  border: 1px solid rgba(255, 214, 189, 0.5);
}

h1 {
  margin: 0 0 30px 0;
  padding: 10px 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  color: var(--rose);
  text-shadow: 2px 2px 0 var(--melon), 4px 4px 0 var(--gold);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.message-panel {
  display: grid;
  gap: 32px;
  padding: 32px 12px 20px;
  grid-template-columns: 1fr 1fr;
}

.text-block {
  background: var(--avocado-teal);
  border: 2px solid rgba(95, 160, 144, 0.6);
  border-radius: 32px;
  padding: 28px 30px;
  box-shadow: 0 22px 55px rgba(111, 179, 151, 0.2);
  animation: slideInLeft 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  color: #fff;
}

.text-block p:first-child {
  font-style: italic;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
}

.text-block p:last-child {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  border: 2px solid rgba(255, 176, 163, 0.4);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 20px;
  animation: slideInRight 0.8s ease-out 0.5s both;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.6s; }
.contact-form label:nth-child(2) { animation-delay: 0.7s; }
.contact-form label:nth-child(3) { animation-delay: 0.8s; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 176, 163, 0.3);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  color: #000 !important;
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 123, 130, 0.15);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--rose), var(--melon), var(--gold));
  background-size: 200% 200%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(222, 123, 130, 0.25);
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(222, 123, 130, 0.35);
  background-position: 100% 0;
}

.contact-form button:active:not(:disabled) {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.8;
}

.contact-note {
  margin: 16px 0 0 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
  word-wrap: break-word;
  line-height: 1.5;
  animation: fadeIn 0.6s ease-out 1s both;
}

.location-section {
  display: grid;
  gap: 32px;
  padding: 48px 12px 20px;
  grid-template-columns: 1fr 1fr;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.address-block {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(255, 214, 189, 0.2));
  border: 2px solid rgba(244, 164, 96, 0.4);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-block h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.address-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.phone-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.phone-link:hover {
  color: var(--melon);
  transform: translateX(4px);
}

.map-block {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.2);
  animation: glow 3s ease-in-out infinite;
}

.google-map {
  border-radius: 30px;
  display: block;
  transition: transform 0.3s ease;
  width: 100%;
  height: 300px;
}

.map-block:hover .google-map {
  transform: scale(1.02);
}

.social-section {
  text-align: center;
  padding: 48px 12px 20px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.social-section h2 {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-widget {
  display: inline-block;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 189, 0.9), rgba(255, 176, 163, 0.8));
  color: var(--rose);
  text-decoration: none;
  padding: 20px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--rose);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(222, 123, 130, 0.15);
}

.insta-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(222, 123, 130, 0.3);
  background: linear-gradient(135deg, rgba(255, 176, 163, 1), rgba(244, 164, 96, 0.9));
}

.insta-link svg {
  display: block;
}

.page-footer {
  text-align: center;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 176, 163, 0.2);
}

@media (min-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr 1fr;
  }

  .location-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 40px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 20px;
  }

  .google-map {
    height: 250px !important;
  }

  .map-block {
    height: 250px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 20px 16px;
  }

  .hero-panel {
    padding: 24px 12px 16px;
  }

  .brand-logo {
    width: min(280px, 70%);
    margin: 0 auto 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 32px;
  }

  .lead-text {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .subtitle {
    font-size: 1rem;
    margin: 12px auto 0;
  }

  .message-panel,
  .location-section {
    gap: 20px;
    padding: 20px 8px 16px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 16px;
    border-radius: 20px;
  }

  .text-block p,
  .address-text {
    font-size: 0.95rem;
  }

  .contact-form label {
    gap: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form button {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .contact-note {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .google-map {
    height: 200px !important;
  }

  .social-section {
    padding: 32px 12px 16px;
  }

  .insta-link {
    flex-direction: column;
    padding: 16px 24px;
    font-size: 1rem;
    gap: 12px;
  }

  .insta-link svg {
    width: 28px;
    height: 28px;
  }

  .page-footer {
    font-size: 0.9rem;
    padding-top: 16px;
  }
}
:root {
  color-scheme: light;
  --cream: #fff7ed;
  --peach: #f7d2c4;
  --melon: #ffb8a3;
  --rose: #de7b82;
  --leaf: #8fad7d;
  --text: #3f2f29;
  --muted: #6f5a52;
  --gold: #f4a460;
  --coral: #ff6b6b;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.3), 0 8px 25px rgba(222, 123, 130, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.6), 0 16px 40px rgba(222, 123, 130, 0.35);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff9f1 0%, #f6ece3 50%, #fff4e6 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 214, 189, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 176, 163, 0.3), transparent 50%),
    radial-gradient(circle at 40% 0%, rgba(244, 164, 96, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  text-align: center;
  padding: 36px 18px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  width: min(320px, 80%);
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(222, 123, 130, 0.15));
}

.lead-text {
  margin: 0 auto 14px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  color: var(--rose);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(222, 123, 130, 0.1);
  border: 1px solid rgba(255, 214, 189, 0.5);
}

h1 {
  margin: 0 0 30px 0;
  padding: 10px 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  color: var(--rose);
  text-shadow: 2px 2px 0 var(--melon), 4px 4px 0 var(--gold);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.message-panel {
  display: grid;
  gap: 32px;
  padding: 32px 12px 20px;
  grid-template-columns: 1fr 1fr;
}

.text-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.8));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--peach), var(--rose)) 1;
  border-radius: 32px;
  padding: 28px 30px;
  box-shadow: 0 22px 55px rgba(102, 64, 58, 0.08);
  animation: slideInLeft 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.text-block p:first-child {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}

.text-block p:last-child {
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  border: 2px solid rgba(255, 176, 163, 0.4);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 20px;
  animation: slideInRight 0.8s ease-out 0.5s both;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.6s; }
.contact-form label:nth-child(2) { animation-delay: 0.7s; }
.contact-form label:nth-child(3) { animation-delay: 0.8s; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 176, 163, 0.3);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  color: #000 !important;
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 123, 130, 0.15);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--rose), var(--melon), var(--gold));
  background-size: 200% 200%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(222, 123, 130, 0.25);
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(222, 123, 130, 0.35);
  background-position: 100% 0;
}

.contact-form button:active:not(:disabled) {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.8;
}

.contact-note {
  margin: 16px 0 0 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
  word-wrap: break-word;
  line-height: 1.5;
  animation: fadeIn 0.6s ease-out 1s both;
}

.location-section {
  display: grid;
  gap: 32px;
  padding: 48px 12px 20px;
  grid-template-columns: 1fr 1fr;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.address-block {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(255, 214, 189, 0.2));
  border: 2px solid rgba(244, 164, 96, 0.4);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-block h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.address-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.phone-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.phone-link:hover {
  color: var(--melon);
  transform: translateX(4px);
}

.map-block {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.2);
  animation: glow 3s ease-in-out infinite;
}

.google-map {
  border-radius: 30px;
  display: block;
  transition: transform 0.3s ease;
  width: 100%;
  height: 300px;
}

.map-block:hover .google-map {
  transform: scale(1.02);
}

.social-section {
  text-align: center;
  padding: 48px 12px 20px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.social-section h2 {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-widget {
  display: inline-block;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 189, 0.9), rgba(255, 176, 163, 0.8));
  color: var(--rose);
  text-decoration: none;
  padding: 20px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--rose);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(222, 123, 130, 0.15);
}

.insta-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(222, 123, 130, 0.3);
  background: linear-gradient(135deg, rgba(255, 176, 163, 1), rgba(244, 164, 96, 0.9));
}

.insta-link svg {
  display: block;
}

.page-footer {
  text-align: center;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 176, 163, 0.2);
}

@media (min-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr 1fr;
  }

  .text-block {
    border-image: linear-gradient(135deg, var(--peach), var(--rose), var(--gold)) 1;
  }

  .location-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 40px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 20px;
  }

  .google-map {
    height: 250px !important;
  }

  .map-block {
    height: 250px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 20px 16px;
  }

  .hero-panel {
    padding: 24px 12px 16px;
  }

  .brand-logo {
    width: min(280px, 70%);
    margin: 0 auto 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 32px;
  }

  .lead-text {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .subtitle {
    font-size: 1rem;
    margin: 12px auto 0;
  }

  .message-panel,
  .location-section {
    gap: 20px;
    padding: 20px 8px 16px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 16px;
    border-radius: 20px;
  }

  .text-block p,
  .address-text {
    font-size: 0.95rem;
  }

  .contact-form label {
    gap: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form button {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .contact-note {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .google-map {
    height: 200px !important;
  }

  .social-section {
    padding: 32px 12px 16px;
  }

  .insta-link {
    flex-direction: column;
    padding: 16px 24px;
    font-size: 1rem;
    gap: 12px;
  }

  .insta-link svg {
    width: 28px;
    height: 28px;
  }

  .page-footer {
    font-size: 0.9rem;
    padding-top: 16px;
  }
}
:root {
  color-scheme: light;
  --cream: #fff7ed;
  --peach: #f7d2c4;
  --melon: #ffb8a3;
  --rose: #de7b82;
  --leaf: #8fad7d;
  --text: #3f2f29;
  --muted: #6f5a52;
  --gold: #f4a460;
  --coral: #ff6b6b;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.3), 0 8px 25px rgba(222, 123, 130, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.6), 0 16px 40px rgba(222, 123, 130, 0.35);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff9f1 0%, #f6ece3 50%, #fff4e6 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 214, 189, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 176, 163, 0.3), transparent 50%),
    radial-gradient(circle at 40% 0%, rgba(244, 164, 96, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  text-align: center;
  padding: 36px 18px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  width: min(320px, 80%);
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(222, 123, 130, 0.15));
}

.lead-text {
  margin: 0 auto 14px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  color: var(--rose);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(222, 123, 130, 0.1);
  border: 1px solid rgba(255, 214, 189, 0.5);
}

h1 {
  margin: 0 0 50px 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.4;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  background: linear-gradient(135deg, var(--rose) 0%, var(--melon) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.message-panel {
  display: grid;
  gap: 32px;
  padding: 32px 12px 20px;
  grid-template-columns: 1fr 1fr;
}

.text-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.8));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--peach), var(--rose)) 1;
  border-radius: 32px;
  padding: 28px 30px;
  box-shadow: 0 22px 55px rgba(102, 64, 58, 0.08);
  animation: slideInLeft 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.text-block p:first-child {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}

.text-block p:last-child {
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  border: 2px solid rgba(255, 176, 163, 0.4);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 20px;
  animation: slideInRight 0.8s ease-out 0.5s both;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.6s; }
.contact-form label:nth-child(2) { animation-delay: 0.7s; }
.contact-form label:nth-child(3) { animation-delay: 0.8s; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 176, 163, 0.3);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  color: #000 !important;
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 123, 130, 0.15);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--rose), var(--melon), var(--gold));
  background-size: 200% 200%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(222, 123, 130, 0.25);
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(222, 123, 130, 0.35);
  background-position: 100% 0;
}

.contact-form button:active:not(:disabled) {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.8;
}

.contact-note {
  margin: 16px 0 0 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
  word-wrap: break-word;
  line-height: 1.5;
  animation: fadeIn 0.6s ease-out 1s both;
}

.location-section {
  display: grid;
  gap: 32px;
  padding: 48px 12px 20px;
  grid-template-columns: 1fr 1fr;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.address-block {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(255, 214, 189, 0.2));
  border: 2px solid rgba(244, 164, 96, 0.4);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-block h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.address-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.phone-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.phone-link:hover {
  color: var(--melon);
  transform: translateX(4px);
}

.map-block {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.2);
  animation: glow 3s ease-in-out infinite;
}

.google-map {
  border-radius: 30px;
  display: block;
  transition: transform 0.3s ease;
  width: 100%;
  height: 300px;
}

.map-block:hover .google-map {
  transform: scale(1.02);
}

.social-section {
  text-align: center;
  padding: 48px 12px 20px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.social-section h2 {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-widget {
  display: inline-block;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 189, 0.9), rgba(255, 176, 163, 0.8));
  color: var(--rose);
  text-decoration: none;
  padding: 20px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--rose);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(222, 123, 130, 0.15);
}

.insta-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(222, 123, 130, 0.3);
  background: linear-gradient(135deg, rgba(255, 176, 163, 1), rgba(244, 164, 96, 0.9));
}

.insta-link svg {
  display: block;
}

.page-footer {
  text-align: center;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 176, 163, 0.2);
}

@media (min-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr 1fr;
  }

  .text-block {
    border-image: linear-gradient(135deg, var(--peach), var(--rose), var(--gold)) 1;
  }

  .location-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 40px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 20px;
  }

  .google-map {
    height: 250px !important;
  }

  .map-block {
    height: 250px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 20px 16px;
  }

  .hero-panel {
    padding: 24px 12px 16px;
  }

  .brand-logo {
    width: min(280px, 70%);
    margin: 0 auto 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 32px;
  }

  .lead-text {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .subtitle {
    font-size: 1rem;
    margin: 12px auto 0;
  }

  .message-panel,
  .location-section {
    gap: 20px;
    padding: 20px 8px 16px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 16px;
    border-radius: 20px;
  }

  .text-block p,
  .address-text {
    font-size: 0.95rem;
  }

  .contact-form label {
    gap: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form button {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .contact-note {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .google-map {
    height: 200px !important;
  }

  .social-section {
    padding: 32px 12px 16px;
  }

  .insta-link {
    flex-direction: column;
    padding: 16px 24px;
    font-size: 1rem;
    gap: 12px;
  }

  .insta-link svg {
    width: 28px;
    height: 28px;
  }

  .page-footer {
    font-size: 0.9rem;
    padding-top: 16px;
  }
}
:root {
  color-scheme: light;
  --cream: #fff7ed;
  --peach: #f7d2c4;
  --melon: #ffb8a3;
  --rose: #de7b82;
  --leaf: #8fad7d;
  --text: #3f2f29;
  --muted: #6f5a52;
  --gold: #f4a460;
  --coral: #ff6b6b;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.3), 0 8px 25px rgba(222, 123, 130, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.6), 0 16px 40px rgba(222, 123, 130, 0.35);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff9f1 0%, #f6ece3 50%, #fff4e6 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 214, 189, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 176, 163, 0.3), transparent 50%),
    radial-gradient(circle at 40% 0%, rgba(244, 164, 96, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  text-align: center;
  padding: 36px 18px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  width: min(320px, 80%);
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(222, 123, 130, 0.15));
}

.lead-text {
  margin: 0 auto 14px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  color: var(--rose);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(222, 123, 130, 0.1);
  border: 1px solid rgba(255, 214, 189, 0.5);
}

h1 {
  margin: 0 0 50px 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.4;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  background: linear-gradient(135deg, var(--rose) 0%, var(--melon) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.message-panel {
  display: grid;
  gap: 32px;
  padding: 32px 12px 20px;
  grid-template-columns: 1fr 1fr;
}

.text-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.8));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--peach), var(--rose)) 1;
  border-radius: 32px;
  padding: 28px 30px;
  box-shadow: 0 22px 55px rgba(102, 64, 58, 0.08);
  animation: slideInLeft 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.text-block p:first-child {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}

.text-block p:last-child {
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  border: 2px solid rgba(255, 176, 163, 0.4);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 20px;
  animation: slideInRight 0.8s ease-out 0.5s both;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.6s; }
.contact-form label:nth-child(2) { animation-delay: 0.7s; }
.contact-form label:nth-child(3) { animation-delay: 0.8s; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 176, 163, 0.3);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  color: #000 !important;
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 123, 130, 0.15);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--rose), var(--melon), var(--gold));
  background-size: 200% 200%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(222, 123, 130, 0.25);
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(222, 123, 130, 0.35);
  background-position: 100% 0;
}

.contact-form button:active:not(:disabled) {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.8;
}

.contact-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  animation: fadeIn 0.6s ease-out 1s both;
}

.location-section {
  display: grid;
  gap: 32px;
  padding: 48px 12px 20px;
  grid-template-columns: 1fr 1fr;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.address-block {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(255, 214, 189, 0.2));
  border: 2px solid rgba(244, 164, 96, 0.4);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-block h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.address-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.phone-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.phone-link:hover {
  color: var(--melon);
  transform: translateX(4px);
}

.map-block {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.2);
  animation: glow 3s ease-in-out infinite;
}

.google-map {
  border-radius: 30px;
  display: block;
  transition: transform 0.3s ease;
  width: 100%;
  height: 300px;
}

.map-block:hover .google-map {
  transform: scale(1.02);
}

.social-section {
  text-align: center;
  padding: 48px 12px 20px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.social-section h2 {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-widget {
  display: inline-block;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 189, 0.9), rgba(255, 176, 163, 0.8));
  color: var(--rose);
  text-decoration: none;
  padding: 20px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--rose);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(222, 123, 130, 0.15);
}

.insta-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(222, 123, 130, 0.3);
  background: linear-gradient(135deg, rgba(255, 176, 163, 1), rgba(244, 164, 96, 0.9));
}

.insta-link svg {
  display: block;
}

.page-footer {
  text-align: center;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 176, 163, 0.2);
}

@media (min-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr 1fr;
  }

  .text-block {
    border-image: linear-gradient(135deg, var(--peach), var(--rose), var(--gold)) 1;
  }

  .location-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 20px;
  }

  .google-map {
    height: 250px !important;
  }

  .map-block {
    height: 250px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 20px 16px;
  }

  .hero-panel {
    padding: 24px 12px 16px;
  }

  .brand-logo {
    width: min(280px, 70%);
    margin: 0 auto 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 12px;
  }

  .lead-text {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .subtitle {
    font-size: 1rem;
    margin: 12px auto 0;
  }

  .message-panel,
  .location-section {
    gap: 20px;
    padding: 20px 8px 16px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 16px;
    border-radius: 20px;
  }

  .text-block p,
  .address-text {
    font-size: 0.95rem;
  }

  .contact-form label {
    gap: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form button {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .google-map {
    height: 200px !important;
  }

  .social-section {
    padding: 32px 12px 16px;
  }

  .insta-link {
    flex-direction: column;
    padding: 16px 24px;
    font-size: 1rem;
    gap: 12px;
  }

  .insta-link svg {
    width: 28px;
    height: 28px;
  }

  .page-footer {
    font-size: 0.9rem;
    padding-top: 16px;
  }
}
:root {
  color-scheme: light;
  --cream: #fff7ed;
  --peach: #f7d2c4;
  --melon: #ffb8a3;
  --rose: #de7b82;
  --leaf: #8fad7d;
  --text: #3f2f29;
  --muted: #6f5a52;
  --gold: #f4a460;
  --coral: #ff6b6b;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.3), 0 8px 25px rgba(222, 123, 130, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.6), 0 16px 40px rgba(222, 123, 130, 0.35);
  }
}

@keyframes colorShift {
  0%, 100% {
    color: var(--rose);
  }
  50% {
    color: var(--coral);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff9f1 0%, #f6ece3 50%, #fff4e6 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 214, 189, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 176, 163, 0.3), transparent 50%),
    radial-gradient(circle at 40% 0%, rgba(244, 164, 96, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  text-align: center;
  padding: 36px 18px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  width: min(320px, 80%);
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(222, 123, 130, 0.15));
}

.lead-text {
  margin: 0 auto 14px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  color: var(--rose);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(222, 123, 130, 0.1);
  border: 1px solid rgba(255, 214, 189, 0.5);
}

h1 {
  margin: 0 0 16px 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.1;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  background: linear-gradient(135deg, var(--rose) 0%, var(--melon) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.message-panel {
  display: grid;
  gap: 32px;
  padding: 32px 12px 20px;
  grid-template-columns: 1fr 1fr;
}

.text-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.8));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--peach), var(--rose)) 1;
  border-radius: 32px;
  padding: 28px 30px;
  box-shadow: 0 22px 55px rgba(102, 64, 58, 0.08);
  animation: slideInLeft 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.text-block p:first-child {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}

.text-block p:last-child {
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  border: 2px solid rgba(255, 176, 163, 0.4);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 20px;
  animation: slideInRight 0.8s ease-out 0.5s both;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.6s; }
.contact-form label:nth-child(2) { animation-delay: 0.7s; }
.contact-form label:nth-child(3) { animation-delay: 0.8s; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 176, 163, 0.3);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  color: var(--text);
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 123, 130, 0.15);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--rose), var(--melon), var(--gold));
  background-size: 200% 200%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(222, 123, 130, 0.25);
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(222, 123, 130, 0.35);
  background-position: 100% 0;
}

.contact-form button:active:not(:disabled) {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.8;
}

.contact-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  animation: fadeIn 0.6s ease-out 1s both;
}

.location-section {
  display: grid;
  gap: 32px;
  padding: 48px 12px 20px;
  grid-template-columns: 1fr 1fr;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.address-block {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(255, 214, 189, 0.2));
  border: 2px solid rgba(244, 164, 96, 0.4);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-block h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.address-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.phone-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.phone-link:hover {
  color: var(--melon);
  transform: translateX(4px);
}

.map-block {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.2);
  animation: glow 3s ease-in-out infinite;
}

.google-map {
  border-radius: 30px;
  display: block;
  transition: transform 0.3s ease;
  width: 100%;
  height: 300px;
}

.map-block:hover .google-map {
  transform: scale(1.02);
}

.social-section {
  text-align: center;
  padding: 48px 12px 20px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.social-section h2 {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-widget {
  display: inline-block;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 189, 0.9), rgba(255, 176, 163, 0.8));
  color: var(--rose);
  text-decoration: none;
  padding: 20px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--rose);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(222, 123, 130, 0.15);
}

.insta-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(222, 123, 130, 0.3);
  background: linear-gradient(135deg, rgba(255, 176, 163, 1), rgba(244, 164, 96, 0.9));
}

.insta-link svg {
  display: block;
}

.page-footer {
  text-align: center;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 176, 163, 0.2);
}

@media (min-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr 1fr;
  }

  .text-block {
    border-image: linear-gradient(135deg, var(--peach), var(--rose), var(--gold)) 1;
  }

  .location-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 20px;
  }

  .google-map {
    height: 250px !important;
  }

  .map-block {
    height: 250px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 20px 16px;
  }

  .hero-panel {
    padding: 24px 12px 16px;
  }

  .brand-logo {
    width: min(280px, 70%);
    margin: 0 auto 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .lead-text {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .subtitle {
    font-size: 1rem;
    margin: 12px auto 0;
  }

  .message-panel,
  .location-section {
    gap: 20px;
    padding: 20px 8px 16px;
  }

  .text-block,
  .contact-form,
  .address-block {
    padding: 16px;
    border-radius: 20px;
  }

  .text-block p,
  .address-text {
    font-size: 0.95rem;
  }

  .contact-form label {
    gap: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form button {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .google-map {
    height: 200px !important;
  }

  .social-section {
    padding: 32px 12px 16px;
  }

  .insta-link {
    flex-direction: column;
    padding: 16px 24px;
    font-size: 1rem;
    gap: 12px;
  }

  .insta-link svg {
    width: 28px;
    height: 28px;
  }

  .page-footer {
    font-size: 0.9rem;
    padding-top: 16px;
  }
}
:root {
  color-scheme: light;
  --cream: #fff7ed;
  --peach: #f7d2c4;
  --melon: #ffb8a3;
  --rose: #de7b82;
  --leaf: #8fad7d;
  --text: #3f2f29;
  --muted: #6f5a52;
  --gold: #f4a460;
  --coral: #ff6b6b;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.3), 0 8px 25px rgba(222, 123, 130, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.6), 0 16px 40px rgba(222, 123, 130, 0.35);
  }
}

@keyframes colorShift {
  0%, 100% {
    color: var(--rose);
  }
  50% {
    color: var(--coral);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff9f1 0%, #f6ece3 50%, #fff4e6 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 214, 189, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 176, 163, 0.3), transparent 50%),
    radial-gradient(circle at 40% 0%, rgba(244, 164, 96, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.hero-panel {
  text-align: center;
  padding: 36px 18px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  width: min(320px, 80%);
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(222, 123, 130, 0.15));
}

.lead-text {linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  color: var(--rose);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(222, 123, 130, 0.1);
  border: 1px solid rgba(255, 214, 189, 0.5)
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: fadeInDown 0.8s ease-out 0.3s both;
  background: linear-gradient(135deg, var(--rose) 0%, var(--melon) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both
.subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.8));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--peach), var(--rose)) 1;
  border-radius: 32px;
  padding: 28px 30px;
  box-shadow: 0 22px 55px rgba(102, 64, 58, 0.08);
  animation: slideInLeft 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '';
  position: absolute;
  top: -50%;linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.9));
  border: 2px solid rgba(255, 176, 163, 0.4);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 20px;
  animation: slideInRight 0.8s ease-out 0.5s both;
  box-shadow: 0 20px 60px rgba(222, 123, 130, 0.1);
  backdrop-filter: blur(10px): float 8s ease-in-out infinite;
  pointer-events: none;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-form label:nth-child(1) { animation-delay: 0.6s; }
.contact-form label:nth-child(2) { animation-delay: 0.7s; }
.contact-form label:nth-child(3) { animation-delay: 0.8s; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 176, 163, 0.3);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  color: var(--text);
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 123, 130, 0.15);
  background: rgba(255, 255, 255, 1);, var(--gold));
  background-size: 200% 200%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(222, 123, 130, 0.25);
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(222, 123, 130, 0.35);
  background-position: 100% 0;
}

.contact-form button:active:not(:disabled) {
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.8;
}

.contact-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  animation: fadeIn 0.6s ease-out 1s both
  animation: fadeInUp 0.8s ease-out 1.1s both;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 176, 163, 0.2);
  border: 1px solid rgba(155, 122, 112, 0.35);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.95);

  .text-block {
    border-image: linear-gradient(135deg, var(--peach), var(--rose), var(--gold)) 1;
  }
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(254, 215, 204, 0.35);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--rose), var(--melon));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(222, 123, 130, 0.2);
}

.contact-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-footer {
  text-align: center;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .message-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 24px 18px;
  }

  .text-block,
  .contact-form {
    padding: 24px;
  }
}
