*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #E8E2D8;
  font-family: 'Afacad', sans-serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  -webkit-font-smoothing: antialiased;
}

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

.screen {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background: #050505;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 28%;
  opacity: 0.9;
  pointer-events: none;
}

.veil-x,
.veil-y {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.veil-x {
  background: linear-gradient(96deg, #050505 0%, rgba(5, 5, 5, .96) 28%, rgba(5, 5, 5, .75) 54%, rgba(5, 5, 5, .2) 78%, rgba(5, 5, 5, .4) 100%);
}

.veil-y {
  background: linear-gradient(180deg, rgba(5, 5, 5, .75) 0%, rgba(5, 5, 5, .1) 24%, rgba(5, 5, 5, .35) 60%, rgba(5, 5, 5, .95) 100%);
}

.eyebrow {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(16px, 2.5vw, 36px) clamp(20px, 4vw, 60px);
  font-size: clamp(9.5px, 0.75vw, 11.5px);
  letter-spacing: .32em;
  font-weight: 500;
  color: rgba(226, 205, 163, .75);
  z-index: 2;
}

.eyebrow i {
  display: block;
  width: clamp(20px, 3.2vw, 48px);
  height: 1px;
  background: rgba(201, 161, 107, .55);
  font-style: normal;
}

.stack {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(20px, 3vh, 40px) clamp(24px, 4.8vw, 76px) clamp(18px, 2.6vh, 30px);
  gap: clamp(22px, 3vh, 40px);
}

.logo {
  height: clamp(70px, 11vh, 125px);
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .9)) drop-shadow(0 0 22px rgba(201, 161, 107, .25));
  transition: transform .3s ease, filter .3s ease;
}

.logo:hover {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .95)) drop-shadow(0 0 28px rgba(224, 199, 154, .38));
  transform: translateY(-2px);
}

.mid {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vh, 18px);
  max-width: 860px;
}

h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-wrap: balance;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: .02em;
  color: #F3EBDD;
}

.rule {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .8;
}

.rule span {
  display: block;
  width: clamp(50px, 7vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 161, 107, .85), rgba(201, 161, 107, .1));
}

.rule i {
  display: block;
  width: 5px;
  height: 5px;
  background: #C9A16B;
  transform: rotate(45deg);
}

.lede {
  margin: 0;
  max-width: 36em;
  font-size: clamp(14.5px, 1.12vw, 17.5px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(232, 226, 216, .88);
}

.quote-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 21.5px);
  color: rgba(224, 199, 154, .95);
}

.quote-signature {
  font-family: 'Afacad', sans-serif;
  font-size: clamp(10.5px, 0.78vw, 12.5px);
  letter-spacing: .24em;
  font-weight: 500;
  color: rgba(201, 161, 107, .85);
  text-transform: uppercase;
}

/* 4 Pillars in a row */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 28px);
  padding-top: clamp(10px, 1.4vh, 16px);
  border-top: 1px solid rgba(201, 161, 107, .18);
  max-width: 780px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.pillar svg {
  width: clamp(24px, 2.2vw, 32px);
  height: clamp(24px, 2.2vw, 32px);
  flex: none;
  opacity: .95;
}

.pillar span {
  font-size: clamp(11.5px, 0.92vw, 14.5px);
  font-weight: 400;
  line-height: 1.32;
  color: rgba(232, 226, 216, .92);
  text-align: center;
}

/* Actions Section */
.actions {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 16px);
  max-width: 960px;
}

.primary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(10px, 1.4vw, 18px);
}

/* Call Button */
.call {
  flex: 1 1 290px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(12px, 1.6vh, 17px) clamp(16px, 2vw, 24px);
  border-radius: 2px;
  color: #15110A;
  background: linear-gradient(100deg, #C9A16B 0%, #E3C892 50%, #BD9251 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  height: auto;
}

.call:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 161, 107, .35);
}

.call-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(21, 17, 10, .14);
  border: 1px solid rgba(21, 17, 10, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #15110A;
}

.phone-icon {
  width: 20px;
  height: 20px;
  animation: gentleRing 2.6s infinite ease-in-out;
  transform-origin: center center;
}

@keyframes gentleRing {

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

  6%,
  18% {
    transform: rotate(-14deg) scale(1.1);
  }

  12%,
  24% {
    transform: rotate(14deg) scale(1.1);
  }

  30% {
    transform: rotate(0deg) scale(1);
  }
}

.call-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.call .label {
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: .24em;
  font-weight: 600;
  color: #241B0E;
}

.call .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 600;
  letter-spacing: .05em;
  color: #120E08;
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}

/* Atelier Box */
.atelier {
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: clamp(12px, 1.6vh, 17px) clamp(16px, 2vw, 24px);
  border: 1px solid rgba(201, 161, 107, .42);
  border-radius: 2px;
  background: rgba(12, 10, 8, .6);
  backdrop-filter: blur(8px);
  height: auto;
}

.atelier .label {
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: .24em;
  font-weight: 500;
  color: rgba(201, 161, 107, .9);
}

.atelier .addr {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15.5px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  color: #F0E7D6;
}

.atelier .hours {
  font-size: clamp(11.5px, 0.85vw, 14px);
  font-weight: 400;
  color: rgba(232, 226, 216, .72);
}

/* Links (Zalo, Facebook, Maps) */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.1vw, 14px);
}

.links a {
  flex: 1 1 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(11px, 1.4vh, 15px) 12px;
  border: 1px solid rgba(201, 161, 107, .4);
  border-radius: 2px;
  background: rgba(12, 10, 8, .55);
  backdrop-filter: blur(8px);
  font-size: clamp(10.5px, 0.8vw, 13px);
  letter-spacing: .22em;
  font-weight: 500;
  color: #E0C79A;
  transition: all .2s ease;
}

.links a:hover {
  border-color: rgba(201, 161, 107, .95);
  background: rgba(201, 161, 107, .15);
  color: #FFF;
}

/* Footer Section */
.footer {
  margin-top: auto;
  padding-top: clamp(14px, 2vh, 24px);
  border-top: 1px solid rgba(201, 161, 107, .2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 42px);
}

.f-badge {
  display: flex;
  align-items: center;
  gap: 11px;
}

.f-icon {
  width: clamp(32px, 2.6vw, 40px);
  height: clamp(32px, 2.6vw, 40px);
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 107, .48);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 161, 107, .05);
  flex-shrink: 0;
}

.f-icon svg {
  width: clamp(16px, 1.35vw, 20px);
  height: clamp(16px, 1.35vw, 20px);
}

.f-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-title {
  font-size: clamp(10px, 0.78vw, 12.5px);
  letter-spacing: .22em;
  font-weight: 600;
  color: #E0C79A;
}

.f-sub {
  font-size: clamp(11.5px, 0.88vw, 14px);
  color: rgba(232, 226, 216, .8);
  font-weight: 300;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  margin-left: auto;
}

.footer-copy .brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(13.5px, 1vw, 16.5px);
  letter-spacing: .28em;
  color: rgba(201, 161, 107, .95);
  font-weight: 500;
}

.footer-copy .cr {
  font-size: clamp(10px, 0.72vw, 12px);
  letter-spacing: .12em;
  color: rgba(232, 226, 216, .48);
  font-weight: 300;
}

/* Mobile & Tablet Responsive (< 768px) */
@media (max-width: 768px) {
  .stack {
    padding: 24px 20px 20px;
    gap: 20px;
    min-height: 100dvh;
    justify-content: flex-start;
  }

  .eyebrow {
    padding: 20px 20px;
    font-size: 10.5px;
    letter-spacing: .28em;
  }

  .logo {
    height: 60px;
  }

  .mid {
    gap: 12px;
  }

  h1 {
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: .015em;
  }

  .lede {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(232, 226, 216, .9);
  }

  .quote-wrap {
    gap: 4px;
    margin-top: 2px;
  }

  .quote {
    font-size: 17px;
    line-height: 1.35;
  }

  .quote-signature {
    font-size: 10.5px;
    letter-spacing: .24em;
  }

  .pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 14px;
    margin-top: 4px;
  }

  .pillar {
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .pillar svg {
    width: 24px;
    height: 24px;
  }

  .pillar span {
    font-size: 13px;
    line-height: 1.3;
  }

  .actions {
    gap: 12px;
    width: 100%;
    margin-top: 4px;
  }

  .primary-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .call {
    flex: 0 0 auto;
    width: 100%;
    padding: 16px 20px;
    gap: 16px;
  }

  .call-icon-box {
    width: 48px;
    height: 48px;
  }

  .phone-icon {
    width: 24px;
    height: 24px;
  }

  .call .label {
    font-size: 12px;
    letter-spacing: .24em;
  }

  .call .num {
    font-size: 28px;
    letter-spacing: .05em;
  }

  .atelier {
    flex: 0 0 auto;
    width: 100%;
    padding: 13px 18px;
    gap: 4px;
  }

  .atelier .label {
    font-size: 10px;
    letter-spacing: .22em;
  }

  .atelier .addr {
    font-size: 17px;
    line-height: 1.25;
  }

  .atelier .hours {
    font-size: 12.5px;
  }

  .links {
    width: 100%;
    gap: 8px;
  }

  .links a {
    flex: 1 1 0px;
    padding: 12px 6px;
    font-size: 14px;
    letter-spacing: .18em;
  }

  /* Footer on mobile */
  .footer {
    margin-top: 8px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    width: 100%;
  }

  .footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 6px;
  }

  .f-badge {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    align-items: center;
  }

  .f-icon {
    width: 28px;
    height: 28px;
  }

  .f-icon svg {
    width: 14px;
    height: 14px;
  }

  .f-title {
    font-size: 10px;
    letter-spacing: .12em;
    line-height: 1.25;
    font-weight: 600;
  }

  .f-sub {
    font-size: 11.5px;
    line-height: 1.25;
    color: rgba(232, 226, 216, .7);
  }

  .footer-copy {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    padding-top: 10px;
    width: 100%;
  }

  .footer-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(220px, 75%);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 161, 107, 0.25) 20%, rgba(245, 235, 218, 0.85) 50%, rgba(201, 161, 107, 0.25) 80%, transparent 100%);
    box-shadow: 0 0 8px rgba(201, 161, 107, 0.35);
  }

  .footer-copy .brand {
    display: none;
  }

  .footer-copy .cr {
    font-size: 13px;
    letter-spacing: .08em;
    color: rgba(232, 226, 216, .5);
    font-weight: 300;
  }
}