@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --red: #C0392B;
  --orange: #E8621A;
  --orange-lt: #F5894D;
  --dark: #1A1A1A;
  --mid: #3D3D3D;
  --light: #F7F5F2;
  --white: #FFFFFF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: 2rem;
}

/* decorative arcs */
.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 26, .18) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, .13) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* thin horizontal stripe top */
.stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--orange-lt));
}

/* ── LOGO mark ── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 3rem;
  animation: fadeDown .9s ease both;
}

.logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232, 98, 26, .35);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.5px;
}

.logo-text span:last-child {
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── HEADLINE ── */
.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  max-width: 820px;
  color: var(--dark);
  animation: fadeUp 1s .2s ease both;
}

.headline em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.subline {
  margin-top: 1.6rem;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  max-width: 560px;
  text-align: center;
  animation: fadeUp 1s .4s ease both;
}

/* ── STATUS BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2.4rem;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  background: var(--light);
  border: 1.5px solid rgba(232, 98, 26, .25);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  animation: fadeUp 1s .6s ease both;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

/* ── SCROLL CTA ── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #aaa;
  animation: fadeUp 1s 1s ease both;
  cursor: pointer;
}

.scroll-hint .arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ── SECTION SHARED ── */
section {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

/* ── INFO CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 2rem 2rem 2.2rem;
  border: 1.5px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  border-color: rgba(232, 98, 26, .2);
  box-shadow: 0 12px 40px rgba(232, 98, 26, .12);
  transform: translateY(-4px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(232, 98, 26, .3);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .55rem;
  color: var(--dark);
}

.card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--mid);
}

/* ── CONTACT SECTION ── */
.contact-wrap {
  background: var(--dark);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 26, .22), transparent 65%);
}

.contact-wrap .section-label {
  color: var(--orange-lt);
}

.contact-wrap .section-title {
  color: #fff;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 400;
  transition: background .3s, border-color .3s, transform .25s;
}

.contact-link:hover {
  background: rgba(232, 98, 26, .3);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange-lt);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  font-size: .78rem;
  color: #aaa;
  border-top: 1px solid #eee;
}

footer span {
  color: var(--orange);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intersection reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ── VISIT ── */
.visit-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: var(--light);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(232,98,26,.18);
}
.visit-info {
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.8rem;
}
.visit-address svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(232,98,26,.3);
  transition: transform .25s, box-shadow .25s;
}
.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,26,.4);
}
.visit-map { overflow: hidden; min-height: 360px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; display: block; border: 0; }
@media (max-width: 700px) {
  .visit-wrap { grid-template-columns: 1fr; }
  .visit-map  { min-height: 260px; }
  .visit-map iframe { min-height: 260px; }
}

/* ── DIVIDER ── */
.divider {
  border: none;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(232, 98, 26, .25), transparent);
  margin: 0 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .contact-wrap {
    padding: 2.2rem 1.5rem;
  }

  section {
    padding: 4rem 1.2rem;
  }
}