/* =========================================================
   MEENA PHOTOGRAPHY — CONTACT PAGE
   Scoped with mct-* to prevent conflicts.
========================================================= */

:root {
  --mct-gold: #d49a54;
  --mct-gold-dark: #a9703b;
  --mct-gold-soft: #e9ceb0;
  --mct-cream: #fbf4e9;
  --mct-cream-2: #f3e7d8;
  --mct-paper: #fffdf9;
  --mct-brown: #51392d;
  --mct-dark: #28201b;
  --mct-text: #65574d;
  --mct-muted: #8b7d72;
  --mct-line: rgba(169, 112, 59, .22);

  --mct-serif: "Bricolage Grotesque", Georgia, serif;
  --mct-sans: "Marcellus", "Inter", system-ui, sans-serif;
  --mct-script: "Bodoni Moda", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mct-text);
  background: #fff;
  font-family: var(--mct-sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.mct-page {
  overflow: hidden;
}

.mct-container {
  width: min(calc(100% - 80px), 1180px);
  margin-inline: auto;
}

/* =========================================================
   HERO
========================================================= */

.mct-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 35%, rgba(212, 154, 84, .15), transparent 24%),
    radial-gradient(circle at 92% 65%, rgba(212, 154, 84, .13), transparent 25%),
    linear-gradient(135deg, #fffdf9 0%, #f8eee1 100%);
}

.mct-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 154, 84, .16);
  pointer-events: none;
}

.mct-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -155px;
  width: 760px;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(212, 154, 84, .07);
}

.mct-hero .mct-container {
  position: relative;
  z-index: 2;
  padding: 225px 0 70px;
}

.mct-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--mct-gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
}

.mct-eyebrow span {
  width: 44px;
  height: 1px;
  background: var(--mct-gold-soft);
}

.mct-hero h1 {
  margin: 18px 0 0;
  color: var(--mct-dark);
  font-family: var(--mct-serif);
  font-size: clamp(55px, 7vw, 88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.mct-hero h1 em {
  color: var(--mct-gold);
  font-style: normal;
}

.mct-script {
  margin: 7px 0 20px;
  color: var(--mct-gold-dark);
  font-family: var(--mct-script);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
}

.mct-hero-copy {
  max-width: 580px;
  margin: auto;
  color: var(--mct-muted);
  font-size: 12px;
  line-height: 1.8;
}

.mct-flower {
  position: absolute;
  color: rgba(169, 112, 59, .22);
  font-size: 135px;
  line-height: 1;
}

.mct-flower-one {
  left: -35px;
  top: 20px;
  transform: rotate(-35deg);
}

.mct-flower-two {
  right: -30px;
  bottom: -15px;
  transform: rotate(42deg);
}

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

.mct-contact-section {
  padding: 100px 0 110px;
  background: #fff;
}

.mct-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.mct-info {
  padding-top: 12px;
}

.mct-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mct-gold-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .19em;
}

.mct-section-label span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--mct-gold-soft);
  border-radius: 50%;
  font-family: var(--mct-serif);
  font-size: 14px;
}

.mct-info h2,
.mct-location-copy h2 {
  margin: 18px 0 17px;
  color: var(--mct-dark);
  font-family: var(--mct-serif);
  font-size: clamp(43px, 4.5vw, 61px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.mct-info h2 em,
.mct-location-copy h2 em {
  color: var(--mct-gold);
  font-style: normal;
}

.mct-intro {
  max-width: 450px;
  margin: 0 0 35px;
  color: var(--mct-muted);
  font-size: 16px;
  line-height: 1.9;
}

.mct-contact-list {
  border-top: 1px solid var(--mct-line);
}

.mct-contact-item {
  display: grid;
  grid-template-columns: 51px 1fr;
  gap: 15px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(169, 112, 59, .13);
  text-decoration: none;
  transition: transform .25s ease;
}

.mct-contact-item:hover {
  transform: translateX(5px);
}

.mct-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mct-gold-soft);
  border-radius: 50%;
  background: var(--mct-cream);
}

.mct-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--mct-gold-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mct-contact-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--mct-gold-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .15em;
}

.mct-contact-item strong {
  display: block;
  color: var(--mct-brown);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.mct-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.mct-socials>span {
  margin-right: 6px;
  color: var(--mct-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .13em;
}

.mct-socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mct-gold-soft);
  border-radius: 50%;
  color: var(--mct-gold-dark);
  font-size: 7px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.mct-socials a:hover {
  color: #fff;
  background: var(--mct-gold);
}

/* =========================================================
   FORM
========================================================= */

.mct-form-card {
  position: relative;
  padding: 45px 48px 42px;
  border: 1px solid var(--mct-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 154, 84, .12), transparent 27%),
    var(--mct-cream);
  box-shadow: 0 18px 60px rgba(90, 60, 40, .07);
}

.mct-form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mct-form-card h2 {
  margin: 13px 0 0;
  color: var(--mct-dark);
  font-family: var(--mct-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.mct-form-card h2 em {
  color: var(--mct-gold);
  font-style: normal;
}

.mct-form-flower {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mct-gold-soft);
  border-radius: 50%;
  color: var(--mct-gold);
  font-size: 19px;
}

.mct-form-intro {
  margin: 17px 0 30px;
  color: var(--mct-muted);
  font-size: 16px;
  line-height: 1.7;
}

.mct-form {
  display: grid;
  gap: 19px;
}

.mct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.mct-form label {
  display: grid;
  gap: 8px;
}

.mct-form label>span {
  color: var(--mct-brown);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
}

.mct-form input,
.mct-form select,
.mct-form textarea {
  width: 100%;
  border: 1px solid rgba(169, 112, 59, .22);
  border-radius: 5px;
  outline: none;
  background: rgba(255, 255, 255, .78);
  color: var(--mct-brown);
  font: 400 11px/1.5 var(--mct-sans);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mct-form input,
.mct-form select {
  height: 47px;
  padding: 0 14px;
}

.mct-form textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

.mct-form input::placeholder,
.mct-form textarea::placeholder {
  color: #b0a49b;
}

.mct-form input:focus,
.mct-form select:focus,
.mct-form textarea:focus {
  border-color: var(--mct-gold);
  box-shadow: 0 0 0 3px rgba(212, 154, 84, .09);
}

.mct-submit {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  background: var(--mct-gold);
  font: 600 9px var(--mct-sans);
  letter-spacing: .14em;
  transition: transform .25s ease, background .25s ease;
}

.mct-submit span {
  font-size: 17px;
  font-weight: 400;
}

.mct-submit:hover {
  background: var(--mct-gold-dark);
  transform: translateY(-2px);
}

.mct-form-note {
  margin: 0;
  color: var(--mct-muted);
  text-align: center;
  font-size: 14px;
}

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

.mct-location {
  padding: 100px 0;
  background: var(--mct-cream);
}

.mct-location-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 75px;
  align-items: center;
}

.mct-location-copy>p {
  max-width: 450px;
  color: var(--mct-muted);
  font-size: 14px;
  line-height: 1.85;
}

.mct-location-copy address {
  margin: 25px 0;
  padding-left: 18px;
  border-left: 1px solid var(--mct-gold);
  color: var(--mct-text);
  font-size: 16px;
  font-style: normal;
  line-height: 1.9;
}

.mct-location-copy address strong {
  display: block;
  margin-bottom: 3px;
  color: var(--mct-brown);
  font-family: var(--mct-serif);
  font-size: 19px;
  font-weight: 400;
}

.mct-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid var(--mct-gold);
  border-radius: 3px;
  color: var(--mct-gold-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  transition: all .25s ease;
}

.mct-map-btn:hover {
  color: #fff;
  background: var(--mct-gold);
}

.mct-map-art {
  min-height: 380px;
  padding: 20px;
  border: 1px solid var(--mct-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
}

.mct-map-paper {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  border-radius: 15px;
  background:
    linear-gradient(30deg, transparent 48%, rgba(169, 112, 59, .09) 49%, transparent 50%) 0 0 / 90px 90px,
    linear-gradient(-35deg, transparent 48%, rgba(169, 112, 59, .08) 49%, transparent 50%) 0 0 / 120px 120px,
    #f7ecdc;
}

.mct-map-paper::before,
.mct-map-paper::after {
  content: "";
  position: absolute;
  background: rgba(169, 112, 59, .13);
  transform: rotate(17deg);
}

.mct-map-paper::before {
  width: 140%;
  height: 1px;
  left: -20%;
  top: 38%;
}

.mct-map-paper::after {
  width: 1px;
  height: 140%;
  left: 52%;
  top: -20%;
  transform: rotate(31deg);
}

.mct-map-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(212, 154, 84, .3) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 64%, rgba(212, 154, 84, .25) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 77%, rgba(212, 154, 84, .25) 0 2px, transparent 3px);
}

.mct-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--mct-gold);
  box-shadow: 0 12px 25px rgba(169, 112, 59, .22);
}

.mct-pin span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
}

.mct-map-label {
  position: absolute;
  left: 50%;
  top: calc(48% + 43px);
  transform: translateX(-50%);
  padding: 10px 15px;
  border: 1px solid var(--mct-line);
  border-radius: 5px;
  background: rgba(255, 253, 249, .9);
  text-align: center;
}

.mct-map-label strong {
  display: block;
  color: var(--mct-brown);
  font-family: var(--mct-serif);
  font-size: 16px;
  font-weight: 400;
}

.mct-map-label span {
  color: var(--mct-gold-dark);
  font-size: 14px;
  letter-spacing: .13em;
}

/* =========================================================
   CLOSING
========================================================= */

.mct-closing {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  /* background: var(--mct-brown); */
  background-image: url(../img/new-born.webp);
  background-position: center;
  background-size: cover;
}

/* Full image overlay */
.mct-closing::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(20, 12, 8, 0.72) 0%,
      rgba(20, 12, 8, 0.42) 50%,
      rgba(20, 12, 8, 0.68) 100%);

  z-index: 1;
}

.mct-closing::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -200px;
  top: -260px;
  border-radius: 50%;
  background: rgba(212, 154, 84, .09);
}

.mct-closing .mct-container {
  position: relative;
  z-index: 2;
}

.mct-closing .mct-eyebrow {
  color: #e8c28e;
}

.mct-closing .mct-eyebrow span {
  background: rgba(232, 194, 142, .35);
}

.mct-closing h2 {
  margin: 18px 0 12px;
  font-family: var(--mct-serif);
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 400;
  line-height: 1;
}

.mct-closing h2 em {
  color: #e8c28e;
  font-style: normal;
}

.mct-closing p {
  margin: auto;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.mct-signature {
  margin-top: 28px;
  color: #e8c28e;
  font-family: var(--mct-script);
  font-size: 49px;
  line-height: 1;
}

.mct-closing small {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  letter-spacing: .15em;
}

.mct-closing-decoration {
  position: absolute;
  right: 12%;
  top: 40%;
  color: rgba(232, 194, 142, .4);
  font-size: 26px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .mct-container {
    width: min(calc(100% - 50px), 820px);
  }

  .mct-contact-grid,
  .mct-location-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .mct-info h2,
  .mct-location-copy h2 {
    font-size: 55px;
  }

  .mct-form-card {
    max-width: 720px;
  }

  .mct-map-art {
    min-height: 320px;
  }

  .mct-map-paper {
    min-height: 280px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .mct-container {
    width: calc(100% - 30px);
  }

  .mct-hero {
    min-height: 405px;
  }

  .mct-hero .mct-container {
    padding: 65px 0;
  }

  .mct-hero::before {
    inset: 10px;
  }

  .mct-eyebrow {
    gap: 8px;
    font-size: 14px;
    letter-spacing: .18em;
  }

  .mct-eyebrow span {
    width: 25px;
  }

  .mct-hero h1 {
    font-size: 49px;
  }

  .mct-script {
    font-size: 32px;
  }

  .mct-hero-copy {
    padding-inline: 10px;
    font-size: 14px;
  }

  .mct-flower {
    font-size: 80px;
  }

  .mct-contact-section {
    padding: 70px 0 75px;
  }

  .mct-info h2,
  .mct-location-copy h2 {
    font-size: 43px;
  }

  .mct-intro {
    font-size: 14px;
  }

  .mct-contact-item strong {
    font-size: 14px;
  }

  .mct-form-card {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .mct-form-card h2 {
    font-size: 34px;
  }

  .mct-form-flower {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .mct-field-row {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .mct-location {
    padding: 70px 0;
  }

  .mct-map-art {
    min-height: 300px;
    padding: 12px;
    border-radius: 15px;
  }

  .mct-map-paper {
    min-height: 275px;
  }

  .mct-closing {
    padding: 75px 0;
  }

  .mct-closing h2 {
    font-size: 43px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .mct-container {
    width: calc(100% - 24px);
  }

  .mct-hero h1 {
    font-size: 42px;
  }

  .mct-script {
    font-size: 29px;
  }

  .mct-info h2,
  .mct-location-copy h2 {
    font-size: 38px;
  }

  .mct-form-card {
    padding-inline: 17px;
  }

  .mct-form-card h2 {
    font-size: 31px;
  }

  .mct-closing h2 {
    font-size: 38px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mct-page *,
  .mct-page *::before,
  .mct-page *::after {
    animation: none !important;
    transition: none !important;
  }
}