:root {
  --bg: #f8f5ef;
  --bg-soft: #fffdf9;
  --text: #352b25;
  --muted: #74685f;
  --line: #ded2c0;
  --gold: #b1935f;
  --gold-dark: #6f552f;
  --rose: #eee3d6;
  --shadow-soft: 0 16px 40px rgba(51, 42, 34, 0.08);
  --shadow-elegant: 0 30px 70px rgba(51, 42, 34, 0.12);
  --shadow-frame: 0 0 0 1px rgba(177, 147, 95, 0.28), 0 25px 60px rgba(51, 42, 34, 0.14);
  --radius: 2rem;
  --gradient-hero: linear-gradient(135deg, #5a3e2d 0%, #93713f 45%, #b1935f 100%);
  --gradient-panel: linear-gradient(160deg, rgba(255, 253, 249, 0.96) 0%, rgba(248, 245, 239, 0.84) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(177, 147, 95, 0.15), transparent 26%),
    radial-gradient(circle at top right, rgba(236, 222, 198, 0.85), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #f4eee5 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(177, 147, 95, 0.16);
  background: rgba(248, 245, 239, 0.75);
  box-shadow: 0 10px 40px rgba(59, 48, 43, 0.04);
  backdrop-filter: blur(24px);
}

.nav {
  width: min(1400px, calc(100% - 4rem));
  margin: 0 auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  display: grid;
  gap: 0.05rem;
}

.brand strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.05;
  text-transform: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(168, 138, 84, 0.35);
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(51, 42, 34, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  padding: 0;
  border-radius: 0;
  color: rgba(53, 43, 37, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.25rem;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--gold);
}

.language-toggle {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(177, 147, 95, 0.15);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(53, 43, 37, 0.8);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  cursor: default;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
}

.section,
.hero {
  width: min(1400px, calc(100% - 4rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 9rem max(4rem, calc((100vw - 1400px) / 2 + 4rem)) 6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../../media/hero/rose-logo2.jpg") center / cover no-repeat;
  opacity: 0.2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 52%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.92) 0%, rgba(247, 241, 233, 0.98) 100%);
}

.home-page main {
  margin-top: 0;
}

.home-page .hero {
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.hero-copy {
  max-width: 48rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 18px;
  border: 1px solid rgba(168, 138, 84, 0.34);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  background: rgba(255, 253, 249, 0.7);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.hero-kicker {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  color: rgba(53, 43, 37, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25rem;
  text-transform: none;
  backdrop-filter: blur(4px);
}

.hero-kicker span {
  color: var(--gold);
}

.hero-brand-line {
  margin: 0 0 1rem;
  color: rgba(53, 43, 37, 0.55);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  line-height: 1.25rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

h1 {
  margin: 0;
  max-width: 48rem;
  font-size: clamp(3rem, 5.65vw, 4.5rem);
  font-weight: 600;
  line-height: 0.92;
  color: var(--text);
}

.hero h1 {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.08;
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  line-height: 2;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  gap: 0.5rem;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 18px 45px rgba(177, 147, 95, 0.28);
}

.button.secondary {
  border-color: rgba(168, 138, 84, 0.32);
  background: rgba(255, 250, 242, 0.72);
  color: var(--text);
}

.hero-card {
  position: relative;
  max-width: 36rem;
  justify-self: end;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(168, 138, 84, 0.32);
  box-shadow: var(--shadow-frame);
}

.signature {
  position: relative;
  max-width: 340px;
  margin: -3.25rem 1.5rem 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--gradient-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.signature-role {
  margin: 0.15rem 0 0;
  color: rgba(53, 43, 37, 0.8);
  font-size: 1.125rem;
}

.section {
  position: relative;
  padding: 5rem 0;
}

main.section {
  padding-top: 9rem;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  opacity: 0.7;
  background: linear-gradient(90deg, transparent 0%, rgba(177, 147, 95, 0.45) 20%, rgba(177, 147, 95, 0.65) 50%, rgba(177, 147, 95, 0.45) 80%, transparent 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-head p {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 2rem;
}

.section-head .kicker {
  margin: 0 0 1rem;
}

.section-head h1 {
  max-width: none;
  background: none;
  color: var(--text);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(222, 209, 191, 0.78);
  border-radius: var(--radius);
  background: var(--gradient-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.service-card,
.price-card {
  padding: 24px;
}

.quick-links-section {
  padding-top: 5rem;
}

.quick-links-grid {
  gap: 1.25rem;
}

.quick-card {
  display: flex;
  min-height: 15.25rem;
  flex-direction: column;
  padding: 1.5rem;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.quick-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-elegant);
}

.quick-icon {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(177, 147, 95, 0.1);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(177, 147, 95, 0.15);
}

.quick-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-card h3 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
}

.quick-card p {
  flex: 1;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.quick-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.social-highlight-section {
  padding-top: 5rem;
}

.social-highlight-section::before {
  display: none;
}

.social-highlight-grid {
  gap: 1.5rem;
}

.social-card-feature {
  height: 20.875rem;
  padding: 1.75rem;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
}

.social-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(51, 42, 34, 0.06);
}

.social-logo-tile img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.facebook-tile {
  background: rgba(24, 119, 242, 0.1);
  box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.15);
}

.tiktok-tile {
  background:
    radial-gradient(circle at top left, rgba(37, 244, 238, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(254, 44, 85, 0.24), transparent 52%),
    rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.social-eyebrow {
  margin: 1.25rem 0 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.social-card-feature h3 {
  margin-top: 0.85rem;
  font-size: 2.05rem;
}

.social-card-feature p:not(.social-eyebrow) {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.social-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  height: 2.75rem;
  min-height: 2.75rem;
  margin-top: 1.75rem;
  border-radius: 999px;
  padding: 0 1.25rem;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
}

.social-cta img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.facebook-cta {
  border: 1px solid rgba(24, 119, 242, 0.15);
  background: rgba(24, 119, 242, 0.1);
}

.tiktok-cta {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.22));
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.service-card img {
  width: 170px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(168, 138, 84, 0.28);
}

.service-card p,
.price-card p,
.social-card p,
.quick-card p {
  color: var(--muted);
}

.price {
  margin: 12px 0;
  color: var(--gold-dark);
  font-size: 1.65rem;
  font-weight: 850;
}

.notes {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 24px 28px;
}

.notes li {
  margin: 7px 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-button {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-button:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 16px 16px;
  color: white;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-form {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field-label {
  margin: 0 0 0.65rem;
  font-weight: 750;
}

.field-hint {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

label {
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
}

.phone-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem;
}

.phone-row input,
.phone-row select {
  min-height: 40px;
  padding-block: 0.45rem;
}

.phone-field {
  margin-bottom: 0.45rem;
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 4px 0 18px;
}

.checkboxes label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.3;
}

.contact-card {
  min-height: 750px;
  padding: 2rem;
}

.contact-card img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(168, 138, 84, 0.3);
}

.contact-brand-name {
  margin: 1.25rem 0 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-brand-role {
  margin: 0.35rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
}

.contact-brand-copy {
  margin: 0.6rem 0 2rem;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-socials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.follow-title {
  margin-top: 1.8rem;
  font-size: 1.55rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  border: 1px solid rgba(177, 147, 95, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-icon img,
.brand-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-icon.whatsapp {
  color: #25d366;
}

.brand-icon.zalo {
  color: #0068ff;
}

.social-rail {
  position: fixed;
  left: 1rem;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 0.75rem;
  transform: translateY(-50%);
}

.social-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(8px);
}

.social-rail img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.social-rail .tiktok-icon {
  background:
    radial-gradient(circle at top left, rgba(37, 244, 238, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(254, 44, 85, 0.24), transparent 52%),
    rgba(255, 255, 255, 0.9);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding: 30px 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
}

.status {
  min-height: 24px;
  color: var(--gold-dark);
  font-weight: 750;
}

@media (max-width: 860px) {
  .section,
  .nav,
  .footer-inner {
    width: min(100% - 2rem, 100%);
  }

  .hero {
    width: 100%;
    padding: 7rem 1rem 4rem;
  }

  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--bg-soft);
    box-shadow: var(--shadow-elegant);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .contact-layout,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .social-card-feature {
    height: auto;
  }

  .contact-card {
    min-height: 0;
  }

  .grid.four,
  .grid.three,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-rail {
    left: 0.45rem;
    gap: 0.45rem;
  }

  .social-rail a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
  }

  .social-rail img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 620px) {
  .grid.four,
  .grid.three,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .phone-row,
  .contact-socials {
    grid-template-columns: 1fr;
  }
}
